diff options
author | 2022-01-21 21:03:06 -0800 | |
---|---|---|
committer | 2022-01-21 21:03:06 -0800 | |
commit | f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3 (patch) | |
tree | c2cae3c93d89a2b25d52248dc5ea3cad1e637b32 /integration/bunjs-only-snippets/macro-check.js | |
parent | 3e803b3a58e1d655e8a3e3c4a92fb0e40016dec8 (diff) | |
download | bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.tar.gz bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.tar.zst bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.zip |
more tests
Diffstat (limited to 'integration/bunjs-only-snippets/macro-check.js')
-rw-r--r-- | integration/bunjs-only-snippets/macro-check.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/macro-check.js b/integration/bunjs-only-snippets/macro-check.js index 2ea3fb8bd..ef84d0b49 100644 --- a/integration/bunjs-only-snippets/macro-check.js +++ b/integration/bunjs-only-snippets/macro-check.js @@ -1,3 +1,7 @@ export function keepSecondArgument(args) { return args.arguments[1]; } + +export function bacon(args) { + return args.arguments[1]; +} |