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

Unified Diff: tests/compiler/dart2js/kernel/compile_from_dill_test.dart

Issue 2926863002: Handle parameters in compile_from_dill_test (Closed)
Patch Set: Fixes Created 3 years, 6 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 | « tests/compiler/dart2js/equivalence/check_functions.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/kernel/compile_from_dill_test.dart
diff --git a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
index 0cf72e87e7ee758d2ba1e56388cecbddba2f3dcd..0bf51dfa8bcb1a62247ef8ea59ec043b0aa2d9af 100644
--- a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
+++ b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
@@ -34,10 +34,10 @@ import 'compiler_helper.dart';
const SOURCE = const {
'main.dart': '''
foo() => 1;
-bar() => true;
+bar(a) => !a;
main() {
foo();
- bar();
+ bar(true);
[];
{};
var x = null;
« no previous file with comments | « tests/compiler/dart2js/equivalence/check_functions.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698