Searched refs:polymorphic (Results 1 - 3 of 3) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | thisTypeInFunctions.js | 144 public polymorphic(this: this): number { return this.x; } 154 polymorphic(this: this): number { return this.y; } 164 d2.polymorphic = d1.polymorphic // ok, 'x' and 'y' in { x, y } 165 d1.polymorphic = d2.polymorphic // ok, 'x' and 'y' in { x, y } 168 d1.polymorphic = b2.polymorphic // ok, 'y' in D: { x, y } 169 d2.polymorphic = d1.explicit // ok, 'y' in { x, y } 170 b1.polymorphic [all...] |
H A D | thisTypeInFunctionsNegative.js | 120 /// class-based polymorphic assignability (with inheritance!) /// 124 public polymorphic(this: this): number { return this.x; } 133 polymorphic(this: this): number { return this.y; } 146 b1.polymorphic = b2.polymorphic // error, 'this.y' not in Base1: { x } 147 b1.explicit = b2.polymorphic // error, 'y' not in Base1: { x } 149 d1.explicit = b2.polymorphic // error, 'y' not in Base1: { x } 287 /// class-based polymorphic assignability (with inheritance!) ///
289 polymorphic() { return this.x; }
296 polymorphic() { retur [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | module-compiler.cc | 1321 FixedArray polymorphic = FixedArray::cast(value); in Process() local 1323 for (int j = 0; j < polymorphic.length(); j += 2) { in Process() 1324 total_count += Smi::cast(polymorphic.get(j + 1)).value(); in Process() 1329 for (int j = 0; j < polymorphic.length(); j += 2) { in Process() 1330 int32_t this_count = Smi::cast(polymorphic.get(j + 1)).value(); in Process() 1335 // We reject this polymorphic entry if: in Process() 1339 if (!polymorphic.get(j).IsWasmInternalFunction()) continue; in Process() 1341 WasmInternalFunction::cast(polymorphic.get(j)); in Process() 1356 PrintF("[Function #%d call_ref #%d inlineable (polymorphic %f)]\n", in Process() 1380 // or polymorphic tha in Process() [all...] |
Completed in 6 milliseconds