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
413 B
Dart
37 lines
413 B
Dart
library testLib2.foo;
|
|
import 'temp.dart';
|
|
|
|
/**
|
|
* Doc comment for class [B].
|
|
*
|
|
* Multiline Test
|
|
*/
|
|
|
|
/*
|
|
* Normal comment for class B.
|
|
*/
|
|
class B extends A {
|
|
|
|
B();
|
|
B.fooBar();
|
|
|
|
/**
|
|
* Test for linking to super
|
|
*/
|
|
int doElse(int b) {
|
|
print(b);
|
|
return b;
|
|
}
|
|
|
|
/**
|
|
* Test for linking to parameter [c]
|
|
*/
|
|
void doThis(int c) {
|
|
print(c);
|
|
}
|
|
}
|
|
|
|
int testFunc(int a) {
|
|
return a;
|
|
}
|