From f3112d15f4b6980865b8aba639ff8fe7c8683682 Mon Sep 17 00:00:00 2001 From: Tyler K Date: Tue, 29 Oct 2024 12:34:38 -0700 Subject: [PATCH] Generation --- example/demo_gen/demo/FixedDecimal.mjs | 2 +- example/demo_gen/demo/FixedDecimalFormatter.mjs | 2 +- feature_tests/demo_gen/demo/Float64Vec.mjs | 2 +- feature_tests/demo_gen/demo/MyString.mjs | 4 ++-- feature_tests/demo_gen/demo/OptionString.mjs | 2 +- feature_tests/demo_gen/demo/Utf16Wrap.mjs | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/example/demo_gen/demo/FixedDecimal.mjs b/example/demo_gen/demo/FixedDecimal.mjs index 49faa7f24..8b1a9c1aa 100644 --- a/example/demo_gen/demo/FixedDecimal.mjs +++ b/example/demo_gen/demo/FixedDecimal.mjs @@ -1,5 +1,5 @@ import { FixedDecimal } from "../../js/lib/api/index.mjs" -export function toString() { +export function toString(v) { var terminusArgs = arguments; return (function (...args) { return args[0].toString(...args.slice(1)) }).apply( null, diff --git a/example/demo_gen/demo/FixedDecimalFormatter.mjs b/example/demo_gen/demo/FixedDecimalFormatter.mjs index 7e53e38f3..f8c156179 100644 --- a/example/demo_gen/demo/FixedDecimalFormatter.mjs +++ b/example/demo_gen/demo/FixedDecimalFormatter.mjs @@ -3,7 +3,7 @@ import { FixedDecimal } from "../../js/lib/api/index.mjs" import { FixedDecimalFormatter } from "../../js/lib/api/index.mjs" import { FixedDecimalFormatterOptions } from "../../js/lib/api/index.mjs" import { Locale } from "../../js/lib/api/index.mjs" -export function formatWrite() { +export function formatWrite(name, grouping_strategy, some_other_config, v) { var terminusArgs = arguments; return (function (...args) { return args[0].formatWrite(...args.slice(1)) }).apply( null, diff --git a/feature_tests/demo_gen/demo/Float64Vec.mjs b/feature_tests/demo_gen/demo/Float64Vec.mjs index 7d78f0ff3..26b6df6a9 100644 --- a/feature_tests/demo_gen/demo/Float64Vec.mjs +++ b/feature_tests/demo_gen/demo/Float64Vec.mjs @@ -1,5 +1,5 @@ import { Float64Vec } from "../../js/api/index.mjs" -export function toString() { +export function toString(v) { var terminusArgs = arguments; return (function (...args) { return args[0].toString(...args.slice(1)) }).apply( null, diff --git a/feature_tests/demo_gen/demo/MyString.mjs b/feature_tests/demo_gen/demo/MyString.mjs index 6e1934cf1..8888a5e11 100644 --- a/feature_tests/demo_gen/demo/MyString.mjs +++ b/feature_tests/demo_gen/demo/MyString.mjs @@ -1,5 +1,5 @@ import { MyString } from "../../js/api/index.mjs" -export function getStr() { +export function getStr(v) { var terminusArgs = arguments; return (function (...args) { return args[0].getStr }).apply( null, @@ -13,7 +13,7 @@ export function getStr() { ] ); } -export function stringTransform() { +export function stringTransform(foo) { var terminusArgs = arguments; return MyString.stringTransform.apply( null, diff --git a/feature_tests/demo_gen/demo/OptionString.mjs b/feature_tests/demo_gen/demo/OptionString.mjs index 56828791e..758b34558 100644 --- a/feature_tests/demo_gen/demo/OptionString.mjs +++ b/feature_tests/demo_gen/demo/OptionString.mjs @@ -1,5 +1,5 @@ import { OptionString } from "../../js/api/index.mjs" -export function write() { +export function write(diplomatStr) { var terminusArgs = arguments; return (function (...args) { return args[0].write(...args.slice(1)) }).apply( null, diff --git a/feature_tests/demo_gen/demo/Utf16Wrap.mjs b/feature_tests/demo_gen/demo/Utf16Wrap.mjs index 5c58b51ca..98367298b 100644 --- a/feature_tests/demo_gen/demo/Utf16Wrap.mjs +++ b/feature_tests/demo_gen/demo/Utf16Wrap.mjs @@ -1,5 +1,5 @@ import { Utf16Wrap } from "../../js/api/index.mjs" -export function getDebugStr() { +export function getDebugStr(input) { var terminusArgs = arguments; return (function (...args) { return args[0].getDebugStr(...args.slice(1)) }).apply( null,