Skip to content

Commit 2e6cbb7

Browse files
authored
Merge pull request #20676 from emberjs/chriskrycho/fix-ts-nightly
[BUGFIX beta] use correct syntax for computed.test.ts
2 parents fda3b4f + 41bb1b0 commit 2e6cbb7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/@ember/object/type-tests/computed.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Foo {
1212
return `${this.firstName} ${this.lastName}`;
1313
}
1414

15-
@computed('firstName', 'lastName').readOnly()
15+
@(computed('firstName', 'lastName').readOnly())
1616
get readonlyFullName() {
1717
return `${this.firstName} ${this.lastName}`;
1818
}

type-tests/@ember/object-test/computed.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class Person extends EmberObject {
5757
return `${this.get('firstName')} ${this.get('lastName')}`;
5858
}
5959

60-
@computed('fullName').readOnly()
60+
@(computed('fullName').readOnly())
6161
get fullNameReadonly() {
6262
return this.get('fullName');
6363
}
@@ -73,7 +73,7 @@ class Person extends EmberObject {
7373
this.set('lastName', last);
7474
}
7575

76-
@computed().meta({ foo: 'bar' }).readOnly()
76+
@(computed().meta({ foo: 'bar' }).readOnly())
7777
get combinators() {
7878
return this.get('firstName');
7979
}

type-tests/ember/computed.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Person extends Ember.Object {
2323
return `${this.get('firstName')} ${this.get('lastName')}`;
2424
}
2525

26-
@Ember.computed('fullName').readOnly()
26+
@(Ember.computed('fullName').readOnly())
2727
get fullNameReadonly() {
2828
return this.get('fullName');
2929
}
@@ -39,7 +39,7 @@ class Person extends Ember.Object {
3939
this.set('lastName', last);
4040
}
4141

42-
@Ember.computed().meta({ foo: 'bar' }).readOnly()
42+
@(Ember.computed().meta({ foo: 'bar' }).readOnly())
4343
get combinators() {
4444
return this.get('firstName');
4545
}

0 commit comments

Comments
 (0)