?? asci.test
字號(hào):
#!/bin/sh
#
# Test the automatic semicolon insertion.
#
. $srcdir/defs || exit 1
ascifiles="asci.js"
name="asci.test"
# First, create the state 1 compiler.
rm -f jsc.js
for i in $jscsources; do
cat $srcdir/../$i >> jsc.js
done
echo "$name: creating the state 1 compiler"
$js -Wall -O2 -c jsc.js
mv jsc.jsc stage1.jsc
# Now, compile our asci test source files with the state 1 compiler.
for i in $ascifiles; do
$js --load stage1.jsc --file $srcdir/../bs.js $srcdir/$i
done
# Finally, cleanup.
rm -f a.jas a.jsc jsc.js stage1.jsc
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -