MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / isObjcExposed

Function isObjcExposed

src/resolution/swift-objc-bridge.ts:273–276  ·  view source on GitHub ↗
(sourceSlice: string)

Source from the content-addressed store, hash-verified

271 * that `@nonobjc` opts out of class-level `@objcMembers`).
272 */
273export function isObjcExposed(sourceSlice: string): boolean {
274 if (/@nonobjc\b/.test(sourceSlice)) return false;
275 return /@objc\b/.test(sourceSlice);
276}

Callers 2

resolveObjcCallToSwiftFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected