mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-15 16:53:31 -06:00
Remove single-comma empty array form
This commit is contained in:
parent
a3a1c49739
commit
d20459607b
@ -493,7 +493,7 @@ namespace ts {
|
||||
if (startsWith(value, "-")) {
|
||||
return undefined;
|
||||
}
|
||||
if (value === "" || value === ",") {
|
||||
if (value === "") {
|
||||
return [];
|
||||
}
|
||||
const values = value.split(",");
|
||||
|
||||
@ -246,18 +246,6 @@ namespace ts {
|
||||
});
|
||||
});
|
||||
|
||||
it("Parse single comma of --lib ", () => {
|
||||
// 0.ts --lib
|
||||
assertParseResult(["0.ts", "--lib", ","],
|
||||
{
|
||||
errors: [],
|
||||
fileNames: ["0.ts"],
|
||||
options: {
|
||||
lib: []
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
it("Parse immediately following command line argument of --lib ", () => {
|
||||
// 0.ts --lib
|
||||
assertParseResult(["0.ts", "--lib", "--sourcemap"],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user