blob: 19ce1c4695d72e3b234b1f38f321ddd0e6d5fa44 [file] [log] [blame]
function Car() {
this.manufacturer = "test";
this.drive = function() {
};
}
/**
* @extends Car
* @returns {undefined}
*/
function SuperCar() {
this.topSpeed = 220;
this.drift = function() {
};
}
var a = new SuperCar();
//cc;19;a.;drive,drift,manufacturer,topSpeed;0
var obj = {
"hello": 1,
"isTest": true
};
/**
* @extends obj
*/
function Item() {
this.greetings = function(){};
}
var b = new Item();
//cc;34;b.;isTest,hello,greetings;0