diff options
Diffstat (limited to 'lib/compilers/golang.ts')
-rw-r--r-- | lib/compilers/golang.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/golang.ts b/lib/compilers/golang.ts index 5c0574de1..e9f2e3965 100644 --- a/lib/compilers/golang.ts +++ b/lib/compilers/golang.ts @@ -31,7 +31,7 @@ import {unwrap} from '../assert.js'; import {BaseCompiler} from '../base-compiler.js'; import * as utils from '../utils.js'; -import {ClangParser} from './argument-parsers.js'; +import {GolangParser} from './argument-parsers.js'; // Each arch has a list of jump instructions in // Go source src/cmd/asm/internal/arch. @@ -268,7 +268,7 @@ export class GolangCompiler extends BaseCompiler { return options; } - override getArgumentParser() { - return ClangParser; + override getArgumentParser(): any { + return GolangParser; } } |