We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c6dca commit 7bf2ec9Copy full SHA for 7bf2ec9
test/unit/expressions.spec.ts
@@ -224,6 +224,7 @@ export class ExpressionTests {
224
@TestCase("inst.field | 3", 8 | 3)
225
@TestCase("inst.field << 3", 8 << 3)
226
@TestCase("inst.field >> 1", 8 >> 1)
227
+ @TestCase("inst.field = 3", 7)
228
@TestCase(`"abc" + inst.field`, "abc8")
229
@Test("Get accessor expression")
230
public getAccessorBinary(expression: string, expected: any): void {
0 commit comments