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 library fletchc.verbs.implementation; | 5 library fletchc.verbs.implementation; |
6 | 6 |
7 import 'dart:async' show | 7 import 'dart:async' show |
8 Future, | 8 Future, |
9 StreamIterator; | 9 StreamIterator; |
10 | 10 |
11 export 'dart:async' show | 11 export 'dart:async' show |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 this.programName, | 451 this.programName, |
452 this.targetUri, | 452 this.targetUri, |
453 this.toTargetUri, | 453 this.toTargetUri, |
454 this.withUri, | 454 this.withUri, |
455 this.options); | 455 this.options); |
456 | 456 |
457 Future<int> performVerb(VerbContext context) { | 457 Future<int> performVerb(VerbContext context) { |
458 return verb.action.perform(this, context); | 458 return verb.action.perform(this, context); |
459 } | 459 } |
460 } | 460 } |
OLD | NEW |