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

Unified Diff: tests/compiler/dart2js/expect_annotations2_test.dart

Issue 912223003: Support @NoInlining in the ssa-builder. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: move TODO Created 5 years, 10 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 | « pkg/expect/lib/expect.dart ('k') | tests/compiler/dart2js/expect_annotations_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/expect_annotations2_test.dart
diff --git a/tests/compiler/dart2js/expect_annotations2_test.dart b/tests/compiler/dart2js/expect_annotations2_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4357c1de0238b5f239501c8b0c9338ad028f9ef4
--- /dev/null
+++ b/tests/compiler/dart2js/expect_annotations2_test.dart
@@ -0,0 +1,45 @@
+// Copyright (c) 2012, 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.
+
+import "package:expect/expect.dart";
+import "package:async_helper/async_helper.dart";
+import 'memory_compiler.dart';
+
+const MEMORY_SOURCE_FILES = const {
+ 'main.dart': '''
+ import 'package:expect/expect.dart';
+
+ @NoInline()
+ foo(y) => 49912344 + y;
+
+ class A {
+ @NoInline()
+ static bar(x) => x + 123455;
+
+ @NoInline()
+ gee(x, y) => x + y + 81234512;
+ }
+
+ main() {
+ print(foo(23412));
+ print(A.bar(87654));
+ print(new A().gee(1337, 919182));
+ }'''};
+
+void main() {
+ OutputCollector collector = new OutputCollector();
+ var compiler = compilerFor(MEMORY_SOURCE_FILES, outputProvider: collector);
+ asyncTest(() => compiler.run(Uri.parse('memory:main.dart')).then((_) {
+ // Simply check that the constants of the small functions are still in the
+ // output, and that we don't see the result of constant folding.
+ String jsOutput = collector.getOutput('', 'js');
+
+ Expect.isTrue(jsOutput.contains('49912344'));
karlklose 2015/02/20 09:48:15 I don't think this way of testing is robust enough
floitsch 2015/02/20 10:52:56 We will need to discuss the semantics of @NoInline
+ Expect.isTrue(jsOutput.contains('123455'));
+ Expect.isTrue(jsOutput.contains('81234512'));
+ Expect.isFalse(jsOutput.contains('49935756'));
+ Expect.isFalse(jsOutput.contains('211109'));
+ Expect.isFalse(jsOutput.contains('82155031'));
+ }));
+}
« no previous file with comments | « pkg/expect/lib/expect.dart ('k') | tests/compiler/dart2js/expect_annotations_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698