| Index: lib/src/compiler/ast_builder.dart
|
| diff --git a/lib/src/compiler/ast_builder.dart b/lib/src/compiler/ast_builder.dart
|
| index f2d448e7a225ce783301d5470e76ebea4d78d6d0..76d534d72f5c26b5d7a3b127dfabae2bca8db3ed 100644
|
| --- a/lib/src/compiler/ast_builder.dart
|
| +++ b/lib/src/compiler/ast_builder.dart
|
| @@ -105,10 +105,11 @@ class AstBuilder {
|
| return new PropertyAccess(target, p, name);
|
| }
|
|
|
| - static MethodInvocation methodInvoke(
|
| - Expression target, SimpleIdentifier name, NodeList<Expression> args) {
|
| + static MethodInvocation methodInvoke(Expression target, SimpleIdentifier name,
|
| + TypeArgumentList typeArguments, NodeList<Expression> args) {
|
| var p = new Token(TokenType.PERIOD, 0);
|
| - return new MethodInvocation(target, p, name, null, argumentList(args));
|
| + return new MethodInvocation(
|
| + target, p, name, typeArguments, argumentList(args));
|
| }
|
|
|
| static TokenType getTokenType(String lexeme) {
|
|
|