@@ -23,6 +23,10 @@ BM::Object *BM::Interpreter::run() {
23
23
set (" undefined" , new Undefined);
24
24
set (" null" , new Null);
25
25
26
+ if (!child && !(get (PASS_MODULE_NAME) && get (PASS_MODULE_NAME)->value ()->type () == STRING && ((String*)get (PASS_MODULE_NAME)->value ())->value () == DEFAULT_IMPORT_NAME)) {
27
+ if (!get (DEFAULT_IMPORT_NAME)) import (exports, DEFAULT_IMPORT_NAME, DEFAULT_IMPORT_NAME);
28
+ Using (get (DEFAULT_IMPORT_NAME)->value (), new AST::node (" bmlang" , 0 ));
29
+ }
26
30
while (true ) {
27
31
if (!child) ast->parse ();
28
32
// if (!ast->rValue()) continue;
@@ -724,6 +728,7 @@ void BM::Interpreter::import(Object* exports, const string& name, const string&
724
728
script += tmpLine + " \n " ;
725
729
}
726
730
Interpreter ip (script, name);// import的文件是独立运行的,与import它的脚本连接
731
+ ip.set (PASS_MODULE_NAME, new String (name));
727
732
auto moduleExports = ip.run ();
728
733
if (moduleExports->get (PASS_ERROR)) {
729
734
std::cerr << " ImportError: Module script wrong at <" << filename << " >:" << ast->line () << std::endl;
@@ -743,6 +748,7 @@ void BM::Interpreter::import(Object* exports, const string& name, const string&
743
748
script += tmpLine + " \n " ;
744
749
}
745
750
Interpreter ip (script, name);// import的文件是独立运行的,与import它的脚本连接
751
+ ip.set (PASS_MODULE_NAME, new String (name));
746
752
auto moduleExports = ip.run ();
747
753
if (moduleExports->get (PASS_ERROR)) {
748
754
std::cerr << " ImportError: Module script wrong at <" << filename << " >:" << ast->line () << std::endl;
@@ -755,13 +761,14 @@ void BM::Interpreter::import(Object* exports, const string& name, const string&
755
761
// 为全局模块
756
762
if (!finish) {
757
763
string path (BMLMPATH + name + (name[nameLen - 1 ] == ' /' ? " init.bm" : " /init.bm" ));
758
- file.open (name );
764
+ file.open (path );
759
765
if (file) {
760
766
finish = true ;
761
767
while (getline (file, tmpLine)) {
762
768
script += tmpLine + " \n " ;
763
769
}
764
770
Interpreter ip (script, name);// import的文件是独立运行的,不与import它的脚本连接
771
+ ip.set (PASS_MODULE_NAME, new String (name));
765
772
auto moduleExports = ip.run ();
766
773
if (moduleExports->get (PASS_ERROR)) {
767
774
std::cerr << " ImportError: Module script wrong at <" << filename << " >:" << ast->line () << std::endl;
0 commit comments