public FunctionConstructor(ObjectPrototype objectPrototype)
 {
     prototype = new FunctionPrototype(objectPrototype);
     DefinePropertyOrThrow("prototype", new PropertyDescriptor(prototype, true, false, false));
 }
Example #2
0
 public FunctionPrototype(ObjectPrototype objectPrototype)
 {
     prototype = objectPrototype;
 }