You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is not key goal of the library, but it will be good if we can solve that.
I propose to implement special API to resolve event name in this case. We can implement two-leveled API:
FileResolve API - resolve JS import file path to actual file path
IdentifierEvaluator API - resolve JS identifier to actual value
FileResolve API
/** * @param importPath import path from js file that should be resolved * @return content of the target file */functionresolve(importPath: string): string;
IdentifierEvaluator API
/** * Resolve JS part related to identifier of event to constant string. * TBD */functionresolve(identifier): string;
Let's discuss that
The text was updated successfully, but these errors were encountered:
Actually the following code returns
****undefined-event****
for dispatched event.This issue is not key goal of the library, but it will be good if we can solve that.
I propose to implement special API to resolve event name in this case. We can implement two-leveled API:
FileResolve API
IdentifierEvaluator API
Let's discuss that
The text was updated successfully, but these errors were encountered: