bridgeClassThunks static method
Returns deferred factory thunks keyed by class name.
Each thunk builds one class's BridgedClass on demand. Plugs into
the interpreter's lazy registry via registerBridges (Step #17).
Implementation
static Map<String, BridgedClass Function()> bridgeClassThunks() {
return {
'Context': _createContextBridge,
'PathException': _createPathExceptionBridge,
'PathMap': _createPathMapBridge,
'PathSet': _createPathSetBridge,
'Style': _createStyleBridge,
};
}