blob: bc65837be2a847e5437fa55d931a2b58dfb673d7 [file] [log] [blame] [edit]
import * as vscode from 'vscode';
import {MLIRContext} from '../mlirContext';
import {ViewPDLLCommand} from './commands/viewOutput';
/**
* Register the necessary context and commands for PDLL.
*/
export function registerPDLLCommands(context: vscode.ExtensionContext,
mlirContext: MLIRContext) {
context.subscriptions.push(new ViewPDLLCommand(mlirContext));
}