File tree 3 files changed +5
-5
lines changed
packages/@ember/object/type-tests
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class Foo {
12
12
return `${ this . firstName } ${ this . lastName } ` ;
13
13
}
14
14
15
- @computed ( 'firstName' , 'lastName' ) . readOnly ( )
15
+ @( computed ( 'firstName' , 'lastName' ) . readOnly ( ) )
16
16
get readonlyFullName ( ) {
17
17
return `${ this . firstName } ${ this . lastName } ` ;
18
18
}
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ class Person extends EmberObject {
57
57
return `${ this . get ( 'firstName' ) } ${ this . get ( 'lastName' ) } ` ;
58
58
}
59
59
60
- @computed ( 'fullName' ) . readOnly ( )
60
+ @( computed ( 'fullName' ) . readOnly ( ) )
61
61
get fullNameReadonly ( ) {
62
62
return this . get ( 'fullName' ) ;
63
63
}
@@ -73,7 +73,7 @@ class Person extends EmberObject {
73
73
this . set ( 'lastName' , last ) ;
74
74
}
75
75
76
- @computed ( ) . meta( { foo : 'bar' } ) . readOnly ( )
76
+ @( computed ( ) . meta( { foo : 'bar' } ) . readOnly ( ) )
77
77
get combinators ( ) {
78
78
return this . get ( 'firstName' ) ;
79
79
}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class Person extends Ember.Object {
23
23
return `${ this . get ( 'firstName' ) } ${ this . get ( 'lastName' ) } ` ;
24
24
}
25
25
26
- @Ember . computed ( 'fullName' ) . readOnly ( )
26
+ @( Ember . computed ( 'fullName' ) . readOnly ( ) )
27
27
get fullNameReadonly ( ) {
28
28
return this . get ( 'fullName' ) ;
29
29
}
@@ -39,7 +39,7 @@ class Person extends Ember.Object {
39
39
this . set ( 'lastName' , last ) ;
40
40
}
41
41
42
- @Ember . computed ( ) . meta( { foo : 'bar' } ) . readOnly ( )
42
+ @( Ember . computed ( ) . meta( { foo : 'bar' } ) . readOnly ( ) )
43
43
get combinators ( ) {
44
44
return this . get ( 'firstName' ) ;
45
45
}
You can’t perform that action at this time.
0 commit comments