Home
last modified time | relevance | path

Searched refs:CommandLineOptions (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/linter/src/
DCommandLineParser.ts18 import type { CommandLineOptions } from '../lib/CommandLineOptions';
61 function formCommandLineOptions(program: Command): CommandLineOptions {
62 …const opts: CommandLineOptions = { inputFiles: inputFiles, warningsAsErrors: false, enableAutofix:…
88 export function parseCommandLine(commandLineArgs: string[]): CommandLineOptions {
129 function doProjectFolderArg(prjFolders: string[], opts: CommandLineOptions): void {
141 function doProjectArg(cfgPath: string, opts: CommandLineOptions): void {
DCompiler.ts17 import type { CommandLineOptions } from '../lib/CommandLineOptions';
24 function compile(cmdOptions: CommandLineOptions, overrideCompilerOptions: ts.CompilerOptions): ts.P…
35 export function compileLintOptions(cmdOptions: CommandLineOptions): LintOptions {
DLinterCLI.ts20 import type { CommandLineOptions } from '../lib/CommandLineOptions';
72 function runIDEMode(cmdOptions: CommandLineOptions): void {
DTestRunner.ts23 import type { CommandLineOptions } from '../lib/CommandLineOptions';
124 function parseArgs(testDir: string, testFile: string, mode: Mode): CommandLineOptions {
/arkcompiler/ets_frontend/ets2panda/linter/lib/
DLintOptions.ts17 import type { CommandLineOptions } from './CommandLineOptions';
26 cmdOptions: CommandLineOptions;
DCommandLineOptions.ts18 export interface CommandLineOptions { interface
DLinterRunner.ts18 import type { CommandLineOptions } from './CommandLineOptions';
38 function prepareInputFilesList(cmdOptions: CommandLineOptions): string[] {
/arkcompiler/ets_frontend/ets2panda/linter/src/ts-compiler/
DFormTscOptions.ts17 import type { CommandLineOptions } from '../../lib/CommandLineOptions';
20 cmdOptions: CommandLineOptions,