fa9e576a40
Also added some more tests to the deferred equivalence test. Bug: Change-Id: Ia5ca50728a96020ff76b7b519558cdb5847d598e Reviewed-on: https://dart-review.googlesource.com/31600 Commit-Queue: Emily Fortuna <efortuna@google.com> Reviewed-by: Sigmund Cherem <sigmund@google.com>
14 lines
378 B
Dart
14 lines
378 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// Imported by deferred_function.dart and
|
|
|
|
library deferred_function_library;
|
|
|
|
/*element: foo:OutputUnit(1, {lib})*/
|
|
foo(x) {
|
|
print('foo($x)');
|
|
return 42;
|
|
}
|