Static function call result comment does not match variable content (#5077)

static staticProperty, defined in line 18, value is 'babeliscool' but comment on line 33 the given sample output is 'babelIsCool'. 
this commit fixes this inconsistency
This commit is contained in:
Karsten Gohm 2017-01-09 15:02:19 +01:00 committed by Henry Zhu
parent d1cd179c45
commit de1a76413f

View File

@ -15,7 +15,7 @@ Below is a class with four class properties which will be transformed.
}
//Static class properties
static staticProperty = "babeliscool";
static staticProperty = "babelIsCool";
static staticFunction = function() {
return Bork.staticProperty;
}