linked-list supports index assign and concatenation
This commit is contained in:
+2
-2
@@ -81,8 +81,8 @@ func TestAccessSubFields(t *testing.T) {
|
||||
/* 1 */ {`D.a.uno`, int64(10), nil},
|
||||
/* 2 */ {`D.a.uno = 111; D.a."uno"`, int64(111), nil},
|
||||
/* 3 */ {`D.a.uno = 111; D["a"]["uno"]`, int64(111), nil},
|
||||
// /* 4 */ {`D.b[1] = 22; D["b"][1]`, int64(22), nil},
|
||||
/* 4 */ {`D.b[1] = 22; D["b"][1]`, nil, `[1:3] collection expected`},
|
||||
/* 4 */ {`D.b[1] = 22; D["b"][1]`, int64(22), nil},
|
||||
// /* 4 */ {`D.b[1] = 22; D["b"][1]`, nil, `[1:3] collection expected`},
|
||||
}
|
||||
RunCtxTestSuiteSpec(t, ctx, section, inputs, 4)
|
||||
// runCtxTestSuite(t, ctx, section, inputs)
|
||||
|
||||
Reference in New Issue
Block a user