bridgeClasses static method
Returns all bridge class definitions.
Eager — building every class. Prefer bridgeClassThunks + bridgeClassTypes for lazy registration (Step #17); this remains for diagnostics and callers that need the full list.
Implementation
static List<BridgedClass> bridgeClasses() {
return [
_createContextBridge(),
_createPathExceptionBridge(),
_createPathMapBridge(),
_createPathSetBridge(),
_createStyleBridge(),
];
}