OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:functionwithoutproto
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/v8/test/mjsunit/regress/
regress-143967.js
31
var
functionWithoutProto
= [].filter;
32
var obj = Object.create(
functionWithoutProto
);
33
functionWithoutProto
.__proto__ = function() {};
34
assertEquals(
functionWithoutProto
.prototype, obj.prototype);
Completed in 368 milliseconds