cd2f133e77
R=alanknight@google.com Review URL: https://codereview.chromium.org//172873002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@32821 260f80e4-7a28-3924-810f-c04153c831b5
37 lines
513 B
Dart
37 lines
513 B
Dart
library testLib;
|
|
import 'temp2.dart';
|
|
import 'temp3.dart';
|
|
export 'temp2.dart';
|
|
export 'temp3.dart';
|
|
|
|
/**
|
|
* Doc comment for class [A].
|
|
*
|
|
* Multiline Test
|
|
*/
|
|
/*
|
|
* Normal comment for class A.
|
|
*/
|
|
class A {
|
|
|
|
int _someNumber;
|
|
|
|
A() {
|
|
_someNumber = 12;
|
|
}
|
|
|
|
A.customConstructor();
|
|
|
|
/**
|
|
* Test for linking to parameter [A]
|
|
*/
|
|
void doThis(int A) {
|
|
print(A);
|
|
}
|
|
}
|
|
|
|
// A trivial use of `B` and `C` to eliminate import warnings
|
|
B sampleMethod(C cInstance) {
|
|
throw new UnimplementedError();
|
|
}
|