Index: pkg/js_ast/lib/src/nodes.dart |
diff --git a/pkg/js_ast/lib/src/nodes.dart b/pkg/js_ast/lib/src/nodes.dart |
index b6ce749efe6e522b400fcc8c04d52cba1fc099af..4fe35e53d7b86726e598b3a980759ca9c928ddd0 100644 |
--- a/pkg/js_ast/lib/src/nodes.dart |
+++ b/pkg/js_ast/lib/src/nodes.dart |
@@ -663,7 +663,10 @@ class Call extends Expression { |
Expression target; |
List<Expression> arguments; |
- Call(this.target, this.arguments); |
+ Call(this.target, this.arguments, |
+ {JavaScriptNodeSourceInformation sourceInformation}) { |
+ this._sourceInformation = sourceInformation; |
+ } |
accept(NodeVisitor visitor) => visitor.visitCall(this); |