Removed node generation for constants

This commit is contained in:
arookas 2016-02-22 20:19:43 -05:00
parent 6bba9894d5
commit 040091efca

View file

@ -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);