Skip to content

Commit a5c164c

Browse files
committed
add more extern cases
1 parent e346289 commit a5c164c

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

src/test/externs/test.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,20 @@
44
var Foo = function() {};
55
Foo.prototype.wozMethod = function() {
66
};
7-
87
/**
98
* @return {Foo}
109
*/
1110
var baz = function() {};
11+
/**
12+
* @constructor
13+
*/
14+
Foo.Bar = function() {};
15+
/**
16+
* @return {Foo.Boo}
17+
*/
18+
Foo.Bar.prototype.baz = function() {};
19+
/**
20+
* @constructor
21+
*/
22+
Foo.Boo = function() {};
23+
Foo.Boo.prototype.woz = function() {};

0 commit comments

Comments
 (0)