| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library root_lib; | 5 library isolate.create.error_helper2_lib; |
| 6 | 6 |
| 7 export 'test_lib.dart'; | 7 // This library has a main method with wrong parameters. |
| 8 export 'test_lib_foo.dart'; | |
| 9 export 'test_lib_bar.dart'; | |
| 10 | 8 |
| 11 class RootClass { | 9 void main(a, b, c) { |
| 12 RootClass(int a, int b); | 10 print("Three required positional parameters: $a, $b, $c"); |
| 13 } | 11 } |
| OLD | NEW |