Home | History | Annotate | Download | only in interpreter

Lines Matching refs:regExp

1533         /* new_regexp dst(r) regExp(re)
1535 Constructs a new RegExp instance using the original
1536 constructor from regexp regExp, and puts the result in
1540 RegExp* regExp = codeBlock->regexp(vPC[2].u.operand);
1541 if (!regExp->isValid()) {
1542 exceptionValue = createSyntaxError(callFrame, "Invalid flags supplied to RegExp constructor.");
1545 callFrame->uncheckedR(dst) = JSValue(new (globalData) RegExpObject(callFrame->lexicalGlobalObject(), callFrame->scopeChain()->globalObject->regExpStructure(), regExp));