Skip to content

Commit 7bf2ec9

Browse files
committed
add test
1 parent a2c6dca commit 7bf2ec9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/unit/expressions.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ export class ExpressionTests {
224224
@TestCase("inst.field | 3", 8 | 3)
225225
@TestCase("inst.field << 3", 8 << 3)
226226
@TestCase("inst.field >> 1", 8 >> 1)
227+
@TestCase("inst.field = 3", 7)
227228
@TestCase(`"abc" + inst.field`, "abc8")
228229
@Test("Get accessor expression")
229230
public getAccessorBinary(expression: string, expected: any): void {

0 commit comments

Comments
 (0)