Lines Matching refs:selector
67 export function findObjcFunctionCodeBlock(contents: string, selector: string): CodeBlock | null {
68 const symbols = selector.split(':');
105 selector: string,
109 return insertContentsInsideFunctionBlock(srcContents, selector, insertion, options, 'objc');
152 export function findSwiftFunctionCodeBlock(contents: string, selector: string): CodeBlock | null {
153 const parenthesesIndex = selector.indexOf('(');
155 const funcName = selector.substring(0, parenthesesIndex);
157 const argLabels = selector.substring(parenthesesIndex + 1, selector.length - 2).split(':');
252 selector: string,
256 return insertContentsInsideFunctionBlock(srcContents, selector, insertion, options, 'swift');
261 selector: string,
268 ? findObjcFunctionCodeBlock(srcContents, selector)
269 : findSwiftFunctionCodeBlock(srcContents, selector);