23 lines
655 B
Bash
23 lines
655 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# gen_v1_from_builder_compare_ret.sh — v1 JSON (compare→ret)
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
||
|
|
source "$ROOT/tools/smokes/v2/lib/test_runner.sh" 2>/dev/null || true
|
||
|
|
|
||
|
|
code=$(cat <<'HCODE'
|
||
|
|
using lang.compiler.pipeline_v2.emit_compare_box as EmitCompareBox
|
||
|
|
static box Main { method main(args) {
|
||
|
|
// ret (3 < 5)
|
||
|
|
local j = EmitCompareBox.emit_compare(3, 5, "Lt")
|
||
|
|
print("" + j)
|
||
|
|
return 0
|
||
|
|
} }
|
||
|
|
HCODE
|
||
|
|
)
|
||
|
|
|
||
|
|
NYASH_USING_AST=1 NYASH_DISABLE_NY_COMPILER=1 HAKO_DISABLE_NY_COMPILER=1 \
|
||
|
|
NYASH_PARSER_STAGE3=1 HAKO_PARSER_STAGE3=1 NYASH_PARSER_ALLOW_SEMICOLON=1 \
|
||
|
|
run_nyash_vm -c "$code" 2>/dev/null | tr -d '\r'
|
||
|
|
|