@@ -292,6 +292,8 @@ export class __TrackedValueStep<
292292 * **WARNING**: avoid using this where possible, it causes OpPlans to split.
293293 *
294294 * **WARNING**: this is the most expensive eval, if you need to eval, prefer evalIs, evalHas, etc instead.
295+ *
296+ * @internal
295297 */
296298 eval ( ) : TData | undefined {
297299 const { path, value } = this ;
@@ -311,6 +313,8 @@ export class __TrackedValueStep<
311313 * Should only be used on scalars.
312314 *
313315 * **WARNING**: avoid using this where possible, it causes OpPlans to split.
316+ *
317+ * @internal
314318 */
315319 evalIs ( expectedValue : unknown ) : boolean {
316320 const { value, path } = this ;
@@ -324,6 +328,7 @@ export class __TrackedValueStep<
324328 return pass ;
325329 }
326330
331+ /** @internal */
327332 evalIsEmpty ( ) {
328333 const { value, path } = this ;
329334 const isEmpty =
@@ -344,6 +349,8 @@ export class __TrackedValueStep<
344349 * check will always return the same (boolean) result.
345350 *
346351 * **WARNING**: avoid using this where possible, it causes OpPlans to split.
352+ *
353+ * @internal
347354 */
348355 evalHas ( key : string ) : boolean {
349356 const { value, path } = this ;
@@ -372,6 +379,8 @@ export class __TrackedValueStep<
372379 * check will always return the same result.
373380 *
374381 * **WARNING**: avoid using this where possible, it causes OpPlans to split.
382+ *
383+ * @internal
375384 */
376385 evalKeys ( ) : ReadonlyArray < keyof TData & string > | null {
377386 const { value, path } = this ;
@@ -417,6 +426,8 @@ export class __TrackedValueStep<
417426 * the same length.
418427 *
419428 * **WARNING**: avoid using this where possible, it causes OpPlans to split.
429+ *
430+ * @internal
420431 */
421432 evalLength ( ) : number | null {
422433 const { value, path } = this ;
0 commit comments