Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(955)

Unified Diff: lib/src/codegen/js_codegen.dart

Issue 1149243002: Allow null args to dynamic invocations (Closed) Base URL: git@github.com:dart-lang/dart-dev-compiler.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/runtime/dart_runtime.js ('k') | test/browser/runtime_tests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/codegen/js_codegen.dart
diff --git a/lib/src/codegen/js_codegen.dart b/lib/src/codegen/js_codegen.dart
index bf9fe50236b0deb9c07b51682fb83c7af62c383d..25777f96d3e7518c3b522ad7d8426bdad6c6e058 100644
--- a/lib/src/codegen/js_codegen.dart
+++ b/lib/src/codegen/js_codegen.dart
@@ -603,7 +603,7 @@ class JSCodegenVisitor extends GeneralizingAstVisitor with ConversionVisitor {
_emitFunctionTypeParts(element.type, dynamicIsBottom: false);
var property =
new JS.Property(memberName, new JS.ArrayInitializer(parts));
- if (node.isStatic) {
+ if (node.isStatic) {
tStatics.add(property);
sNames.add(memberName);
} else tMethods.add(property);
« no previous file with comments | « lib/runtime/dart_runtime.js ('k') | test/browser/runtime_tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698