pub trait EcmascriptParsable:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required methods
fn failsafe_parse(self: Vc<Self>) -> Vc<ParseResult>
where Self: Sized;
fn parse_original(self: Vc<Self>) -> Vc<ParseResult>
where Self: Sized;
fn ty(self: Vc<Self>) -> Vc<EcmascriptModuleAssetType>
where Self: Sized;
}