Files
sdk/tests/language/prefix14_test.dart
T
Jacob Richman 2dcd56ef43 Format all tests.
There are far too many files here to review everyone carefully.
Spot checking most of the diffs look good as test code is generally written
with less care than application code so lots of ugly formatting get through.
If people notice files where the automated formatting bothers them feel free
to comment indicating file names and I'll move spaces within comments to make
the formatting cleaner and use comments to force block formatting as I have
done for other case where formatting looked bad.

BUG=
R=efortuna@google.com

Review-Url: https://codereview.chromium.org/2771453003 .
2017-04-17 14:53:02 -07:00

71 lines
1.8 KiB
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.
//
// Use qualified symbols at various places.
library Prefix14Test.dart;
import "package:expect/expect.dart";
import "library12.dart" as lib12;
typedef lib12.Library12 myFunc(lib12.Library12 param);
class myInterface implements lib12.Library12Interface {
myInterface(lib12.Library12 this.myfld);
lib12.Library12 addObjects(lib12.Library12 value1, lib12.Library12 value2) {
myfld.fld = (value1.fld + value2.fld + myfld.fld);
return myfld;
}
lib12.Library12 myfld;
}
class myClass extends lib12.Library12 {
myClass(int value) : super(value);
static lib12.Library12 func1() {
var i = new lib12.Library12(10);
return i;
}
static lib12.Library12 func2(lib12.Library12 param) {
return param;
}
}
class myClass1 {
myClass1(int value) : fld1 = new lib12.Library12(value);
lib12.Library12 fld1;
}
class myClass2 {
myClass2(lib12.Library12 this.fld2);
lib12.Library12 fld2;
}
main() {
var o = myClass.func1();
Expect.equals(2, o.func());
o = new myClass(10);
Expect.equals(10, o.fld);
myFunc func = myClass.func2;
Expect.equals(2, func(new lib12.Library12(10)).func());
Expect.equals(10, func(new lib12.Library12(10)).fld);
o = new myClass1(100);
Expect.equals(2, o.fld1.func());
Expect.equals(100, o.fld1.fld);
o = new myClass2(new lib12.Library12(200));
Expect.equals(2, o.fld2.func());
Expect.equals(200, o.fld2.fld);
o = new myInterface(new lib12.Library12(100));
Expect.equals(2, o.myfld.func());
Expect.equals(100, o.myfld.fld);
o = o.addObjects(new lib12.Library12(200), new lib12.Library12(300));
Expect.equals(2, o.func());
Expect.equals(600, o.fld);
}