PR feedback

This commit is contained in:
Ron Buckton
2024-04-05 20:18:46 -04:00
parent 77ac7533f9
commit 2b588610ec
3 changed files with 3 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ export async function runConsoleTests(runJs, defaultReporter, runInParallel, opt
/** @type {string[]} */
const args = [];
// timeout normally isn't necessary but Travis-CI has been timing out on compiler selines occasionally
// timeout normally isn't necessary but Travis-CI has been timing out on compiler baselines occasionally
// default timeout is 2sec which really should be enough, but maybe we just need a small amount longer
if (!runInParallel) {
args.push(mochaJs);

View File

@@ -1413,7 +1413,7 @@ namespace Parser {
var disallowInAndDecoratorContext = NodeFlags.DisallowInContext | NodeFlags.DecoratorContext;
const factory = createNodeFactory(NodeFactoryFlags.NoParenthesizerRules | NodeFactoryFlags.NoNodeConverters | NodeFactoryFlags.NoOriginalNode);
var factory = createNodeFactory(NodeFactoryFlags.NoParenthesizerRules | NodeFactoryFlags.NoNodeConverters | NodeFactoryFlags.NoOriginalNode);
var {
createNodeArray: factoryCreateNodeArray,

View File

@@ -4414,7 +4414,7 @@ export interface SourceFile extends Declaration, LocalsContainer {
}
/**
* Represents an immutable snapshot of a script at a specified time.Once acquired, the
* Represents an immutable snapshot of a script at a specified time. Once acquired, the
* snapshot is observably immutable. i.e. the same calls with the same parameters will return
* the same values.
*/