Searched defs:MethodLiteral (Results 1 – 2 of 2) sorted by relevance
31 struct PUBLIC_API MethodLiteral : public base::AlignedStruct<sizeof(uint64_t), struct40 MethodLiteral(const JSPandaFile *jsPandaFile, EntityId methodId); argument45 MethodLiteral &operator=(const MethodLiteral &) = delete; argument46 MethodLiteral &operator=(MethodLiteral &&) = delete; argument48 static constexpr size_t VREGS_ARGS_NUM_BITS = 28; // 28: maximum 268,435,45549 using HaveThisBit = BitField<bool, 0, 1>; // offset 050 using HaveNewTargetBit = HaveThisBit::NextFlag; // offset 151 using HaveExtraBit = HaveNewTargetBit::NextFlag; // offset 252 using HaveFuncBit = HaveExtraBit::NextFlag; // offset 353 using NumVregsBits = HaveFuncBit::NextField<uint32_t, VREGS_ARGS_NUM_BITS>; // offset 4-31[all …]
25 MethodLiteral::MethodLiteral(const JSPandaFile *jsPandaFile, EntityId methodId) in MethodLiteral() function in panda::ecmascript::MethodLiteral