Merge pull request #763 from fabiosantoscode/feature/harmony-super

Feature/harmony super
This commit is contained in:
Richard van Velzen
2015-08-07 08:54:20 +02:00
5 changed files with 22 additions and 1 deletions

View File

@@ -1192,6 +1192,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());
});