Lines Matching refs:encode
68 auto flags = AsyncFunctionBitField::encode(IsAsyncFunction(kind)) |
69 GeneratorFunctionBitField::encode(IsGeneratorFunction(kind)) |
70 ArrowFunctionBitField::encode(IsArrowFunction(kind)) |
71 MethodBitField::encode(IsConciseMethod(kind)) |
72 StaticBitField::encode(IsStatic(kind)) |
73 ClassConstructorBitField::encode(IsClassConstructor(kind)) |
74 DefaultConstructorBitField::encode(IsDefaultConstructor(kind)) |
75 DerivedConstructorBitField::encode(IsDerivedConstructor(kind));
171 auto flags = ReadOnlyBitField::encode(false) |
172 ConfigurableBitField::encode(true) |
173 EnumerableBitField::encode(true);
179 auto flags = ReadOnlyBitField::encode(details.IsReadOnly()) |
180 ConfigurableBitField::encode(details.IsConfigurable()) |
181 EnumerableBitField::encode(details.IsEnumerable());
1652 ScopeInfo::VariableModeBits::encode(VariableMode::kLet) |
1653 ScopeInfo::InitFlagBit::encode(
1655 ScopeInfo::MaybeAssignedFlagBit::encode(
1657 ScopeInfo::ParameterNumberBits::encode(
1659 ScopeInfo::IsStaticFlagBit::encode(IsStaticFlag::kNotStatic);
1699 ScopeInfo::SloppyEvalCanExtendVarsBit::encode(false) |
1700 ScopeInfo::LanguageModeBit::encode(LanguageMode::kStrict) |
1701 ScopeInfo::DeclarationScopeBit::encode(false) |
1702 ScopeInfo::ReceiverVariableBits::encode(VariableAllocationInfo::NONE) |
1703 ScopeInfo::ClassScopeHasPrivateBrandBit::encode(false) |
1704 ScopeInfo::HasSavedClassVariableBit::encode(false) |
1705 ScopeInfo::HasNewTargetBit::encode(false) |
1706 ScopeInfo::FunctionVariableBits::encode(VariableAllocationInfo::NONE) |
1707 ScopeInfo::HasInferredFunctionNameBit::encode(false) |
1708 ScopeInfo::IsAsmModuleBit::encode(false) |
1709 ScopeInfo::HasSimpleParametersBit::encode(false) |
1710 ScopeInfo::FunctionKindBits::encode(FunctionKind::kNormalFunction) |
1711 ScopeInfo::HasOuterScopeInfoBit::encode(has_parent) |
1712 ScopeInfo::IsDebugEvaluateScopeBit::encode(false) |
1713 ScopeInfo::ForceContextAllocationBit::encode(false) |
1714 ScopeInfo::PrivateNameLookupSkipsOuterClassBit::encode(false) |
1715 ScopeInfo::HasContextExtensionSlotBit::encode(false) |
1716 ScopeInfo::IsReplModeScopeBit::encode(false) |
1717 ScopeInfo::HasLocalsBlockListBit::encode(false);
1721 flags |= ScopeInfo::DeclarationScopeBit::encode(true) |
1722 ScopeInfo::HasSimpleParametersBit::encode(true);
1726 flags |= ScopeInfo::ForceContextAllocationBit::encode(true);
1734 flags |= ScopeInfo::ScopeTypeBits::encode(scope_type);