Home
last modified time | relevance | path

Searched refs:LineEndOpCode (Results 1 – 3 of 3) sorted by relevance

/ark/js_runtime/ecmascript/regexp/
Dregexp_opcode.h257 class LineEndOpCode : public RegExpOpCode {
259 LineEndOpCode() : RegExpOpCode(OP_LINE_END, RegExpOpCode::OP_SIZE_ONE) {} in LineEndOpCode() function
261 ~LineEndOpCode() override = default;
262 NO_COPY_SEMANTIC(LineEndOpCode);
263 NO_MOVE_SEMANTIC(LineEndOpCode);
Dregexp_opcode.cpp40 static LineEndOpCode g_lineEndOpcode = LineEndOpCode(); // NOLINTNEXTLINE(fuchsia-statically…
378 uint32_t LineEndOpCode::EmitOpCode(DynChunk *buf, [[maybe_unused]] uint32_t para) const in EmitOpCode()
384 uint32_t LineEndOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_… in DumpOpCode()
Dregexp_parser.cpp248 LineEndOpCode lineEndOp; in ParseAlternative()