Added local-keyword node

This commit is contained in:
arookas 2016-02-01 01:40:30 -05:00
parent b57c70ee9d
commit d070143fba
2 changed files with 8 additions and 0 deletions

View file

@ -3,4 +3,9 @@
public sunConstKeyword(sunSourceLocation location)
: base(location) { }
}
class sunLocalKeyword : sunNode {
public sunLocalKeyword(sunSourceLocation location)
: base(location) { }
}
}

View file

@ -217,6 +217,9 @@ namespace arookas {
}
}
}
if (id == __sunConstants.LOCAL) {
return new sunLocalKeyword(location);
}
// emergency fallback
return null;