(file: string)
| 238 | |
| 239 | // Helper function to create a symbolFile object properly with required elements |
| 240 | export function defSymbolFile(file: string): SymbolFile { |
| 241 | const ret: SymbolFile = { |
| 242 | file: file, |
| 243 | sections: [], |
| 244 | sectionMap: {} |
| 245 | }; |
| 246 | return ret; |
| 247 | } |
| 248 | |
| 249 | export interface ConfigurationArguments extends DebugProtocol.LaunchRequestArguments { |
| 250 | name: string; |
no outgoing calls
no test coverage detected