| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 package com.google.dart.runner; | |
| 6 | |
| 7 import java.io.PrintStream; | |
| 8 | |
| 9 interface JavaScriptLauncher { | |
| 10 | |
| 11 void execute(String jsScript, String sourceName, String[] args, RunnerOptions
flags, | |
| 12 PrintStream stdout, PrintStream stderr) | |
| 13 throws RunnerError; | |
| 14 | |
| 15 } | |
| OLD | NEW |