From 040091efcad641629b11060d1d7e131efc87b1a6 Mon Sep 17 00:00:00 2001 From: arookas Date: Mon, 22 Feb 2016 20:19:43 -0500 Subject: [PATCH] Removed node generation for constants --- ssc/parser.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ssc/parser.cs b/ssc/parser.cs index 38e9df8..a246f67 100644 --- a/ssc/parser.cs +++ b/ssc/parser.cs @@ -190,12 +190,6 @@ namespace arookas { case __sunConstants.VARIABLE_AUGMENT: return new sunNode(location); } - // constants - switch (id) { - case __sunConstants.CONST_DEFINITION: return new sunConstantDefinition(location); - case __sunConstants.CONST_MODIFIERS: return new sunNode(location); - } - // flow control switch (id) { case __sunConstants.IF_STATEMENT: return new sunIf(location);