Lines Matching refs:DSLVarBase
26 DSLVarBase::DSLVarBase(DSLType type, skstd::string_view name, DSLExpression initialValue,
28 : DSLVarBase(DSLModifiers(), std::move(type), name, std::move(initialValue), pos) {}
30 DSLVarBase::DSLVarBase(DSLType type, DSLExpression initialValue, PositionInfo pos)
31 : DSLVarBase(type, "var", std::move(initialValue), pos) {}
33 DSLVarBase::DSLVarBase(const DSLModifiers& modifiers, DSLType type, DSLExpression initialValue,
35 : DSLVarBase(modifiers, type, "var", std::move(initialValue), pos) {}
37 DSLVarBase::DSLVarBase(const DSLModifiers& modifiers, DSLType type, skstd::string_view name,
73 DSLVarBase::~DSLVarBase() {
82 void DSLVarBase::swap(DSLVarBase& other) {
157 DSLPossibleExpression DSLVarBase::operator[](DSLExpression&& index) {
161 DSLPossibleExpression DSLVarBase::assign(DSLExpression expr) {