Skip to content

Commit 090b32c

Browse files
committed
feat: put feature under a feature flag
1 parent e2c3fcc commit 090b32c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

internal/interpreter/evaluate_expr.go

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ func (st *programState) evaluateExpr(expr parser.ValueExpr) (Value, InterpreterE
1919
case parser.AccountTextPart:
2020
parts = append(parts, part.Name)
2121
case *parser.Variable:
22+
err := st.checkFeatureFlag(ExperimentalAccountInterpolationFlag)
23+
if err != nil {
24+
return nil, err
25+
}
26+
2227
value, err := st.evaluateExpr(part)
2328
if err != nil {
2429
return nil, err

internal/interpreter/interpreter.go

+1
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ type FeatureFlag = string
182182
const (
183183
ExperimentalOverdraftFunctionFeatureFlag FeatureFlag = "experimental-overdraft-function"
184184
ExperimentalOneofFeatureFlag FeatureFlag = "experimental-oneof"
185+
ExperimentalAccountInterpolationFlag FeatureFlag = "experimental-account-interpolation"
185186
)
186187

187188
func RunProgram(

internal/interpreter/interpreter_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3863,7 +3863,7 @@ func TestAccountInterp(t *testing.T) {
38633863
"k": machine.AccountAddress("acc:42:pending:user:001"),
38643864
},
38653865
}
3866-
test(t, tc)
3866+
testWithFeatureFlag(t, tc, machine.ExperimentalAccountInterpolationFlag)
38673867
}
38683868

38693869
func TestAccountInvalidString(t *testing.T) {
@@ -3893,5 +3893,5 @@ func TestAccountInvalidString(t *testing.T) {
38933893
},
38943894
},
38953895
}
3896-
test(t, tc)
3896+
testWithFeatureFlag(t, tc, machine.ExperimentalAccountInterpolationFlag)
38973897
}

0 commit comments

Comments
 (0)