From f417380637428d8a57c38d2305c9cf09fd7d6366 Mon Sep 17 00:00:00 2001 From: Eugene Burmako Date: Tue, 10 Dec 2013 11:15:53 +0100 Subject: typeCheck => typecheck MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This method has always been slightly bothering me, so I was really glad when Denys asked me to rename it. Let’s see how it pans out. --- test/files/pos/attachments-typed-ident/Impls_1.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/files/pos/attachments-typed-ident/Impls_1.scala') diff --git a/test/files/pos/attachments-typed-ident/Impls_1.scala b/test/files/pos/attachments-typed-ident/Impls_1.scala index 11d0f65844..f24ea88a5d 100644 --- a/test/files/pos/attachments-typed-ident/Impls_1.scala +++ b/test/files/pos/attachments-typed-ident/Impls_1.scala @@ -8,7 +8,7 @@ object Macros { import c.universe._ val ident = Ident(TermName("bar")) updateAttachment MyAttachment assert(ident.attachments.get[MyAttachment.type].isDefined, ident.attachments) - val typed = c.typeCheck(ident) + val typed = c.typecheck(ident) assert(typed.attachments.get[MyAttachment.type].isDefined, typed.attachments) c.Expr[Int](typed) } -- cgit v1.2.3