feat(change_detector): add support for method calls

This commit is contained in:
vsavkin
2014-11-11 16:54:15 -08:00
parent dcd905ae85
commit 4e38e3a96c
4 changed files with 77 additions and 18 deletions

View File

@ -315,7 +315,7 @@ export class MethodCall extends AST {
}
export class FunctionCall extends AST {
@FIELD('final receiver:AST')
@FIELD('final target:AST')
@FIELD('final closureMap:ClosureMap')
@FIELD('final args:List')
constructor(target:AST, closureMap:ClosureMap, args:List) {