Home
last modified time | relevance | path

Searched refs:parentCtor (Results 1 – 3 of 3) sorted by relevance

/external/v8/test/mjsunit/tools/
Dprofile.js136 function Inherits(childCtor, parentCtor) { argument
138 tempCtor.prototype = parentCtor.prototype;
139 childCtor.superClass_ = parentCtor.prototype;
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/
Dbase.js1422 goog.inherits = function(childCtor, parentCtor) { argument
1425 tempCtor.prototype = parentCtor.prototype;
1426 childCtor.superClass_ = parentCtor.prototype;
/external/v8/tools/
Dtickprocessor.js29 function inherits(childCtor, parentCtor) { argument
30 childCtor.prototype.__proto__ = parentCtor.prototype;