* Looks in merged collection of snippets for a snippet with key * `snippetName` * @param snippetName The name of the snippet to look up * @returns The named snippet, or undefined if not found
(snippetName: string)
| 182 | * @returns The named snippet, or undefined if not found |
| 183 | */ |
| 184 | getSnippet(snippetName: string): Snippet | undefined { |
| 185 | return this.mergedSnippets[snippetName]; |
| 186 | } |
| 187 | } |
no outgoing calls
no test coverage detected