From 648dd89477682a090a928af3948ddb30e79126f5 Mon Sep 17 00:00:00 2001 From: Matt Godbolt <matt@godbolt.org> Date: Fri, 2 Dec 2022 06:37:03 -0600 Subject: [PATCH] AsmParser implements IAsmParser (#4382) --- lib/parsers/asm-parser.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/parsers/asm-parser.ts b/lib/parsers/asm-parser.ts index 217a2fc55..8fdb30373 100644 --- a/lib/parsers/asm-parser.ts +++ b/lib/parsers/asm-parser.ts @@ -33,9 +33,10 @@ import { import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces'; import * as utils from '../utils'; +import {IAsmParser} from './asm-parser.interfaces'; import {AsmRegex} from './asmregex'; -export class AsmParser extends AsmRegex { +export class AsmParser extends AsmRegex implements IAsmParser { labelFindNonMips: RegExp; labelFindMips: RegExp; mipsLabelDefinition: RegExp; -- GitLab