We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
なんかあったら順次追加していく
let identifier = expr
var identifier = expr
name = v
1 + 2 - 3 * 4 / 5
@identifier(args) {}
return expr
identifier(args)
identifier += expr
identifier -= expr
if (expr) {} elif (expr) {} else {}
for expr {}
loop {}
eval {}
each let e, expr {}
break
continue
identifier.props
&&
||
()
10.123
true
false
'text'
null
`text{expr}text`
[el1, el2]
{ pr1: expr, pr2: expr }
@(args) {}
match expr { x => expr }
class
for...in
expr ? expr : expr
function*
function aaa(x = 10) {}
{ a, b } = { a: 10, b: 10 }
[a, b] = [10, 10]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
なんかあったら順次追加していく
基本方針
基本動作系
let identifier = expr
,var identifier = expr
)name = v
)1 + 2 - 3 * 4 / 5
)@identifier(args) {}
)return expr
)identifier(args)
)identifier += expr
,identifier -= expr
)if (expr) {} elif (expr) {} else {}
)for expr {}
) #2loop {}
)eval {}
)each let e, expr {}
)break
,continue
)identifier.props
)&&
,||
)()
)リテラル系
10.123
)true
,false
)'text'
)null
)`text{expr}text`
)[el1, el2]
){ pr1: expr, pr2: expr }
)@(args) {}
)AiScript特有動作系
対応しない?AiScript特有動作系
match expr { x => expr }
) #13Javascript特有動作系(対応しないもの)
Javascript特有動作系(対応したいもの)
class
#16for...in
expr ? expr : expr
function*
Javascript特有動作系(未定なもの)
function aaa(x = 10) {}
){ a, b } = { a: 10, b: 10 }
,[a, b] = [10, 10]
)The text was updated successfully, but these errors were encountered: