fix: 直接使用字面量时,不应运行错误
wll8 opened this issue · 1 comments
wll8 commented
一个注释字符串的多行字符,可以赋值给变量,但却不能直接使用。
import console;
import process.popen
var str = /*
cd /d C:\
dir
*/
var res = process.popen.cmd(/*
cd /d C:\
dir
*/).readAll()
console.log(res)
console.pause(true);
运行以上代码报错:
{Calling}:'trim'
{Bad argument}:@1
'
{Expected}:string
{Got}:null'
wll8 commented
语言特性。