Chromium Code Reviews

Unified Diff: test/codegen/lib/html/non_instantiated_is_test.dart

Issue 1930043002: Add all dart:html tests from the sdk to test/codegen. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: ptal Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/codegen/lib/html/non_instantiated_is_test.dart
diff --git a/test/codegen/lib/html/non_instantiated_is_test.dart b/test/codegen/lib/html/non_instantiated_is_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..b226ea7a40cd99f1edb950f53b14698026019c99
--- /dev/null
+++ b/test/codegen/lib/html/non_instantiated_is_test.dart
@@ -0,0 +1,20 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// Regression test for dart2js, that used to emit wrong code on is
+// checks of native classes that are not instantiated.
+
+import 'dart:html';
+import 'package:unittest/unittest.dart';
+import 'package:unittest/html_config.dart';
+
+var a = [new Object()];
+
+main() {
+ useHtmlConfiguration();
+
+ test('is', () {
+ expect(a[0] is Node, isFalse);
+ });
+}

Powered by Google App Engine