You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`@computed can only be used on accessors or fields, attempted to use it with ${dec.context.name.toString()} but that was a method. Try converting it to a getter (e.g. \`get ${dec.context.name.toString()}() {}\`)`,
213
+
false
214
+
);
215
+
// TS knows "assert()" is terminal and will complain about unreachable code if
216
+
// I use a break here. ESLint complains if I *don't* use a break here.
217
+
// eslint-disable-next-line no-fallthrough
209
218
default:
210
219
thrownewError(
211
220
`unimplemented: computedDecorator on ${dec.kind}${dec.context.name?.toString()}`
0 commit comments