mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 14:32:24 +00:00
5ed88471ec
Change-Id: I0726fa252736a83a2d80345d71c05aacf8ed0649 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/142941 Commit-Queue: Bob Nystrom <rnystrom@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com> Reviewed-by: Leaf Petersen <leafp@google.com>
40 lines
958 B
Dart
40 lines
958 B
Dart
// Copyright (c) 2011, 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.
|
|
//
|
|
|
|
library library10.dart;
|
|
|
|
import "library11.dart" as lib11;
|
|
import "package:expect/expect.dart";
|
|
|
|
class Library10 {
|
|
Library10(this.fld);
|
|
int func() {
|
|
return 2;
|
|
}
|
|
|
|
var fld;
|
|
static int static_func() {
|
|
var result = 0;
|
|
var obj = new lib11.Library11(4);
|
|
result = obj.fld;
|
|
Expect.equals(4, result);
|
|
result += obj.func();
|
|
Expect.equals(7, result);
|
|
result += lib11.Library11.static_func();
|
|
Expect.equals(9, result);
|
|
result += lib11.Library11.static_fld;
|
|
Expect.equals(10, result);
|
|
Expect.equals(100, lib11.top_level11);
|
|
Expect.equals(200, lib11.top_level_func11());
|
|
return 3;
|
|
}
|
|
|
|
static var static_fld = 4;
|
|
}
|
|
|
|
const int top_level10 = 10;
|
|
int top_level_func10() {
|
|
return 20;
|
|
}
|