File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,14 +71,14 @@ void Parse(const FunctionCallbackInfo<Value>& args) {
7171 // Convert exports to JS Set
7272 Local<Set> exports_set = Set::New (isolate);
7373 for (const auto & exp : analysis.exports ) {
74- exports_set->Add (context, CreateString (isolate, exp)).ToLocalChecked ();
74+ exports_set->Add (context, CreateString (isolate, exp. name )).ToLocalChecked ();
7575 }
7676
7777 // Convert reexports to JS array using batch creation
7878 LocalVector<Value> reexports_vec (isolate);
7979 reexports_vec.reserve (analysis.re_exports .size ());
8080 for (const auto & reexp : analysis.re_exports ) {
81- reexports_vec.push_back (CreateString (isolate, reexp));
81+ reexports_vec.push_back (CreateString (isolate, reexp. name ));
8282 }
8383
8484 // Create result array [exports (Set), reexports (Array)]
You can’t perform that action at this time.
0 commit comments