forked from xxq250/Nasal-Interpreter
15 lines
387 B
Plaintext
15 lines
387 B
Plaintext
# nasal lib utf8.nas
|
|
# 2020/2/6
|
|
# this file is used to avoid name confliction
|
|
# and is used to avoid name undefined
|
|
# before running this file will be translated to abstract syntax tree
|
|
# and this ast will be linked before main ast as main-ast's beginning
|
|
|
|
var utf8=
|
|
{
|
|
chstr:func(){},
|
|
strc:func(){},
|
|
substr:func(){},
|
|
size:func(){},
|
|
validate:func(){},
|
|
}; |