Merge 1465f1b998 into 278577f3cb
This commit is contained in:
commit
df4a4608d9
|
|
@ -1095,6 +1095,9 @@ var AST_Class = DEFNODE("Class", "name extends properties", {
|
||||||
if (this.extends) {
|
if (this.extends) {
|
||||||
this.extends._walk(visitor);
|
this.extends._walk(visitor);
|
||||||
}
|
}
|
||||||
|
if (this.body) {
|
||||||
|
walk_body(this, visitor)
|
||||||
|
}
|
||||||
this.properties.forEach(function(prop){
|
this.properties.forEach(function(prop){
|
||||||
prop._walk(visitor);
|
prop._walk(visitor);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user