Home | History | Annotate | Download | only in cctest

Lines Matching full:regexp

37 #include "src/regexp/jsregexp.h"
38 #include "src/regexp/regexp-macro-assembler.h"
39 #include "src/regexp/regexp-macro-assembler-irregexp.h"
40 #include "src/regexp/regexp-parser.h"
44 #include "src/regexp/interpreter-irregexp.h"
50 #include "src/regexp/arm/regexp-macro-assembler-arm.h"
55 #include "src/regexp/arm64/regexp-macro-assembler-arm64.h"
60 #include "src/regexp/ppc/regexp-macro-assembler-ppc.h"
65 #include "src/regexp/mips/regexp-macro-assembler-mips.h"
70 #include "src/regexp/mips64/regexp-macro-assembler-mips64.h"
73 #include "src/regexp/x64/regexp-macro-assembler-x64.h"
80 #include "src/regexp/ia32/regexp-macro-assembler-ia32.h"
83 #include "src/regexp/x87/regexp-macro-assembler-x87.h"
1875 // Test that ES2015 RegExp compatibility fixes are in place, that they
1886 // Compat fix: RegExp.prototype.sticky == undefined; UseCounter tracks it
1887 v8::Local<v8::Value> resultSticky = CompileRun("RegExp.prototype.sticky");
1903 " Object.getOwnPropertyDescriptor(RegExp.prototype, 'sticky')"
1913 // RegExp.prototype.toString() returns '/(?:)/' as a compatibility fix;
1916 CompileRun("RegExp.prototype.toString().length");
1931 // .toString() throws on non-RegExps that aren't RegExp.prototype
1934 "try { RegExp.prototype.toString.call(null) }"