Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/linter/src/
DCommandLineParser.ts19 import { CommandLineOptions } from './CommandLineOptions';
64 export function parseCommandLine(commandLineArgs: string[]): CommandLineOptions {
65 const opts: CommandLineOptions = { inputFiles: [], warningsAsErrors: false };
115 function doProjectFolderArg(prjFolders: string[], opts: CommandLineOptions) {
127 function doProjectArg(cfgPath: string, opts: CommandLineOptions) {
156 function doAutofixArg(autofixOptVal: string|boolean, opts: CommandLineOptions) {
DLintOptions.ts17 import { CommandLineOptions } from './CommandLineOptions';
23 cmdOptions: CommandLineOptions;
DLinterCLI.ts23 import { CommandLineOptions } from './CommandLineOptions';
55 function runIDEMode(cmdOptions: CommandLineOptions) {
DCommandLineOptions.ts19 export interface CommandLineOptions { interface
/arkcompiler/ets_frontend/ets2panda/linter-4.2/src/
DCommandLineParser.ts18 import { CommandLineOptions } from './CommandLineOptions';
63 export function parseCommandLine(commandLineArgs: string[]): CommandLineOptions {
64 const opts: CommandLineOptions = { inputFiles: [], warningsAsErrors: false };
114 function doProjectFolderArg(prjFolders: string[], opts: CommandLineOptions) {
126 function doProjectArg(cfgPath: string, opts: CommandLineOptions) {
155 function doAutofixArg(autofixOptVal: string|boolean, opts: CommandLineOptions) {
DLintOptions.ts17 import { CommandLineOptions } from './CommandLineOptions';
21 cmdOptions: CommandLineOptions;
DCompilerWrapper.ts19 import { CommandLineOptions } from './CommandLineOptions';
42 function formTscOptions(cmdOptions: CommandLineOptions, extraOptions?: any): ts.CreateProgramOption…
DCommandLineOptions.ts19 export interface CommandLineOptions { interface
DLinterRunner.ts29 import { CommandLineOptions } from './CommandLineOptions';
251 function runIDEMode(cmdOptions: CommandLineOptions) {
/arkcompiler/ets_frontend/ets2panda/linter/src/ts-compiler/
DFormTscOptions.ts17 import { CommandLineOptions } from '../CommandLineOptions';
19 export function formTscOptions(cmdOptions: CommandLineOptions, extraOptions?: any): ts.CreateProgra…
/arkcompiler/ets_frontend/ts2panda/src/
DcmdOptions.ts66 private static options: commandLineArgs.CommandLineOptions;