From 6047a9691f976c820c025971625f4f39c0d9518b Mon Sep 17 00:00:00 2001 From: kit Date: Sun, 31 May 2026 19:12:41 +0200 Subject: [PATCH] Mark private methods as private --- src/math/patch-vector.js | 2 ++ src/strands/strands_transpiler.js | 3 +++ 2 files changed, 5 insertions(+) diff --git a/src/math/patch-vector.js b/src/math/patch-vector.js index 96586f7583..d2121101f5 100644 --- a/src/math/patch-vector.js +++ b/src/math/patch-vector.js @@ -76,6 +76,8 @@ export function _validatedVectorOperation(expectsSoloNumberArgument){ } /** + * @private + * @internal * Each of the following decorators validates the data on vector operations. * These ensure that the arguments are consistently formatted, and that * pre-conditions are met. diff --git a/src/strands/strands_transpiler.js b/src/strands/strands_transpiler.js index ff3a4e2f88..0d9310204a 100644 --- a/src/strands/strands_transpiler.js +++ b/src/strands/strands_transpiler.js @@ -1661,6 +1661,9 @@ function transformHelperFunctionEarlyReturns(ast, names) { } /** + * @private + * @internal + * * Transpiles a p5.strands callback into executable JavaScript by applying * a multi-pass AST transformation pipeline. *