the beginning of a new interpreter

This commit is contained in:
Valk Richard Li
2020-05-31 10:19:26 -07:00
committed by GitHub
parent 24bfbd8f0e
commit 5bba655088
16 changed files with 771 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# nasal lib sqlite.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 sqlite=
{
open:func(){},
close:func(){},
prepare:func(){},
exec:func(){},
finalize:func(){},
};