summary refs log tree commit diff stats
path: root/compiler/lexer.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-02-29 12:19:54 +0100
committerAndreas Rumpf <rumpf_a@web.de>2016-02-29 12:19:54 +0100
commitc9966a3e178bc5bc21684d3f4f65c8580227d2f4 (patch)
tree577e3591910d082265e623830f6a269c58340411 /compiler/lexer.nim
parent554a3e9335fddac4656a9313ab283ae0e4d14a9e (diff)
downloadNim-c9966a3e178bc5bc21684d3f4f65c8580227d2f4.tar.gz
use 'using' instead of 'sig' keyword; cleans up new features a bit
Diffstat (limited to 'compiler/lexer.nim')
-rw-r--r--compiler/lexer.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/lexer.nim b/compiler/lexer.nim
index 8362436d8..69a0fea2a 100644
--- a/compiler/lexer.nim
+++ b/compiler/lexer.nim
@@ -45,7 +45,7 @@ type
     tkMacro, tkMethod, tkMixin, tkMod, tkNil, tkNot, tkNotin,
     tkObject, tkOf, tkOr, tkOut,
     tkProc, tkPtr, tkRaise, tkRef, tkReturn,
-    tkShl, tkShr, tkSig, tkStatic,
+    tkShl, tkShr, tkStatic,
     tkTemplate,
     tkTry, tkTuple, tkType, tkUsing,
     tkVar, tkWhen, tkWhile, tkWith, tkWithout, tkXor,
@@ -82,7 +82,7 @@ const
     "macro", "method", "mixin", "mod",
     "nil", "not", "notin", "object", "of", "or",
     "out", "proc", "ptr", "raise", "ref", "return",
-    "shl", "shr", "sig", "static",
+    "shl", "shr", "static",
     "template",
     "try", "tuple", "type", "using",
     "var", "when", "while", "with", "without", "xor",