brintos

brintos / llvm-project-archived public Read only

0
0
Text · 408 B · 79262d9 Raw
13 lines · typescript
1import * as vscode from 'vscode';2 3import {MLIRContext} from '../mlirContext';4import {ViewPDLLCommand} from './commands/viewOutput';5 6/**7 *  Register the necessary extensions for supporting PDLL.8 */9export function registerPDLLExtensions(context: vscode.ExtensionContext,10                                       mlirContext: MLIRContext) {11  context.subscriptions.push(new ViewPDLLCommand(mlirContext));12}13