OLD | NEW |
---|---|
1 /** | 1 /** |
2 * @constructor | 2 * @constructor |
3 */ | 3 */ |
4 Base = function() {} | 4 Base = function() {} |
5 | 5 |
6 /** | 6 /** |
7 * @constructor | 7 * @constructor |
8 * @extends {Base} | 8 * @extends {Base} |
9 */ | 9 */ |
10 DerivedNoProto = function() {} | 10 DerivedNoProto = function() {} |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
120 * @constructor | 120 * @constructor |
121 * @extends {Set.<T>} | 121 * @extends {Set.<T>} |
122 * @template T | 122 * @template T |
123 */ | 123 */ |
124 var BadSetSubclass = function() | 124 var BadSetSubclass = function() |
125 { | 125 { |
126 } | 126 } |
127 | 127 |
128 BadSetSubclass.prototype = { | 128 BadSetSubclass.prototype = { |
129 } | 129 } |
130 | |
131 var NS = {}; | |
132 | |
133 /** | |
134 * @constructor | |
135 * @extends {Base} | |
136 */ | |
137 NS.BadSubClass = function() {} | |
OLD | NEW |