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

Unified Diff: pkg/kernel/bin/eval.dart

Issue 2740433006: Implement support for variables and evaluation of logic expressions (Closed)
Patch Set: Apply some suggestions from CR Created 3 years, 9 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 | « no previous file | pkg/kernel/lib/interpreter/interpreter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/bin/eval.dart
diff --git a/pkg/kernel/bin/eval.dart b/pkg/kernel/bin/eval.dart
index a3b6140ab5ec526a072ba7c5a8ee2b85a3be5af9..d3c6638c9f6e539b323e348ee3ddeaf748d562e9 100755
--- a/pkg/kernel/bin/eval.dart
+++ b/pkg/kernel/bin/eval.dart
@@ -15,7 +15,7 @@ fail(String message) {
main(List<String> args) {
if (args.length == 1 && args[0].endsWith('.dill')) {
var program = loadProgramFromBinary(args[0]);
- new Interpreter(program).evalProgram();
+ new Interpreter(program).run();
} else {
return fail('One input binary file should be specified.');
}
« no previous file with comments | « no previous file | pkg/kernel/lib/interpreter/interpreter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698