Home
last modified time | relevance | path

Searched refs:IsConstructor (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/npm/node_modules/es-abstract/
Des2015.js204 IsConstructor: function IsConstructor(argument) {
348 if (this.IsConstructor(S)) {
597 if (!this.IsConstructor(C)) {
DCHANGELOG.md69 * [Fix] ES6: IsConstructor should return true for `class` constructors.
/third_party/cef/libcef_dll/ctocpp/
Dv8stack_frame_ctocpp.h44 bool IsConstructor() override;
Dv8stack_frame_ctocpp.cc125 NO_SANITIZE("cfi-icall") bool CefV8StackFrameCToCpp::IsConstructor() { in IsConstructor() function in CefV8StackFrameCToCpp
/third_party/node/deps/npm/node_modules/es-abstract/operations/
D2015.js30 IsConstructor: 'https://ecma-international.org/ecma-262/6.0/#sec-isconstructor', property
D2016.js30 IsConstructor: 'https://ecma-international.org/ecma-262/7.0/#sec-isconstructor', property
D2017.js31 IsConstructor: 'https://ecma-international.org/ecma-262/8.0/#sec-isconstructor', property
/third_party/cef/libcef_dll/cpptoc/
Dv8stack_frame_cpptoc.cc133 bool _retval = CefV8StackFrameCppToC::Get(self)->IsConstructor(); in v8stack_frame_is_constructor()
/third_party/cef/include/
Dcef_v8.h995 virtual bool IsConstructor() = 0;
/third_party/node/deps/npm/node_modules/es-abstract/test/
Dtests.js527 t.equal(true, ES.IsConstructor(function () {}), 'function is constructor');
528 t.equal(false, ES.IsConstructor(/a/g), 'regex is not constructor');
530 t.equal(false, ES.IsConstructor(object), object + ' object is not constructor');
535 t.equal(ES.IsConstructor(foo), true, 'class is constructor');
/third_party/skia/third_party/externals/dawn/src/dawn_node/interop/
DWebGPU.h.tmpl70 {{- if IsConstructor $m}} {{$.Name}}();
/third_party/cef/libcef/renderer/
Dv8_impl.h397 bool IsConstructor() override;
Dv8_impl.cc2520 is_constructor_ = handle->IsConstructor(); in CefV8StackFrameImpl()
2553 bool CefV8StackFrameImpl::IsConstructor() { in IsConstructor() function in CefV8StackFrameImpl
/third_party/cef/tests/ceftests/
Dv8_unittest.cc2414 EXPECT_FALSE(frame->IsConstructor()); in RunStackTraceTest()
2424 EXPECT_FALSE(frame->IsConstructor()); in RunStackTraceTest()