* Heuristic: does a .h file contain Objective-C constructs?
(source: string)
| 518 | * Heuristic: does a .h file contain Objective-C constructs? |
| 519 | */ |
| 520 | function looksLikeObjc(source: string): boolean { |
| 521 | const sample = source.substring(0, 8192); |
| 522 | return /@(?:interface|implementation|protocol|synthesize)\b/.test(sample); |
| 523 | } |
| 524 | |
| 525 | /** |
| 526 | * Check if a language is supported (has a grammar defined). |