Skip to content

Commit 06a644e

Browse files
committed
Does ember <4 not support private fields?
1 parent d89a79b commit 06a644e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-app/tests/core/raw-api-test.gts

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ module('RAW Rendering', function (hooks) {
5656
class Context {
5757
@tracked count = 0;
5858

59-
#thing = resource(() => this.count);
59+
_thing = resource(() => this.count);
6060

6161
@cached
6262
get thing() {
6363
// @ts-expect-error - types are a lie due to decorators
64-
let instance = this.#thing.create();
64+
let instance = this._thing.create();
6565

6666
instance.link(this);
6767

0 commit comments

Comments
 (0)