Skip to content

Commit

Permalink
AsmParser implements IAsmParser (#4382)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgodbolt committed Jan 24, 2023
1 parent 1c265ec commit defe456
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/parsers/asm-parser.ts
Expand Up @@ -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;
Expand Down

0 comments on commit defe456

Please sign in to comment.