| OLD | NEW |
| 1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 import 'dart:async' show | 5 import 'dart:async' show |
| 6 Completer, | 6 Completer, |
| 7 Future, | 7 Future, |
| 8 Stream, | 8 Stream, |
| 9 StreamController, | 9 StreamController, |
| 10 Zone; | 10 Zone; |
| 11 | 11 |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 } | 287 } |
| 288 | 288 |
| 289 void error(error, StackTrace stackTrace) { | 289 void error(error, StackTrace stackTrace) { |
| 290 throw error; | 290 throw error; |
| 291 } | 291 } |
| 292 | 292 |
| 293 get arguments => throw "not supported"; | 293 get arguments => throw "not supported"; |
| 294 set arguments(_) => throw "not supported"; | 294 set arguments(_) => throw "not supported"; |
| 295 get notes => throw "not supported"; | 295 get notes => throw "not supported"; |
| 296 } | 296 } |
| OLD | NEW |