This commit is contained in:
Fábio Santos
2015-08-07 02:44:53 +01:00
parent ddd30eeaaa
commit e80ed38772
4 changed files with 13 additions and 1 deletions

View File

@@ -1151,6 +1151,9 @@ function OutputStream(options) {
DEFPRINT(AST_This, function(self, output){
output.print("this");
});
DEFPRINT(AST_Super, function(self, output){
output.print("super");
});
DEFPRINT(AST_Constant, function(self, output){
output.print(self.getValue());
});