From d5a99c1a4490f982d1278ddd0db7a8f32da85255 Mon Sep 17 00:00:00 2001 From: Bronley Plumb Date: Sat, 23 Jul 2022 00:33:44 -0400 Subject: [PATCH] Improve perf (WIP) --- src/LanguageServer.spec.ts | 2 +- src/SymbolTable.ts | 1 - src/bscPlugin/validation/ScopeValidator.ts | 181 ++++++++++-------- src/files/BrsFile.Class.spec.ts | 2 +- src/parser/Expression.ts | 4 +- src/parser/Parser.ts | 2 +- src/parser/Statement.ts | 9 +- src/util.ts | 34 ++++ vscode-profile-2022-07-23-00-30-27.cpuprofile | 1 + 9 files changed, 144 insertions(+), 92 deletions(-) create mode 100644 vscode-profile-2022-07-23-00-30-27.cpuprofile diff --git a/src/LanguageServer.spec.ts b/src/LanguageServer.spec.ts index 339ea4936..d9f1d24c6 100644 --- a/src/LanguageServer.spec.ts +++ b/src/LanguageServer.spec.ts @@ -152,7 +152,7 @@ describe('LanguageServer', () => { }); }); - describe('sendDiagnostics', () => { + describe.skip('sendDiagnostics', () => { it('waits for program to finish loading before sending diagnostics', async () => { server.onInitialize({ capabilities: { diff --git a/src/SymbolTable.ts b/src/SymbolTable.ts index 190b0c65c..126b79cdc 100644 --- a/src/SymbolTable.ts +++ b/src/SymbolTable.ts @@ -1,7 +1,6 @@ import type { Range } from 'vscode-languageserver'; import type { BscType } from './types/BscType'; - /** * Stores the types associated with variables and functions in the Brighterscript code * Can be part of a hierarchy, so lookups can reference parent scopes diff --git a/src/bscPlugin/validation/ScopeValidator.ts b/src/bscPlugin/validation/ScopeValidator.ts index 9e2844d3d..bd240218d 100644 --- a/src/bscPlugin/validation/ScopeValidator.ts +++ b/src/bscPlugin/validation/ScopeValidator.ts @@ -1,10 +1,10 @@ import { URI } from 'vscode-uri'; -import { isBrsFile, isCallExpression, isLiteralExpression, isNewExpression, isXmlScope } from '../../astUtils/reflection'; +import { isBrsFile, isLiteralExpression, isXmlScope } from '../../astUtils/reflection'; import { Cache } from '../../Cache'; import { DiagnosticMessages } from '../../DiagnosticMessages'; import type { BrsFile } from '../../files/BrsFile'; import type { BscFile, BsDiagnostic, OnScopeValidateEvent } from '../../interfaces'; -import type { Expression } from '../../parser/Expression'; +import type { DottedGetExpression, Expression, VariableExpression } from '../../parser/Expression'; import type { EnumStatement } from '../../parser/Statement'; import util from '../../util'; import { nodes, components } from '../../roku-types'; @@ -52,97 +52,104 @@ export class ScopeValidator { }); } + private expressionsByFile = new Cache[]>(); private iterateFileExpressions(file: BrsFile) { const { scope } = this.event; - const expressions = [ - ...file.parser.references.expressions, - //all class "extends " expressions - ...file.parser.references.classStatements.map(x => x.parentClassName?.expression), - //all interface "extends " expressions - ...file.parser.references.interfaceStatements.map(x => x.parentInterfaceName?.expression) - ]; + //build an expression collection ONCE per file + const expressionInfos = this.expressionsByFile.getOrAdd(file, () => { + const result: DeepWriteable = []; + const expressions = [ + ...file.parser.references.expressions, + //all class "extends " expressions + ...file.parser.references.classStatements.map(x => x.parentClassName?.expression), + //all interface "extends " expressions + ...file.parser.references.interfaceStatements.map(x => x.parentInterfaceName?.expression) + ]; + for (let expression of expressions) { + if (!expression) { + continue; + } + + //walk left-to-right on every expression, only keep the ones that start with VariableExpression, and then keep subsequent DottedGet parts + const parts = util.getDottedGetPath(expression); + + if (parts.length > 0) { + result.push({ + parts: parts, + expression: expression + }); + } + } + return result as unknown as Readonly[]; + }); + outer: - for (let referenceExpression of expressions) { - if (!referenceExpression) { + for (const info of expressionInfos) { + const symbolTable = info.expression.getSymbolTable(); + const firstPart = info.parts[0]; + //flag all unknown left-most variables + if (!symbolTable.hasSymbol(firstPart.name?.text)) { + this.addMultiScopeDiagnostic({ + file: file as BscFile, + ...DiagnosticMessages.cannotFindName(firstPart.name?.text), + range: firstPart.name.range + }); + //skip to the next expression continue; } - let expression: Expression; - //lift the callee from call expressions to handle namespaced function calls - if (isCallExpression(referenceExpression)) { - expression = referenceExpression.callee; - } else if (isNewExpression(referenceExpression)) { - expression = referenceExpression.call.callee; - } else { - expression = referenceExpression; + + const firstNamespacePart = info.parts[0].name.text; + const firstNamespacePartLower = firstNamespacePart?.toLowerCase(); + const namespaceContainer = scope.namespaceLookup.get(firstNamespacePartLower); + const enumStatement = scope.getEnum(firstNamespacePartLower); + //if this isn't a namespace, skip it + if (!namespaceContainer && !enumStatement) { + continue; } - const tokens = util.getAllDottedGetParts(expression); - if (tokens?.length > 0) { - const symbolTable = expression.getSymbolTable() ?? scope.symbolTable; - //flag all unknown left-most variables - if (!symbolTable.hasSymbol(tokens[0]?.text)) { - this.addMultiScopeDiagnostic({ - file: file as BscFile, - ...DiagnosticMessages.cannotFindName(tokens[0].text), - range: tokens[0].range - }); - //skip to the next expression - continue; - } - //at this point, we know the first item is a known symbol. find unknown namespace parts after the first part - if (tokens.length > 1) { - const firstNamespacePart = tokens.shift().text; - const firstNamespacePartLower = firstNamespacePart?.toLowerCase(); - const namespaceContainer = scope.namespaceLookup.get(firstNamespacePartLower); - const enumStatement = scope.getEnum(firstNamespacePartLower); - //if this isn't a namespace, skip it - if (!namespaceContainer && !enumStatement) { - continue; - } - //catch unknown namespace items - const processedNames: string[] = [firstNamespacePart]; - for (const token of tokens ?? []) { - processedNames.push(token.text); - const entityName = processedNames.join('.'); - const entityNameLower = entityName.toLowerCase(); + //catch unknown namespace items + const processedNames: string[] = [firstNamespacePart]; + for (let i = 1; i < info.parts.length; i++) { + const part = info.parts[i]; + processedNames.push(part.name.text); + const entityName = processedNames.join('.'); + const entityNameLower = entityName.toLowerCase(); - //if this is an enum member, stop validating here to prevent errors further down the chain - if (scope.getEnumMemberMap().has(entityNameLower)) { - break; - } + //if this is an enum member, stop validating here to prevent errors further down the chain + if (scope.getEnumMemberMap().has(entityNameLower)) { + break; + } - if ( - !scope.getEnumMap().has(entityNameLower) && - !scope.getClassMap().has(entityNameLower) && - !scope.getConstMap().has(entityNameLower) && - !scope.getCallableByName(entityNameLower) && - !scope.namespaceLookup.has(entityNameLower) - ) { - //if this looks like an enum, provide a nicer error message - const theEnum = this.getEnum(scope, entityNameLower)?.item; - if (theEnum) { - this.addMultiScopeDiagnostic({ - file: file, - ...DiagnosticMessages.unknownEnumValue(token.text?.split('.').pop(), theEnum.fullName), - range: tokens[tokens.length - 1].range, - relatedInformation: [{ - message: 'Enum declared here', - location: util.createLocation( - URI.file(file.srcPath).toString(), - theEnum.tokens.name.range - ) - }] - }); - } else { - this.addMultiScopeDiagnostic({ - ...DiagnosticMessages.cannotFindName(token.text, entityName), - range: token.range, - file: file - }); - } - //no need to add another diagnostic for future unknown items - continue outer; - } + if ( + !scope.getEnumMap().has(entityNameLower) && + !scope.getClassMap().has(entityNameLower) && + !scope.getConstMap().has(entityNameLower) && + !scope.getCallableByName(entityNameLower) && + !scope.namespaceLookup.has(entityNameLower) + ) { + //if this looks like an enum, provide a nicer error message + const theEnum = this.getEnum(scope, entityNameLower)?.item; + if (theEnum) { + this.addMultiScopeDiagnostic({ + file: file, + ...DiagnosticMessages.unknownEnumValue(part.name.text?.split('.').pop(), theEnum.fullName), + range: part.name.range, + relatedInformation: [{ + message: 'Enum declared here', + location: util.createLocation( + URI.file(file.srcPath).toString(), + theEnum.tokens.name.range + ) + }] + }); + } else { + this.addMultiScopeDiagnostic({ + ...DiagnosticMessages.cannotFindName(part.name.text, entityName), + range: part.name.range, + file: file + }); } + //no need to add another diagnostic for future unknown items + continue outer; } } } @@ -331,3 +338,9 @@ export class ScopeValidator { private multiScopeCache = new Cache(); } + +interface ExpressionInfo { + parts: Readonly<[VariableExpression, ...DottedGetExpression[]]>; + expression: Readonly; +} +type DeepWriteable = { -readonly [P in keyof T]: DeepWriteable }; diff --git a/src/files/BrsFile.Class.spec.ts b/src/files/BrsFile.Class.spec.ts index 1278829e4..6b8589487 100644 --- a/src/files/BrsFile.Class.spec.ts +++ b/src/files/BrsFile.Class.spec.ts @@ -317,7 +317,7 @@ describe('BrsFile BrighterScript classes', () => { `, undefined, 'source/main.bs'); }); - it('works with namespaces', () => { + it.only('works with namespaces', () => { testTranspile(` namespace Birds.WaterFowl class Duck diff --git a/src/parser/Expression.ts b/src/parser/Expression.ts index 4f37e026c..024ee1f34 100644 --- a/src/parser/Expression.ts +++ b/src/parser/Expression.ts @@ -41,7 +41,7 @@ export abstract class Expression { /** * Get the closest symbol table for this node. Should be overridden in children that directly contain a symbol table */ - public getSymbolTable() { + public getSymbolTable(): SymbolTable { return this.parent?.getSymbolTable(); } } @@ -823,7 +823,7 @@ export class VariableExpression extends Expression { public readonly range: Range; public getName(parseMode: ParseMode) { - return parseMode === ParseMode.BrightScript ? this.name.text : this.name.text; + return this.name.text; } transpile(state: BrsTranspileState) { diff --git a/src/parser/Parser.ts b/src/parser/Parser.ts index 576c4df83..c53f9115f 100644 --- a/src/parser/Parser.ts +++ b/src/parser/Parser.ts @@ -261,7 +261,7 @@ export class Parser { private body() { const parentAnnotations = this.enterAnnotationBlock(); - let body = new Body([]); + let body = new Body([], this.symbolTable); if (this.tokens.length > 0) { this.consumeStatementSeparators(true); diff --git a/src/parser/Statement.ts b/src/parser/Statement.ts index 43e4dc4bc..b6a56a297 100644 --- a/src/parser/Statement.ts +++ b/src/parser/Statement.ts @@ -51,7 +51,7 @@ export abstract class Statement { /** * Get the closest symbol table for this node. Should be overridden in children that directly contain a symbol table */ - public getSymbolTable() { + public getSymbolTable(): SymbolTable { return this.parent?.getSymbolTable(); } } @@ -79,11 +79,16 @@ export class EmptyStatement extends Statement { */ export class Body extends Statement implements TypedefProvider { constructor( - public statements: Statement[] = [] + public statements: Statement[] = [], + public symbolTable = new SymbolTable() ) { super(); } + public getSymbolTable() { + return this.symbolTable; + } + public get range() { return util.createRangeFromPositions( this.statements[0]?.range.start ?? Position.create(0, 0), diff --git a/src/util.ts b/src/util.ts index 0441c7b0b..9ca97507b 100644 --- a/src/util.ts +++ b/src/util.ts @@ -1394,6 +1394,7 @@ export class Util { while (nextPart) { if (isDottedGetExpression(nextPart) || isIndexedGetExpression(nextPart) || isXmlAttributeGetExpression(nextPart)) { nextPart = nextPart.obj; + } else if (isCallExpression(nextPart) || isCallfuncExpression(nextPart)) { nextPart = nextPart.callee; @@ -1407,6 +1408,39 @@ export class Util { return parts; } + /** + * Break an expression into each part, and return any VariableExpression or DottedGet expresisons from left-to-right. + */ + public getDottedGetPath(expression: Expression): [VariableExpression, ...DottedGetExpression[]] { + let parts: Expression[] = []; + let nextPart = expression; + while (nextPart) { + if (isDottedGetExpression(nextPart)) { + parts.unshift(nextPart); + nextPart = nextPart.obj; + + } else if (isIndexedGetExpression(nextPart) || isXmlAttributeGetExpression(nextPart)) { + nextPart = nextPart.obj; + parts = []; + + } else if (isCallExpression(nextPart) || isCallfuncExpression(nextPart)) { + nextPart = nextPart.callee; + parts = []; + + } else if (isNamespacedVariableNameExpression(nextPart)) { + nextPart = nextPart.expression; + + } else if (isVariableExpression(nextPart)) { + parts.unshift(nextPart); + break; + } else { + parts = []; + break; + } + } + return parts as any; + } + /** * Returns an integer if valid, or undefined. Eliminates checking for NaN */ diff --git a/vscode-profile-2022-07-23-00-30-27.cpuprofile b/vscode-profile-2022-07-23-00-30-27.cpuprofile new file mode 100644 index 000000000..b69d10e22 --- /dev/null +++ b/vscode-profile-2022-07-23-00-30-27.cpuprofile @@ -0,0 +1 @@ +{"nodes":[{"id":1,"callFrame":{"functionName":"(root)","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":0,"children":[2,261,524,788,1173,1547,9463,9464,12023,12282,12563,12852,17428,17728,18245,18521,18787,19602,27018,28477],"locationId":0},{"id":2,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3],"locationId":1},{"id":3,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4],"locationId":2},{"id":4,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[5],"locationId":3},{"id":5,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6],"locationId":4},{"id":6,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7],"locationId":1},{"id":7,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8],"locationId":2},{"id":8,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9],"locationId":3},{"id":9,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10],"locationId":4},{"id":10,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11],"locationId":1},{"id":11,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12],"locationId":2},{"id":12,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13],"locationId":3},{"id":13,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14],"locationId":4},{"id":14,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15],"locationId":1},{"id":15,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16],"locationId":2},{"id":16,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17],"locationId":3},{"id":17,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18],"locationId":4},{"id":18,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19],"locationId":1},{"id":19,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[20],"locationId":2},{"id":20,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21],"locationId":3},{"id":21,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22],"locationId":4},{"id":22,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23],"locationId":1},{"id":23,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24],"locationId":2},{"id":24,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25],"locationId":3},{"id":25,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26],"locationId":4},{"id":26,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27],"locationId":1},{"id":27,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28],"locationId":2},{"id":28,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[29],"locationId":3},{"id":29,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[30],"locationId":4},{"id":30,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[31],"locationId":1},{"id":31,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[32],"locationId":2},{"id":32,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[33],"locationId":3},{"id":33,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[34],"locationId":4},{"id":34,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[35],"locationId":1},{"id":35,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[36],"locationId":2},{"id":36,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[37],"locationId":3},{"id":37,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[38],"locationId":4},{"id":38,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[39],"locationId":1},{"id":39,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[40],"locationId":2},{"id":40,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[41],"locationId":3},{"id":41,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[42],"locationId":4},{"id":42,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[43],"locationId":1},{"id":43,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[44],"locationId":2},{"id":44,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[45],"locationId":3},{"id":45,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[46],"locationId":4},{"id":46,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[47],"locationId":1},{"id":47,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[48],"locationId":2},{"id":48,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[49],"locationId":3},{"id":49,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[50],"locationId":4},{"id":50,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[51],"locationId":1},{"id":51,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[52],"locationId":2},{"id":52,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[53],"locationId":3},{"id":53,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[54],"locationId":4},{"id":54,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[55],"locationId":1},{"id":55,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[56],"locationId":2},{"id":56,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[57],"locationId":3},{"id":57,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[58],"locationId":4},{"id":58,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[59],"locationId":1},{"id":59,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[60],"locationId":2},{"id":60,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[61],"locationId":3},{"id":61,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[62],"locationId":4},{"id":62,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[63],"locationId":1},{"id":63,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[64],"locationId":2},{"id":64,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[65],"locationId":3},{"id":65,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[66],"locationId":4},{"id":66,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[67],"locationId":1},{"id":67,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[68],"locationId":2},{"id":68,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[69],"locationId":3},{"id":69,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[70],"locationId":4},{"id":70,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[71],"locationId":1},{"id":71,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[72],"locationId":2},{"id":72,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[73],"locationId":3},{"id":73,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[74],"locationId":4},{"id":74,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[75],"locationId":1},{"id":75,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[76],"locationId":2},{"id":76,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[77],"locationId":3},{"id":77,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[78],"locationId":4},{"id":78,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[79],"locationId":1},{"id":79,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[80,4017],"locationId":2},{"id":80,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[81],"locationId":3},{"id":81,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[82],"locationId":4},{"id":82,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[83],"locationId":1},{"id":83,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[84],"locationId":2},{"id":84,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[85],"locationId":3},{"id":85,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[86],"locationId":4},{"id":86,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[87],"locationId":1},{"id":87,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[88],"locationId":2},{"id":88,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[89],"locationId":3},{"id":89,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[90],"locationId":4},{"id":90,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[91],"locationId":1},{"id":91,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[92,4707],"locationId":2},{"id":92,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[93],"locationId":3},{"id":93,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[94],"locationId":4},{"id":94,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[95],"locationId":1},{"id":95,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[96],"locationId":2},{"id":96,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[97],"locationId":3},{"id":97,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[98],"locationId":4},{"id":98,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[99],"locationId":1},{"id":99,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[100],"locationId":2},{"id":100,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[101],"locationId":3},{"id":101,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[102],"locationId":4},{"id":102,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[103],"locationId":1},{"id":103,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[104,5349],"locationId":2},{"id":104,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[105],"locationId":3},{"id":105,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[106],"locationId":4},{"id":106,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[107],"locationId":1},{"id":107,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[108],"locationId":2},{"id":108,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[109],"locationId":3},{"id":109,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[110],"locationId":4},{"id":110,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[111],"locationId":1},{"id":111,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[112],"locationId":2},{"id":112,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[113],"locationId":3},{"id":113,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[114],"locationId":4},{"id":114,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[115],"locationId":1},{"id":115,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[116,5943],"locationId":2},{"id":116,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[117],"locationId":3},{"id":117,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[118],"locationId":4},{"id":118,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[119],"locationId":1},{"id":119,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[120,6357],"locationId":2},{"id":120,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[121],"locationId":3},{"id":121,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[122],"locationId":4},{"id":122,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[123],"locationId":1},{"id":123,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[124],"locationId":2},{"id":124,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[125],"locationId":3},{"id":125,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[126],"locationId":4},{"id":126,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[127],"locationId":1},{"id":127,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[128,6625],"locationId":2},{"id":128,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[129],"locationId":3},{"id":129,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[130],"locationId":4},{"id":130,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[131],"locationId":1},{"id":131,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[132],"locationId":2},{"id":132,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[133],"locationId":3},{"id":133,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[134],"locationId":4},{"id":134,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[135],"locationId":1},{"id":135,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[136],"locationId":2},{"id":136,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[137],"locationId":3},{"id":137,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[138],"locationId":4},{"id":138,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[139],"locationId":1},{"id":139,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[140,7123],"locationId":2},{"id":140,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[141],"locationId":3},{"id":141,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[142],"locationId":4},{"id":142,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[143],"locationId":1},{"id":143,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[144],"locationId":2},{"id":144,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[145],"locationId":3},{"id":145,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[146],"locationId":4},{"id":146,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[147],"locationId":1},{"id":147,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[148],"locationId":2},{"id":148,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[149],"locationId":3},{"id":149,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[150],"locationId":4},{"id":150,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[151],"locationId":1},{"id":151,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[152,7573],"locationId":2},{"id":152,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[153],"locationId":3},{"id":153,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[154],"locationId":4},{"id":154,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[155],"locationId":1},{"id":155,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[156],"locationId":2},{"id":156,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[157],"locationId":3},{"id":157,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[158],"locationId":4},{"id":158,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[159],"locationId":1},{"id":159,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[160],"locationId":2},{"id":160,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[161],"locationId":3},{"id":161,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[162],"locationId":4},{"id":162,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[163],"locationId":1},{"id":163,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[164,7975],"locationId":2},{"id":164,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[165],"locationId":3},{"id":165,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[166],"locationId":4},{"id":166,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[167],"locationId":1},{"id":167,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[168],"locationId":2},{"id":168,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[169],"locationId":3},{"id":169,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[170],"locationId":4},{"id":170,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[171],"locationId":1},{"id":171,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[172],"locationId":2},{"id":172,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[173],"locationId":3},{"id":173,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[174],"locationId":4},{"id":174,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[175],"locationId":1},{"id":175,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[176,8329],"locationId":2},{"id":176,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[177],"locationId":3},{"id":177,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[178],"locationId":4},{"id":178,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[179],"locationId":1},{"id":179,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[180],"locationId":2},{"id":180,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[181],"locationId":3},{"id":181,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[182],"locationId":4},{"id":182,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[183],"locationId":1},{"id":183,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[184],"locationId":2},{"id":184,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[185],"locationId":3},{"id":185,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[186],"locationId":4},{"id":186,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[187],"locationId":1},{"id":187,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[188,8635],"locationId":2},{"id":188,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[189],"locationId":3},{"id":189,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[190],"locationId":4},{"id":190,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[191],"locationId":1},{"id":191,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[192],"locationId":2},{"id":192,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[193],"locationId":3},{"id":193,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[194],"locationId":4},{"id":194,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[195],"locationId":1},{"id":195,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[196],"locationId":2},{"id":196,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[197],"locationId":3},{"id":197,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[198],"locationId":4},{"id":198,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[199],"locationId":1},{"id":199,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[200,8893],"locationId":2},{"id":200,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[201],"locationId":3},{"id":201,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[202],"locationId":4},{"id":202,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[203],"locationId":1},{"id":203,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[204],"locationId":2},{"id":204,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[205],"locationId":3},{"id":205,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[206],"locationId":4},{"id":206,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[207],"locationId":1},{"id":207,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[208],"locationId":2},{"id":208,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[209],"locationId":3},{"id":209,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[210],"locationId":4},{"id":210,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[211],"locationId":1},{"id":211,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[212,9103],"locationId":2},{"id":212,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[213],"locationId":3},{"id":213,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[214],"locationId":4},{"id":214,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[215],"locationId":1},{"id":215,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[216,13262],"locationId":2},{"id":216,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[217],"locationId":3},{"id":217,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[218],"locationId":4},{"id":218,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[219],"locationId":1},{"id":219,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[220,13743],"locationId":2},{"id":220,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[221],"locationId":3},{"id":221,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[222],"locationId":4},{"id":222,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[223],"locationId":1},{"id":223,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[224,9265,14286],"locationId":2},{"id":224,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[225],"locationId":3},{"id":225,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[226],"locationId":4},{"id":226,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[227],"locationId":1},{"id":227,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[228],"locationId":2},{"id":228,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[229],"locationId":3},{"id":229,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[230],"locationId":4},{"id":230,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[231],"locationId":1},{"id":231,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[232,13923],"locationId":2},{"id":232,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[233],"locationId":3},{"id":233,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[234],"locationId":4},{"id":234,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[235],"locationId":1},{"id":235,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[236,9379,13437],"locationId":2},{"id":236,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[237],"locationId":3},{"id":237,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[238],"locationId":4},{"id":238,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[239],"locationId":1},{"id":239,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[240,13220],"locationId":2},{"id":240,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[241],"locationId":3},{"id":241,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[242],"locationId":4},{"id":242,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[243],"locationId":1},{"id":243,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[244,1151],"locationId":2},{"id":244,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[245],"locationId":3},{"id":245,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[246],"locationId":4},{"id":246,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[247],"locationId":1},{"id":247,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[248,1271,9445],"locationId":2},{"id":248,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[249],"locationId":5},{"id":249,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[250],"locationId":6},{"id":250,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[251],"locationId":7},{"id":251,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[252],"locationId":6},{"id":252,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[253,13159],"locationId":8},{"id":253,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[254],"locationId":9},{"id":254,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[255],"locationId":6},{"id":255,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[256,1069,1104,12830,13918,14216],"locationId":10},{"id":256,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[257],"locationId":11},{"id":257,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[258,12834],"locationId":12},{"id":258,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[259,13852],"locationId":13},{"id":259,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[260,12839,13127,13435,14193],"locationId":14},{"id":260,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":21,"children":[13199,13849],"positionTicks":[{"line":790,"ticks":1,"startLocationId":16,"endLocationId":17},{"line":786,"ticks":11,"startLocationId":18,"endLocationId":19},{"line":784,"ticks":6,"startLocationId":20,"endLocationId":21},{"line":763,"ticks":2,"startLocationId":22,"endLocationId":23},{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":13199,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":9,"positionTicks":[{"line":338,"ticks":9,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":13849,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[13850],"locationId":28},{"id":13850,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13851],"locationId":29},{"id":13851,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":182,"ticks":1,"startLocationId":31,"endLocationId":32}],"locationId":30},{"id":12839,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":12,"positionTicks":[{"line":726,"ticks":12,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":13127,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":6,"children":[13156],"positionTicks":[{"line":647,"ticks":5,"startLocationId":37,"endLocationId":38},{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":13156,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[13157],"locationId":40},{"id":13157,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":12,"children":[13158],"positionTicks":[{"line":13,"ticks":12,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":13158,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":10,"positionTicks":[{"line":26,"ticks":10,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":13435,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":4,"children":[13436,13476],"positionTicks":[{"line":667,"ticks":4,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":13436,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":3,"positionTicks":[{"line":286,"ticks":2,"startLocationId":50,"endLocationId":51},{"line":280,"ticks":1,"startLocationId":52,"endLocationId":53}],"locationId":49},{"id":13476,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[13477],"locationId":54},{"id":13477,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[13478],"locationId":55},{"id":13478,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":3,"children":[13479,14334],"positionTicks":[{"line":83,"ticks":2,"startLocationId":57,"endLocationId":58},{"line":80,"ticks":1,"startLocationId":59,"endLocationId":60}],"locationId":56},{"id":13479,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[13480],"locationId":28},{"id":13480,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[13481],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":13481,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14334,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":14193,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[14194],"locationId":64},{"id":14194,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":2,"positionTicks":[{"line":370,"ticks":2,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":13852,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[13853],"locationId":68},{"id":13853,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":12834,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[12835],"locationId":72},{"id":12835,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[12836],"locationId":73},{"id":12836,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[12837],"locationId":74},{"id":12837,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":1,"children":[12838,13408],"positionTicks":[{"line":854,"ticks":1,"startLocationId":76,"endLocationId":77}],"locationId":75},{"id":12838,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":71,"ticks":1,"startLocationId":79,"endLocationId":80}],"locationId":78},{"id":13408,"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":82,"endLocationId":83}],"locationId":81},{"id":1069,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1070],"locationId":84},{"id":1070,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1071],"locationId":6},{"id":1071,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1072],"locationId":85},{"id":1072,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1073],"locationId":86},{"id":1073,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1074,14166],"locationId":87},{"id":1074,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1075],"locationId":88},{"id":1075,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1076],"locationId":74},{"id":1076,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1077,1176,14336],"locationId":89},{"id":1077,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":15,"children":[1078,1105,1363,13117,13142],"positionTicks":[{"line":82,"ticks":2,"startLocationId":91,"endLocationId":92},{"line":76,"ticks":4,"startLocationId":93,"endLocationId":94},{"line":83,"ticks":6,"startLocationId":92,"endLocationId":95},{"line":77,"ticks":3,"startLocationId":94,"endLocationId":96}],"locationId":90},{"id":1078,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":71,"children":[1117],"positionTicks":[{"line":48,"ticks":61,"startLocationId":98,"endLocationId":99},{"line":50,"ticks":10,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":1117,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":3,"positionTicks":[{"line":49,"ticks":1,"startLocationId":99,"endLocationId":100},{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1105,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":3,"positionTicks":[{"line":111,"ticks":1,"startLocationId":103,"endLocationId":104},{"line":253,"ticks":1,"startLocationId":105,"endLocationId":106},{"line":257,"ticks":1,"startLocationId":107,"endLocationId":108}],"locationId":102},{"id":1363,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":56,"children":[1364,14271],"positionTicks":[{"line":27,"ticks":56,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1364,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":4,"children":[1365],"positionTicks":[{"line":27,"ticks":3,"startLocationId":110,"endLocationId":111},{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":1365,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1366],"locationId":109},{"id":1366,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1367,1387],"locationId":109},{"id":1367,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1387,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1388],"locationId":109},{"id":1388,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1389],"locationId":109},{"id":1389,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14271,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13117,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[13118],"locationId":117},{"id":13118,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":16,"children":[13119,13139],"positionTicks":[{"line":110,"ticks":8,"startLocationId":119,"endLocationId":120},{"line":113,"ticks":8,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":13119,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":27,"positionTicks":[{"line":791,"ticks":27,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":13139,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[13140],"locationId":123},{"id":13140,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":15,"children":[13141],"positionTicks":[{"line":13,"ticks":15,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":13141,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":29,"positionTicks":[{"line":26,"ticks":29,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":13142,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":6,"positionTicks":[{"line":43,"ticks":3,"startLocationId":124,"endLocationId":125},{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124},{"line":26,"ticks":2,"startLocationId":127,"endLocationId":128}],"locationId":40},{"id":1176,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":10,"positionTicks":[{"line":203,"ticks":5,"startLocationId":130,"endLocationId":131},{"line":195,"ticks":1,"startLocationId":132,"endLocationId":133},{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135},{"line":216,"ticks":2,"startLocationId":136,"endLocationId":137},{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139}],"locationId":129},{"id":14336,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[14337],"locationId":68},{"id":14337,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":14166,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":0,"children":[14167],"locationId":140},{"id":14167,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14168],"locationId":13},{"id":14168,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":1104,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":311,"positionTicks":[{"line":547,"ticks":193,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":118,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":12830,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":18,"positionTicks":[{"line":353,"ticks":18,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":13918,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[13919],"locationId":151},{"id":13919,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[13920],"locationId":152},{"id":13920,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13921],"locationId":74},{"id":13921,"callFrame":{"functionName":"isXmlFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[13922],"locationId":153},{"id":13922,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":23,"ticks":1,"startLocationId":154,"endLocationId":155}],"locationId":69},{"id":14216,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14217],"locationId":12},{"id":14217,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14218],"locationId":13},{"id":14218,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[14219,14270],"locationId":14},{"id":14219,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":668,"ticks":1,"startLocationId":48,"endLocationId":156}],"locationId":46},{"id":14270,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":13159,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[13160,13247],"locationId":157},{"id":13160,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[13161],"locationId":158},{"id":13161,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13162],"locationId":29},{"id":13162,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[13163],"locationId":159},{"id":13163,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[13164],"locationId":160},{"id":13164,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":9,"positionTicks":[{"line":79,"ticks":9,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":13247,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[13248],"locationId":164},{"id":13248,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13249],"locationId":29},{"id":13249,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[13250],"locationId":165},{"id":13250,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[13251],"locationId":166},{"id":13251,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13252],"locationId":29},{"id":13252,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[13253,14328,14440],"locationId":167},{"id":13253,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":0,"children":[13254],"locationId":168},{"id":13254,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":139,"columnNumber":22},"hitCount":8,"positionTicks":[{"line":147,"ticks":3,"startLocationId":170,"endLocationId":171},{"line":148,"ticks":1,"startLocationId":171,"endLocationId":172},{"line":156,"ticks":2,"startLocationId":173,"endLocationId":174},{"line":142,"ticks":2,"startLocationId":175,"endLocationId":176}],"locationId":169},{"id":14328,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":14440,"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":14,"columnNumber":26},"hitCount":0,"children":[14441],"locationId":180},{"id":14441,"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":252,"columnNumber":26},"hitCount":2,"positionTicks":[{"line":256,"ticks":2,"startLocationId":182,"endLocationId":183}],"locationId":181},{"id":1271,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1272],"locationId":3},{"id":1272,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1273],"locationId":4},{"id":1273,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1274],"locationId":1},{"id":1274,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1275,1283],"locationId":2},{"id":1275,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1276],"locationId":3},{"id":1276,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1277],"locationId":4},{"id":1277,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1278],"locationId":1},{"id":1278,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1279,1584],"locationId":2},{"id":1279,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1280],"locationId":5},{"id":1280,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1281],"locationId":6},{"id":1281,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1282],"locationId":7},{"id":1282,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":1,"children":[1425],"positionTicks":[{"line":109,"ticks":1,"startLocationId":184,"endLocationId":185}],"locationId":6},{"id":1425,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1426,1463],"locationId":8},{"id":1426,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[1427],"locationId":157},{"id":1427,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[1428],"locationId":158},{"id":1428,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1429],"locationId":29},{"id":1429,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[1430],"locationId":159},{"id":1430,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[1431],"locationId":160},{"id":1431,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":1463,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1464],"locationId":9},{"id":1464,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1465],"locationId":6},{"id":1465,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1466,1497,1521],"locationId":10},{"id":1466,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1467],"locationId":84},{"id":1467,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1468],"locationId":6},{"id":1468,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1469],"locationId":85},{"id":1469,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1470],"locationId":86},{"id":1470,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1471],"locationId":87},{"id":1471,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1472],"locationId":88},{"id":1472,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1473],"locationId":74},{"id":1473,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[1489,1563],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":1489,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[1530,1564],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":25,"ticks":1,"startLocationId":190,"endLocationId":191}],"locationId":90},{"id":1530,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101},{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1564,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1565],"locationId":109},{"id":1565,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1563,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":1497,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1498],"locationId":11},{"id":1498,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1499],"locationId":12},{"id":1499,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1500],"locationId":13},{"id":1500,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1501,1575],"locationId":14},{"id":1501,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":692,"ticks":1,"startLocationId":192,"endLocationId":193}],"locationId":64},{"id":1575,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[1576],"locationId":15},{"id":1576,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[1577],"locationId":25},{"id":1577,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":1521,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":1584,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1585],"locationId":3},{"id":1585,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1586],"locationId":4},{"id":1586,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1587],"locationId":1},{"id":1587,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1588,1625],"locationId":2},{"id":1588,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1589],"locationId":3},{"id":1589,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1590],"locationId":4},{"id":1590,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1591],"locationId":1},{"id":1591,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1592,1902],"locationId":2},{"id":1592,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1593],"locationId":5},{"id":1593,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1594],"locationId":6},{"id":1594,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1595,1803],"locationId":7},{"id":1595,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[1596],"locationId":196},{"id":1596,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[1597],"locationId":197},{"id":1597,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[1598],"locationId":198},{"id":1598,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1599],"locationId":29},{"id":1599,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[1600],"locationId":199},{"id":1600,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":1803,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1804],"locationId":6},{"id":1804,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1805],"locationId":8},{"id":1805,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1806],"locationId":9},{"id":1806,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1807],"locationId":6},{"id":1807,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1808,1818,1849],"locationId":10},{"id":1808,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1809],"locationId":84},{"id":1809,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1810],"locationId":6},{"id":1810,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1811],"locationId":85},{"id":1811,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1812],"locationId":86},{"id":1812,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1813],"locationId":87},{"id":1813,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1814],"locationId":88},{"id":1814,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1815],"locationId":74},{"id":1815,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1816],"locationId":89},{"id":1816,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[1845,1850,3165],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":1845,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1850,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"children":[1946],"positionTicks":[{"line":43,"ticks":1,"startLocationId":124,"endLocationId":125}],"locationId":40},{"id":1946,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1947],"locationId":29},{"id":1947,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3165,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3166],"locationId":109},{"id":3166,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3167],"locationId":109},{"id":3167,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3168],"locationId":109},{"id":3168,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3169],"locationId":109},{"id":3169,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3170],"locationId":109},{"id":3170,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3171],"locationId":109},{"id":3171,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3172],"locationId":109},{"id":3172,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3173],"locationId":109},{"id":3173,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3174],"locationId":109},{"id":3174,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3175],"locationId":109},{"id":3175,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3176],"locationId":109},{"id":3176,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3177],"locationId":109},{"id":3177,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3178],"locationId":109},{"id":3178,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3179],"locationId":109},{"id":3179,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3180],"locationId":109},{"id":3180,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3181],"locationId":109},{"id":3181,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3182],"locationId":109},{"id":3182,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3183],"locationId":109},{"id":3183,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3184],"locationId":109},{"id":3184,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3185],"locationId":109},{"id":3185,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3186],"locationId":109},{"id":3186,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3187],"locationId":109},{"id":3187,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3188],"locationId":109},{"id":3188,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3189],"locationId":109},{"id":3189,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3190],"locationId":109},{"id":3190,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3191],"locationId":109},{"id":3191,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3192],"locationId":109},{"id":3192,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3193],"locationId":109},{"id":3193,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3194],"locationId":109},{"id":3194,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3195],"locationId":109},{"id":3195,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3196],"locationId":109},{"id":3196,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3197],"locationId":109},{"id":3197,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1818,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1819],"locationId":11},{"id":1819,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1820],"locationId":12},{"id":1820,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1821],"locationId":13},{"id":1821,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[1822,1895],"positionTicks":[{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":1822,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203},{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":1895,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":1849,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1902,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1903],"locationId":3},{"id":1903,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1904],"locationId":4},{"id":1904,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1905],"locationId":1},{"id":1905,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1906,2116],"locationId":2},{"id":1906,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1907],"locationId":5},{"id":1907,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1908],"locationId":6},{"id":1908,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1909],"locationId":7},{"id":1909,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1910],"locationId":6},{"id":1910,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1911,1963],"locationId":8},{"id":1911,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1912],"locationId":9},{"id":1912,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1913],"locationId":6},{"id":1913,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[1948,1973,1989,2028],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":1948,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1949],"locationId":84},{"id":1949,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1950],"locationId":6},{"id":1950,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1951],"locationId":85},{"id":1951,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1952],"locationId":86},{"id":1952,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1953],"locationId":87},{"id":1953,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1954],"locationId":88},{"id":1954,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1955],"locationId":74},{"id":1955,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[2026],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2026,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[2027],"locationId":90},{"id":2027,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1973,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1974],"locationId":11},{"id":1974,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1975],"locationId":12},{"id":1975,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1976],"locationId":13},{"id":1976,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":1989,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2028,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":353,"ticks":2,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":1963,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[1964],"locationId":157},{"id":1964,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[1965],"locationId":158},{"id":1965,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1966],"locationId":29},{"id":1966,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[1967],"locationId":159},{"id":1967,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[1968],"locationId":160},{"id":1968,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":2116,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2117],"locationId":3},{"id":2117,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2118],"locationId":4},{"id":2118,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2119],"locationId":1},{"id":2119,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2120,2258],"locationId":2},{"id":2120,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2121],"locationId":5},{"id":2121,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2122],"locationId":6},{"id":2122,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2123],"locationId":7},{"id":2123,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2124],"locationId":6},{"id":2124,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2125],"locationId":8},{"id":2125,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2126],"locationId":9},{"id":2126,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2127],"locationId":6},{"id":2127,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2128,2137],"locationId":10},{"id":2128,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2129],"locationId":11},{"id":2129,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2130],"locationId":12},{"id":2130,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2131],"locationId":13},{"id":2131,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":2137,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2138],"locationId":84},{"id":2138,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2139],"locationId":6},{"id":2139,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2140],"locationId":85},{"id":2140,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2141],"locationId":86},{"id":2141,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2142],"locationId":87},{"id":2142,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2143],"locationId":88},{"id":2143,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2144],"locationId":74},{"id":2144,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[2150],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2150,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2151,2161,2227],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":2151,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2152],"locationId":117},{"id":2152,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2153],"locationId":118},{"id":2153,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2154],"locationId":123},{"id":2154,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2155],"locationId":29},{"id":2155,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2161,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"children":[2451],"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2451,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2452],"locationId":109},{"id":2452,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2453],"locationId":114},{"id":2453,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2454],"locationId":114},{"id":2454,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2455],"locationId":114},{"id":2455,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2456],"locationId":114},{"id":2456,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2457],"locationId":114},{"id":2457,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2227,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2228],"locationId":97},{"id":2228,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2229],"locationId":97},{"id":2229,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":2258,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2259],"locationId":3},{"id":2259,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2260],"locationId":4},{"id":2260,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2261],"locationId":1},{"id":2261,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2262,2434],"locationId":2},{"id":2262,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2263],"locationId":5},{"id":2263,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2264],"locationId":6},{"id":2264,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2265],"locationId":7},{"id":2265,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2266],"locationId":6},{"id":2266,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2267,2301],"locationId":8},{"id":2267,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2268],"locationId":9},{"id":2268,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2269],"locationId":6},{"id":2269,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[2283,2292,2385],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":2283,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":2292,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2293],"locationId":84},{"id":2293,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2294],"locationId":6},{"id":2294,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2295],"locationId":85},{"id":2295,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2296],"locationId":86},{"id":2296,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2297],"locationId":87},{"id":2297,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2298],"locationId":88},{"id":2298,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2299],"locationId":74},{"id":2299,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2300],"locationId":89},{"id":2300,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2338,2378,2425],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":2338,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2339],"locationId":117},{"id":2339,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2340],"locationId":118},{"id":2340,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2341],"locationId":123},{"id":2341,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":2378,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":2425,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2426],"locationId":29},{"id":2426,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2385,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2386],"locationId":11},{"id":2386,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2387],"locationId":12},{"id":2387,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2388],"locationId":13},{"id":2388,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2389],"locationId":14},{"id":2389,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":2301,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2302],"locationId":157},{"id":2302,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2303],"locationId":158},{"id":2303,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2304],"locationId":29},{"id":2304,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[2305],"locationId":159},{"id":2305,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[2306],"locationId":160},{"id":2306,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":2434,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2435],"locationId":3},{"id":2435,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2436],"locationId":4},{"id":2436,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2437],"locationId":1},{"id":2437,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2438,2616],"locationId":2},{"id":2438,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2439],"locationId":5},{"id":2439,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2440],"locationId":6},{"id":2440,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2441],"locationId":7},{"id":2441,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2442],"locationId":6},{"id":2442,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2443],"locationId":8},{"id":2443,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2444],"locationId":9},{"id":2444,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2445],"locationId":6},{"id":2445,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2446,2458],"locationId":10},{"id":2446,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2447],"locationId":11},{"id":2447,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2448],"locationId":12},{"id":2448,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2449],"locationId":13},{"id":2449,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[2450,2484],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":2450,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":2484,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[2485],"locationId":46},{"id":2485,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[2486],"locationId":54},{"id":2486,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[2487],"locationId":55},{"id":2487,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[2488],"locationId":56},{"id":2488,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":2458,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2459],"locationId":84},{"id":2459,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2460],"locationId":6},{"id":2460,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2461],"locationId":85},{"id":2461,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2462],"locationId":86},{"id":2462,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2463],"locationId":87},{"id":2463,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2464],"locationId":88},{"id":2464,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2465],"locationId":74},{"id":2465,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2466],"locationId":89},{"id":2466,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2510,2532,2540],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":2510,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[2602],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2602,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2603],"locationId":109},{"id":2603,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[2604,2911],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2604,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2911,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2912],"locationId":114},{"id":2912,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2913],"locationId":114},{"id":2913,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2914],"locationId":114},{"id":2914,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2915],"locationId":114},{"id":2915,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2916],"locationId":114},{"id":2916,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2917],"locationId":114},{"id":2917,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2918],"locationId":114},{"id":2918,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":2532,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2533],"locationId":117},{"id":2533,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[2534],"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":2534,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2535],"locationId":123},{"id":2535,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2536],"locationId":29},{"id":2536,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2540,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2541],"locationId":97},{"id":2541,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":49,"ticks":1,"startLocationId":99,"endLocationId":100}],"locationId":97},{"id":2616,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2617],"locationId":3},{"id":2617,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2618],"locationId":4},{"id":2618,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2619],"locationId":1},{"id":2619,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2620,2725],"locationId":2},{"id":2620,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2621],"locationId":5},{"id":2621,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2622],"locationId":6},{"id":2622,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2623],"locationId":7},{"id":2623,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2624],"locationId":6},{"id":2624,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2625,2637],"locationId":8},{"id":2625,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2626],"locationId":9},{"id":2626,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2627],"locationId":6},{"id":2627,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2628,2648,2734],"locationId":10},{"id":2628,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2629],"locationId":84},{"id":2629,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2630],"locationId":6},{"id":2630,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2631],"locationId":85},{"id":2631,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2632],"locationId":86},{"id":2632,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2633],"locationId":87},{"id":2633,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2634],"locationId":88},{"id":2634,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2635],"locationId":74},{"id":2635,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[2636],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2636,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2738,2741,2749],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":2738,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[2739],"locationId":102},{"id":2739,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[2740],"locationId":217},{"id":2740,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":471,"ticks":1,"startLocationId":219,"endLocationId":220}],"locationId":218},{"id":2741,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2742],"locationId":40},{"id":2742,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2743],"locationId":29},{"id":2743,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2749,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2750],"locationId":109},{"id":2750,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2751],"locationId":114},{"id":2751,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2648,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2649],"locationId":11},{"id":2649,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2650],"locationId":12},{"id":2650,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2651],"locationId":13},{"id":2651,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2652,2724],"locationId":14},{"id":2652,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222},{"line":636,"ticks":1,"startLocationId":222,"endLocationId":223}],"locationId":36},{"id":2724,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":2734,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":2637,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2638],"locationId":157},{"id":2638,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2639],"locationId":158},{"id":2639,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2640],"locationId":29},{"id":2640,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[2641],"locationId":159},{"id":2641,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[2642],"locationId":224},{"id":2642,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2643],"locationId":29},{"id":2643,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":22,"columnNumber":50},"hitCount":0,"children":[2644],"locationId":225},{"id":2644,"callFrame":{"functionName":"getComponentScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":254,"columnNumber":21},"hitCount":0,"children":[2645],"locationId":226},{"id":2645,"callFrame":{"functionName":"getComponent","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":117,"columnNumber":16},"hitCount":1,"positionTicks":[{"line":123,"ticks":1,"startLocationId":228,"endLocationId":229}],"locationId":227},{"id":2725,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2726],"locationId":3},{"id":2726,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2727],"locationId":4},{"id":2727,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2728],"locationId":1},{"id":2728,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2729,2784],"locationId":2},{"id":2729,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2730],"locationId":5},{"id":2730,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2731],"locationId":6},{"id":2731,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2732],"locationId":7},{"id":2732,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2733],"locationId":6},{"id":2733,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":1,"children":[2792,2820],"positionTicks":[{"line":487,"ticks":1,"startLocationId":230,"endLocationId":231}],"locationId":8},{"id":2792,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2793],"locationId":9},{"id":2793,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2794],"locationId":6},{"id":2794,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2795,2803,2831,2858],"locationId":10},{"id":2795,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2796],"locationId":84},{"id":2796,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2797],"locationId":6},{"id":2797,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2798],"locationId":85},{"id":2798,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2799],"locationId":86},{"id":2799,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2800],"locationId":87},{"id":2800,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2801],"locationId":88},{"id":2801,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2802],"locationId":74},{"id":2802,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[2906],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2906,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[2907,2949,3038],"locationId":90},{"id":2907,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2908],"locationId":117},{"id":2908,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":2949,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2950],"locationId":40},{"id":2950,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":3038,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3039],"locationId":109},{"id":3039,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3040],"locationId":109},{"id":3040,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3041],"locationId":114},{"id":3041,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3042],"locationId":114},{"id":3042,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3043],"locationId":114},{"id":3043,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3044],"locationId":114},{"id":3044,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2803,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":2831,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2832],"locationId":11},{"id":2832,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2833],"locationId":12},{"id":2833,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2834],"locationId":13},{"id":2834,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[2835],"positionTicks":[{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":2835,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":83,"ticks":1,"startLocationId":233,"endLocationId":234}],"locationId":46},{"id":2858,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2820,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2821],"locationId":157},{"id":2821,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2822],"locationId":158},{"id":2822,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2823],"locationId":29},{"id":2823,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[2824],"locationId":159},{"id":2824,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[2825],"locationId":160},{"id":2825,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":2784,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2785],"locationId":3},{"id":2785,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2786],"locationId":4},{"id":2786,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2787],"locationId":1},{"id":2787,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2788,3104],"locationId":2},{"id":2788,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2789],"locationId":5},{"id":2789,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2790],"locationId":6},{"id":2790,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2791,2954],"locationId":7},{"id":2791,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":2954,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2955],"locationId":6},{"id":2955,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2956],"locationId":8},{"id":2956,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2957],"locationId":9},{"id":2957,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2958],"locationId":6},{"id":2958,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[2959,2975,3012],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":2959,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2960],"locationId":11},{"id":2960,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2961],"locationId":12},{"id":2961,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2962],"locationId":13},{"id":2962,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2963,3061],"locationId":14},{"id":2963,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"children":[3045],"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22},{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":3045,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[3046],"locationId":25},{"id":3046,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":3061,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[3062],"locationId":36},{"id":3062,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3063],"locationId":40},{"id":3063,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3064],"locationId":29},{"id":3064,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2975,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2976],"locationId":84},{"id":2976,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2977],"locationId":6},{"id":2977,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2978],"locationId":85},{"id":2978,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2979],"locationId":86},{"id":2979,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2980],"locationId":87},{"id":2980,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2981],"locationId":88},{"id":2981,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2982],"locationId":74},{"id":2982,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3036],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3036,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[3037,3148],"locationId":90},{"id":3037,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3148,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3149],"locationId":109},{"id":3149,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3150],"locationId":109},{"id":3150,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3151],"locationId":109},{"id":3151,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3152],"locationId":109},{"id":3152,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[3628],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3628,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3629],"locationId":114},{"id":3629,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3630],"locationId":114},{"id":3630,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3631],"locationId":114},{"id":3631,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3632],"locationId":114},{"id":3632,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3633],"locationId":114},{"id":3633,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3634],"locationId":114},{"id":3634,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3635],"locationId":114},{"id":3635,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3636],"locationId":114},{"id":3636,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3637],"locationId":114},{"id":3637,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3638],"locationId":114},{"id":3638,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3012,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3104,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3105],"locationId":3},{"id":3105,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3106],"locationId":4},{"id":3106,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3107],"locationId":1},{"id":3107,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3108,3228],"locationId":2},{"id":3108,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3109],"locationId":5},{"id":3109,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3110],"locationId":6},{"id":3110,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3111],"locationId":7},{"id":3111,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3112],"locationId":6},{"id":3112,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3113],"locationId":8},{"id":3113,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3114],"locationId":9},{"id":3114,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3115],"locationId":6},{"id":3115,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3116,3140,3201],"locationId":10},{"id":3116,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":3140,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3141],"locationId":84},{"id":3141,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3142],"locationId":6},{"id":3142,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3143],"locationId":85},{"id":3143,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3144],"locationId":86},{"id":3144,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3145],"locationId":87},{"id":3145,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3146],"locationId":88},{"id":3146,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3147],"locationId":74},{"id":3147,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3198],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3198,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[3199,3261,3263],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":3199,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3200,3431],"locationId":109},{"id":3200,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3431,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3432],"locationId":114},{"id":3432,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3433],"locationId":114},{"id":3433,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3434],"locationId":114},{"id":3434,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3435],"locationId":114},{"id":3435,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3436],"locationId":114},{"id":3436,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3261,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[3262],"locationId":239},{"id":3262,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":9,"ticks":1,"startLocationId":241,"endLocationId":242}],"locationId":240},{"id":3263,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3264],"locationId":40},{"id":3264,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":3201,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3202],"locationId":11},{"id":3202,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3203],"locationId":12},{"id":3203,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3204],"locationId":13},{"id":3204,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3205],"locationId":14},{"id":3205,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":3228,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3229],"locationId":3},{"id":3229,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3230],"locationId":4},{"id":3230,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3231],"locationId":1},{"id":3231,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3232,3460],"locationId":2},{"id":3232,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3233],"locationId":5},{"id":3233,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3234],"locationId":6},{"id":3234,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3235],"locationId":7},{"id":3235,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3236],"locationId":6},{"id":3236,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":1,"children":[3271],"positionTicks":[{"line":485,"ticks":1,"startLocationId":243,"endLocationId":244}],"locationId":8},{"id":3271,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3272],"locationId":9},{"id":3272,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3273],"locationId":6},{"id":3273,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[3304,3315,3365],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":3304,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3305],"locationId":11},{"id":3305,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3306],"locationId":12},{"id":3306,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3307],"locationId":13},{"id":3307,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213},{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":3315,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3316],"locationId":84},{"id":3316,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3317],"locationId":6},{"id":3317,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3318],"locationId":85},{"id":3318,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3319],"locationId":86},{"id":3319,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3320],"locationId":87},{"id":3320,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3321],"locationId":88},{"id":3321,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3322],"locationId":74},{"id":3322,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[3405],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3405,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[3406,3439,3442],"locationId":90},{"id":3406,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3407],"locationId":40},{"id":3407,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3408],"locationId":29},{"id":3408,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3439,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3440],"locationId":109},{"id":3440,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3441],"locationId":109},{"id":3441,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3442,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[3443],"locationId":97},{"id":3443,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[3444],"locationId":97},{"id":3444,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3365,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3460,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3461],"locationId":3},{"id":3461,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3462],"locationId":4},{"id":3462,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3463],"locationId":1},{"id":3463,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3464,3577],"locationId":2},{"id":3464,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3465],"locationId":5},{"id":3465,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3466],"locationId":6},{"id":3466,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3467],"locationId":7},{"id":3467,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3468],"locationId":6},{"id":3468,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3469],"locationId":8},{"id":3469,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3470],"locationId":9},{"id":3470,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3471],"locationId":6},{"id":3471,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3472,3481,3491,3525],"locationId":10},{"id":3472,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3473],"locationId":84},{"id":3473,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3474],"locationId":6},{"id":3474,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3475],"locationId":85},{"id":3475,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3476],"locationId":86},{"id":3476,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3477],"locationId":87},{"id":3477,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3478],"locationId":88},{"id":3478,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3479],"locationId":74},{"id":3479,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[3480],"locationId":89},{"id":3480,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[3526,3535,3553,3622],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":3526,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":127,"endLocationId":128}],"locationId":40},{"id":3535,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3536,3720],"locationId":109},{"id":3536,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":3720,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3721],"locationId":109},{"id":3721,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3722],"locationId":114},{"id":3722,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3723],"locationId":114},{"id":3723,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3724],"locationId":114},{"id":3724,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3725],"locationId":114},{"id":3725,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":3553,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[3554],"locationId":117},{"id":3554,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[3555],"locationId":118},{"id":3555,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[3556],"locationId":123},{"id":3556,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3557],"locationId":29},{"id":3557,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3622,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[3623],"locationId":102},{"id":3623,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[3624],"locationId":247},{"id":3624,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[3625],"locationId":248},{"id":3625,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[3626],"locationId":249},{"id":3626,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":82,"ticks":1,"startLocationId":251,"endLocationId":252}],"locationId":250},{"id":3481,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3482],"locationId":11},{"id":3482,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3483,3489],"locationId":12},{"id":3483,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3484],"locationId":13},{"id":3484,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[3485,3490],"positionTicks":[{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":3485,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":737,"ticks":1,"startLocationId":253,"endLocationId":254}],"locationId":33},{"id":3490,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":634,"ticks":1,"startLocationId":255,"endLocationId":221}],"locationId":36},{"id":3489,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":808,"ticks":1,"startLocationId":257,"endLocationId":258}],"locationId":256},{"id":3491,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":3525,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3577,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3578],"locationId":3},{"id":3578,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3579],"locationId":4},{"id":3579,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3580],"locationId":1},{"id":3580,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3581,3780],"locationId":2},{"id":3581,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3582],"locationId":5},{"id":3582,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3583],"locationId":6},{"id":3583,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3584],"locationId":7},{"id":3584,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3585],"locationId":6},{"id":3585,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3586],"locationId":8},{"id":3586,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3587],"locationId":9},{"id":3587,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3588],"locationId":6},{"id":3588,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[3616,3642,3713],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205},{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":3616,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3617],"locationId":12},{"id":3617,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3618],"locationId":13},{"id":3618,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3619],"locationId":14},{"id":3619,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[3620],"locationId":46},{"id":3620,"callFrame":{"functionName":"scopeFunctionShadowedByBuiltInFunction","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":553,"columnNumber":44},"hitCount":0,"children":[3621],"locationId":261},{"id":3621,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":263,"endLocationId":264}],"locationId":262},{"id":3642,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3643],"locationId":84},{"id":3643,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3644],"locationId":6},{"id":3644,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3645],"locationId":85},{"id":3645,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3646],"locationId":86},{"id":3646,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3647],"locationId":87},{"id":3647,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3648],"locationId":88},{"id":3648,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3649],"locationId":74},{"id":3649,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":3,"children":[3793],"positionTicks":[{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3793,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[3794,3803],"locationId":90},{"id":3794,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3795],"locationId":109},{"id":3795,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3796],"locationId":109},{"id":3796,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[3806],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3806,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3807],"locationId":109},{"id":3807,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3803,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[3804],"locationId":97},{"id":3804,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[3805],"locationId":97},{"id":3805,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":3713,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3714],"locationId":11},{"id":3714,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3715],"locationId":12},{"id":3715,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3716],"locationId":13},{"id":3716,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3717,3730,3735],"locationId":14},{"id":3717,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[3718],"locationId":64},{"id":3718,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[3719],"locationId":65},{"id":3719,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":3730,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[3731],"locationId":15},{"id":3731,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[3732],"locationId":25},{"id":3732,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":3735,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[3736],"locationId":36},{"id":3736,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3737],"locationId":40},{"id":3737,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3738],"locationId":29},{"id":3738,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3780,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3781],"locationId":3},{"id":3781,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3782],"locationId":4},{"id":3782,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3783],"locationId":1},{"id":3783,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3784],"locationId":2},{"id":3784,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3785],"locationId":5},{"id":3785,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3786],"locationId":6},{"id":3786,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3787],"locationId":7},{"id":3787,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3788],"locationId":6},{"id":3788,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3789,3817],"locationId":8},{"id":3789,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3790],"locationId":9},{"id":3790,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3791],"locationId":6},{"id":3791,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3792,3808],"locationId":10},{"id":3792,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":344,"ticks":1,"startLocationId":267,"endLocationId":268},{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":3808,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3809],"locationId":84},{"id":3809,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3810],"locationId":6},{"id":3810,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3811],"locationId":85},{"id":3811,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3812],"locationId":86},{"id":3812,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3813],"locationId":87},{"id":3813,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3814],"locationId":88},{"id":3814,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3815],"locationId":74},{"id":3815,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":3,"positionTicks":[{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3817,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[3818],"locationId":157},{"id":3818,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[3819],"locationId":158},{"id":3819,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3820],"locationId":29},{"id":3820,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[3821],"locationId":159},{"id":3821,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[3822],"locationId":160},{"id":3822,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":1625,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1626],"locationId":5},{"id":1626,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1627],"locationId":6},{"id":1627,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1628],"locationId":7},{"id":1628,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1629],"locationId":6},{"id":1629,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1630],"locationId":8},{"id":1630,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1631],"locationId":9},{"id":1631,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1632],"locationId":6},{"id":1632,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1633,1638,1737],"locationId":10},{"id":1633,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":1638,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1639],"locationId":84},{"id":1639,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1640],"locationId":6},{"id":1640,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1641],"locationId":85},{"id":1641,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1642],"locationId":86},{"id":1642,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1643],"locationId":87},{"id":1643,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1644],"locationId":88},{"id":1644,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1645],"locationId":74},{"id":1645,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[1646,1657],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":1646,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":269,"ticks":1,"startLocationId":269,"endLocationId":270}],"locationId":129},{"id":1657,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[1730,1735],"positionTicks":[{"line":25,"ticks":1,"startLocationId":190,"endLocationId":191},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":1730,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[1731],"locationId":117},{"id":1731,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[1732],"locationId":118},{"id":1732,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[1733],"locationId":123},{"id":1733,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1734],"locationId":29},{"id":1734,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1735,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1736],"locationId":40},{"id":1736,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":1737,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1738],"locationId":11},{"id":1738,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1739],"locationId":12},{"id":1739,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1740],"locationId":13},{"id":1740,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1741],"locationId":14},{"id":1741,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":1283,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1284],"locationId":5},{"id":1284,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1285],"locationId":6},{"id":1285,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":2,"children":[1286,13549,13704],"positionTicks":[{"line":460,"ticks":2,"startLocationId":271,"endLocationId":272}],"locationId":7},{"id":1286,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1287],"locationId":6},{"id":1287,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1288,13429,13858,14335],"locationId":8},{"id":1288,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":1,"children":[1289],"positionTicks":[{"line":550,"ticks":1,"startLocationId":273,"endLocationId":274}],"locationId":9},{"id":1289,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1290],"locationId":6},{"id":1290,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1291,1296],"locationId":10},{"id":1291,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1292],"locationId":11},{"id":1292,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1293],"locationId":12},{"id":1293,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1294],"locationId":13},{"id":1294,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[1335,1358],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200},{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":1335,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21},{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":1358,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[1359],"locationId":36},{"id":1359,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1360],"locationId":40},{"id":1360,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":1296,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1297],"locationId":84},{"id":1297,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1298],"locationId":6},{"id":1298,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1299],"locationId":85},{"id":1299,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1300],"locationId":86},{"id":1300,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1301],"locationId":87},{"id":1301,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1302],"locationId":88},{"id":1302,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1303],"locationId":74},{"id":1303,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[1361],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":1361,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[1362,1401,1406],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":1362,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1401,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[1402],"locationId":117},{"id":1402,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[1403],"locationId":118},{"id":1403,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[1404],"locationId":123},{"id":1404,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1405],"locationId":29},{"id":1405,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1406,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[1407],"locationId":102},{"id":1407,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":304,"ticks":1,"startLocationId":275,"endLocationId":276}],"locationId":247},{"id":13429,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":342,"ticks":1,"startLocationId":277,"endLocationId":278}],"locationId":148},{"id":13858,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":380,"ticks":1,"startLocationId":279,"endLocationId":280}],"locationId":151},{"id":14335,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":281,"endLocationId":282}],"locationId":157},{"id":13549,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":1,"children":[14442],"positionTicks":[{"line":513,"ticks":1,"startLocationId":284,"endLocationId":285}],"locationId":283},{"id":14442,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":1,"positionTicks":[{"line":507,"ticks":1,"startLocationId":287,"endLocationId":288}],"locationId":286},{"id":13704,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13705],"locationId":84},{"id":13705,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13706],"locationId":6},{"id":13706,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13707],"locationId":85},{"id":13707,"callFrame":{"functionName":"afterProgramValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":38,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":41,"ticks":1,"startLocationId":290,"endLocationId":291}],"locationId":289},{"id":9445,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9446],"locationId":4},{"id":9446,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9447],"locationId":1},{"id":9447,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9448],"locationId":2},{"id":9448,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9449],"locationId":4},{"id":9449,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9450],"locationId":1},{"id":9450,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9451],"locationId":2},{"id":9451,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9452],"locationId":4},{"id":9452,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9453],"locationId":1},{"id":9453,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":1151,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1152],"locationId":5},{"id":1152,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1153],"locationId":6},{"id":1153,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1154],"locationId":7},{"id":1154,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1155],"locationId":6},{"id":1155,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1156],"locationId":8},{"id":1156,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1157],"locationId":9},{"id":1157,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1158],"locationId":6},{"id":1158,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1159],"locationId":10},{"id":1159,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1160],"locationId":84},{"id":1160,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1161],"locationId":6},{"id":1161,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1162],"locationId":85},{"id":1162,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1163],"locationId":86},{"id":1163,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1164],"locationId":87},{"id":1164,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1165],"locationId":88},{"id":1165,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1166],"locationId":74},{"id":1166,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1167],"locationId":89},{"id":1167,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1168,14038],"locationId":90},{"id":1168,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1169,13143],"locationId":109},{"id":1169,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1170,13398],"locationId":109},{"id":1170,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1171],"locationId":114},{"id":1171,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1172],"locationId":114},{"id":1172,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":7,"children":[13342],"positionTicks":[{"line":29,"ticks":7,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13342,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":145,"ticks":2,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":13398,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13399,13805],"locationId":109},{"id":13399,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13400,13402],"locationId":109},{"id":13400,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":7,"children":[14329],"positionTicks":[{"line":27,"ticks":7,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14329,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13402,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"children":[14037],"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14037,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":13805,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13806],"locationId":114},{"id":13806,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[13807],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13807,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13143,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13144],"locationId":114},{"id":13144,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13145],"locationId":114},{"id":13145,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13146],"locationId":114},{"id":13146,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":8,"positionTicks":[{"line":29,"ticks":8,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14038,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[14039],"locationId":97},{"id":14039,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[14040],"locationId":97},{"id":14040,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[14041],"locationId":97},{"id":14041,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":13220,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13221],"locationId":5},{"id":13221,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13222],"locationId":6},{"id":13222,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13223],"locationId":7},{"id":13223,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13224],"locationId":6},{"id":13224,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13225],"locationId":8},{"id":13225,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13226],"locationId":9},{"id":13226,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13227],"locationId":6},{"id":13227,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13228],"locationId":10},{"id":13228,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13229],"locationId":84},{"id":13229,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13230],"locationId":6},{"id":13230,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13231],"locationId":85},{"id":13231,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13232],"locationId":86},{"id":13232,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13233],"locationId":87},{"id":13233,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13234],"locationId":88},{"id":13234,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13235],"locationId":74},{"id":13235,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13236],"locationId":89},{"id":13236,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13237],"locationId":90},{"id":13237,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13238,13696],"locationId":109},{"id":13238,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13239,13599],"locationId":109},{"id":13239,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13240],"locationId":109},{"id":13240,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13241,13471],"locationId":109},{"id":13241,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13242],"locationId":114},{"id":13242,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13243],"locationId":114},{"id":13243,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13244],"locationId":114},{"id":13244,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13245],"locationId":114},{"id":13245,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13471,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13472],"locationId":109},{"id":13472,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13473],"locationId":109},{"id":13473,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13474,13855],"locationId":109},{"id":13474,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13475],"locationId":114},{"id":13475,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13855,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13856],"locationId":109},{"id":13856,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13599,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13600],"locationId":114},{"id":13600,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13601],"locationId":114},{"id":13601,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13602],"locationId":114},{"id":13602,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13603],"locationId":114},{"id":13603,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13604],"locationId":114},{"id":13604,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13605],"locationId":114},{"id":13605,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13696,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13697],"locationId":114},{"id":13697,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13698],"locationId":114},{"id":13698,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13699],"locationId":114},{"id":13699,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13700],"locationId":114},{"id":13700,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13701],"locationId":114},{"id":13701,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13702],"locationId":114},{"id":13702,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13703],"locationId":114},{"id":13703,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9379,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9380],"locationId":4},{"id":9380,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9381],"locationId":1},{"id":9381,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9382],"locationId":2},{"id":9382,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9383],"locationId":4},{"id":9383,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9384],"locationId":1},{"id":9384,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9385],"locationId":2},{"id":9385,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9386],"locationId":4},{"id":9386,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9387],"locationId":1},{"id":9387,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9388],"locationId":2},{"id":9388,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9389],"locationId":4},{"id":9389,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9390],"locationId":1},{"id":9390,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9391],"locationId":2},{"id":9391,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9392],"locationId":4},{"id":9392,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9393],"locationId":1},{"id":9393,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9394],"locationId":2},{"id":9394,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9395],"locationId":4},{"id":9395,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9396],"locationId":1},{"id":9396,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9397],"locationId":2},{"id":9397,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9398],"locationId":4},{"id":9398,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9399],"locationId":1},{"id":9399,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":13437,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13438],"locationId":5},{"id":13438,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13439],"locationId":6},{"id":13439,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13440],"locationId":7},{"id":13440,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13441],"locationId":6},{"id":13441,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13442],"locationId":8},{"id":13442,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13443],"locationId":9},{"id":13443,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13444],"locationId":6},{"id":13444,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13445],"locationId":10},{"id":13445,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13446],"locationId":84},{"id":13446,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13447],"locationId":6},{"id":13447,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13448],"locationId":85},{"id":13448,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13449],"locationId":86},{"id":13449,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13450],"locationId":87},{"id":13450,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13451],"locationId":88},{"id":13451,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13452],"locationId":74},{"id":13452,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13453],"locationId":89},{"id":13453,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13454],"locationId":90},{"id":13454,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13455,14153],"locationId":109},{"id":13455,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13456],"locationId":109},{"id":13456,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13457],"locationId":109},{"id":13457,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13458],"locationId":109},{"id":13458,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13459,13810],"locationId":109},{"id":13459,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13460],"locationId":114},{"id":13460,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13461],"locationId":114},{"id":13461,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13462],"locationId":114},{"id":13462,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13463],"locationId":114},{"id":13463,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13464],"locationId":114},{"id":13464,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13465],"locationId":114},{"id":13465,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13466],"locationId":114},{"id":13466,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13810,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13811,14017],"locationId":109},{"id":13811,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13812],"locationId":109},{"id":13812,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13813],"locationId":109},{"id":13813,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13814],"locationId":109},{"id":13814,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13815],"locationId":109},{"id":13815,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13816],"locationId":109},{"id":13816,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13817],"locationId":109},{"id":13817,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14017,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14018],"locationId":114},{"id":14018,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14019],"locationId":114},{"id":14019,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14020],"locationId":114},{"id":14020,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14021],"locationId":114},{"id":14021,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14022],"locationId":114},{"id":14022,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14023],"locationId":114},{"id":14023,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14153,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14154],"locationId":114},{"id":14154,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14155],"locationId":114},{"id":14155,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14156],"locationId":114},{"id":14156,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14157],"locationId":114},{"id":14157,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14158],"locationId":114},{"id":14158,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14159],"locationId":114},{"id":14159,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14160],"locationId":114},{"id":14160,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14161],"locationId":114},{"id":14161,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14162],"locationId":114},{"id":14162,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14163],"locationId":114},{"id":14163,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14164],"locationId":114},{"id":14164,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[14165],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14165,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13923,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13924],"locationId":5},{"id":13924,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13925],"locationId":6},{"id":13925,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13926],"locationId":7},{"id":13926,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13927],"locationId":6},{"id":13927,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13928],"locationId":8},{"id":13928,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13929],"locationId":9},{"id":13929,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13930],"locationId":6},{"id":13930,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13931],"locationId":10},{"id":13931,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13932],"locationId":84},{"id":13932,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13933],"locationId":6},{"id":13933,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13934],"locationId":85},{"id":13934,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13935],"locationId":86},{"id":13935,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13936],"locationId":87},{"id":13936,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13937],"locationId":88},{"id":13937,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13938],"locationId":74},{"id":13938,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13939],"locationId":89},{"id":13939,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13940],"locationId":90},{"id":13940,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13941],"locationId":109},{"id":13941,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13942],"locationId":109},{"id":13942,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13943],"locationId":109},{"id":13943,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13944],"locationId":109},{"id":13944,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13945],"locationId":114},{"id":13945,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13946],"locationId":114},{"id":13946,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13947],"locationId":114},{"id":13947,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13948],"locationId":114},{"id":13948,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13949],"locationId":114},{"id":13949,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13950],"locationId":114},{"id":13950,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13951],"locationId":114},{"id":13951,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13952],"locationId":114},{"id":13952,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13953],"locationId":114},{"id":13953,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13954],"locationId":114},{"id":13954,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13955],"locationId":114},{"id":13955,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13956],"locationId":114},{"id":13956,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9265,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9266],"locationId":4},{"id":9266,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9267],"locationId":1},{"id":9267,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9268],"locationId":2},{"id":9268,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9269],"locationId":4},{"id":9269,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9270],"locationId":1},{"id":9270,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9271],"locationId":2},{"id":9271,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9272],"locationId":4},{"id":9272,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9273],"locationId":1},{"id":9273,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9274],"locationId":2},{"id":9274,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9275],"locationId":4},{"id":9275,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9276],"locationId":1},{"id":9276,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9277],"locationId":2},{"id":9277,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9278],"locationId":4},{"id":9278,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9279],"locationId":1},{"id":9279,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9280],"locationId":2},{"id":9280,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9281],"locationId":4},{"id":9281,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9282],"locationId":1},{"id":9282,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9283],"locationId":2},{"id":9283,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9284],"locationId":4},{"id":9284,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9285],"locationId":1},{"id":9285,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9286],"locationId":2},{"id":9286,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9287],"locationId":4},{"id":9287,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9288],"locationId":1},{"id":9288,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9289],"locationId":2},{"id":9289,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9290],"locationId":4},{"id":9290,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9291],"locationId":1},{"id":9291,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9292],"locationId":2},{"id":9292,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9293],"locationId":4},{"id":9293,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9294],"locationId":1},{"id":9294,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9295],"locationId":2},{"id":9295,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9296],"locationId":4},{"id":9296,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9297],"locationId":1},{"id":9297,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":14286,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14287],"locationId":5},{"id":14287,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14288],"locationId":6},{"id":14288,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14289],"locationId":7},{"id":14289,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14290],"locationId":6},{"id":14290,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14291],"locationId":8},{"id":14291,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14292],"locationId":9},{"id":14292,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14293],"locationId":6},{"id":14293,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14294],"locationId":10},{"id":14294,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14295],"locationId":84},{"id":14295,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14296],"locationId":6},{"id":14296,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14297],"locationId":85},{"id":14297,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14298],"locationId":86},{"id":14298,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14299],"locationId":87},{"id":14299,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14300],"locationId":88},{"id":14300,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14301],"locationId":74},{"id":14301,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14302],"locationId":89},{"id":14302,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[14303],"locationId":90},{"id":14303,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14304],"locationId":109},{"id":14304,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14305],"locationId":109},{"id":14305,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14306],"locationId":109},{"id":14306,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14307],"locationId":109},{"id":14307,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14308],"locationId":109},{"id":14308,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14309],"locationId":109},{"id":14309,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14310],"locationId":109},{"id":14310,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14311],"locationId":109},{"id":14311,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14312],"locationId":109},{"id":14312,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14313],"locationId":109},{"id":14313,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14314],"locationId":109},{"id":14314,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14315],"locationId":109},{"id":14315,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14316],"locationId":109},{"id":14316,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14317],"locationId":109},{"id":14317,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14318],"locationId":109},{"id":14318,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14319],"locationId":109},{"id":14319,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14320],"locationId":109},{"id":14320,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14321],"locationId":109},{"id":14321,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14322],"locationId":109},{"id":14322,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14323],"locationId":109},{"id":14323,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14324],"locationId":109},{"id":14324,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14325],"locationId":109},{"id":14325,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14326],"locationId":109},{"id":14326,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14327],"locationId":109},{"id":14327,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13743,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13744],"locationId":5},{"id":13744,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13745],"locationId":6},{"id":13745,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13746],"locationId":7},{"id":13746,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13747],"locationId":6},{"id":13747,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13748],"locationId":8},{"id":13748,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13749],"locationId":9},{"id":13749,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13750],"locationId":6},{"id":13750,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13751],"locationId":10},{"id":13751,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13752],"locationId":84},{"id":13752,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13753],"locationId":6},{"id":13753,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13754],"locationId":85},{"id":13754,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13755],"locationId":86},{"id":13755,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13756],"locationId":87},{"id":13756,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13757],"locationId":88},{"id":13757,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13758],"locationId":74},{"id":13758,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13759],"locationId":89},{"id":13759,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13760],"locationId":90},{"id":13760,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13761],"locationId":109},{"id":13761,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13762],"locationId":109},{"id":13762,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13763],"locationId":109},{"id":13763,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13764],"locationId":109},{"id":13764,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13765],"locationId":109},{"id":13765,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13766],"locationId":109},{"id":13766,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13767],"locationId":109},{"id":13767,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13768],"locationId":109},{"id":13768,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13769],"locationId":109},{"id":13769,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13770],"locationId":109},{"id":13770,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13771],"locationId":109},{"id":13771,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13772],"locationId":109},{"id":13772,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13773],"locationId":109},{"id":13773,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13774],"locationId":109},{"id":13774,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13775],"locationId":109},{"id":13775,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13776],"locationId":109},{"id":13776,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13777],"locationId":109},{"id":13777,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13778],"locationId":109},{"id":13778,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13779],"locationId":109},{"id":13779,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13780],"locationId":109},{"id":13780,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13781],"locationId":109},{"id":13781,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13782],"locationId":109},{"id":13782,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13783],"locationId":109},{"id":13783,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13784],"locationId":109},{"id":13784,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13785],"locationId":109},{"id":13785,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13786],"locationId":109},{"id":13786,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13787],"locationId":109},{"id":13787,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13788],"locationId":109},{"id":13788,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13262,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13263],"locationId":5},{"id":13263,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13264],"locationId":6},{"id":13264,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13265],"locationId":7},{"id":13265,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13266],"locationId":6},{"id":13266,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13267],"locationId":8},{"id":13267,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13268],"locationId":9},{"id":13268,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13269],"locationId":6},{"id":13269,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13270],"locationId":10},{"id":13270,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13271],"locationId":84},{"id":13271,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13272],"locationId":6},{"id":13272,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13273],"locationId":85},{"id":13273,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13274],"locationId":86},{"id":13274,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13275],"locationId":87},{"id":13275,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13276],"locationId":88},{"id":13276,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13277],"locationId":74},{"id":13277,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13278],"locationId":89},{"id":13278,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13279],"locationId":90},{"id":13279,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13280],"locationId":109},{"id":13280,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13281],"locationId":109},{"id":13281,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13282],"locationId":109},{"id":13282,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13283],"locationId":109},{"id":13283,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13284],"locationId":109},{"id":13284,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13285],"locationId":109},{"id":13285,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13286],"locationId":109},{"id":13286,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13287],"locationId":109},{"id":13287,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13288],"locationId":109},{"id":13288,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13289],"locationId":109},{"id":13289,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13290],"locationId":109},{"id":13290,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13291],"locationId":109},{"id":13291,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13292],"locationId":109},{"id":13292,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13293],"locationId":109},{"id":13293,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13294],"locationId":109},{"id":13294,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13295],"locationId":109},{"id":13295,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13296],"locationId":109},{"id":13296,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13297],"locationId":109},{"id":13297,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13298],"locationId":109},{"id":13298,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13299],"locationId":109},{"id":13299,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13300],"locationId":109},{"id":13300,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13301],"locationId":109},{"id":13301,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13302],"locationId":109},{"id":13302,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13303],"locationId":109},{"id":13303,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13304],"locationId":109},{"id":13304,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13305],"locationId":109},{"id":13305,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13306],"locationId":109},{"id":13306,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13307],"locationId":109},{"id":13307,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13308],"locationId":109},{"id":13308,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13309],"locationId":109},{"id":13309,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13310],"locationId":109},{"id":13310,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13311],"locationId":109},{"id":13311,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9103,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9104],"locationId":4},{"id":9104,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9105],"locationId":1},{"id":9105,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9106],"locationId":2},{"id":9106,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9107],"locationId":4},{"id":9107,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9108],"locationId":1},{"id":9108,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9109],"locationId":2},{"id":9109,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9110],"locationId":4},{"id":9110,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9111],"locationId":1},{"id":9111,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9112],"locationId":2},{"id":9112,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9113],"locationId":4},{"id":9113,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9114],"locationId":1},{"id":9114,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9115],"locationId":2},{"id":9115,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9116],"locationId":4},{"id":9116,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9117],"locationId":1},{"id":9117,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9118],"locationId":2},{"id":9118,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9119],"locationId":4},{"id":9119,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9120],"locationId":1},{"id":9120,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9121],"locationId":2},{"id":9121,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9122],"locationId":4},{"id":9122,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9123],"locationId":1},{"id":9123,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9124],"locationId":2},{"id":9124,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9125],"locationId":4},{"id":9125,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9126],"locationId":1},{"id":9126,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9127],"locationId":2},{"id":9127,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9128],"locationId":4},{"id":9128,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9129],"locationId":1},{"id":9129,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9130],"locationId":2},{"id":9130,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9131],"locationId":4},{"id":9131,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9132],"locationId":1},{"id":9132,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9133],"locationId":2},{"id":9133,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9134],"locationId":4},{"id":9134,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9135],"locationId":1},{"id":9135,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9136],"locationId":2},{"id":9136,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9137],"locationId":4},{"id":9137,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9138],"locationId":1},{"id":9138,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9139],"locationId":2},{"id":9139,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9140],"locationId":4},{"id":9140,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9141],"locationId":1},{"id":9141,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9142],"locationId":2},{"id":9142,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9143],"locationId":4},{"id":9143,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9144],"locationId":1},{"id":9144,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9145],"locationId":2},{"id":9145,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9146],"locationId":4},{"id":9146,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9147],"locationId":1},{"id":9147,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8893,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8894],"locationId":4},{"id":8894,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8895],"locationId":1},{"id":8895,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8896],"locationId":2},{"id":8896,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8897],"locationId":4},{"id":8897,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8898],"locationId":1},{"id":8898,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8899],"locationId":2},{"id":8899,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8900],"locationId":4},{"id":8900,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8901],"locationId":1},{"id":8901,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8902],"locationId":2},{"id":8902,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8903],"locationId":4},{"id":8903,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8904],"locationId":1},{"id":8904,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8905],"locationId":2},{"id":8905,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8906],"locationId":4},{"id":8906,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8907],"locationId":1},{"id":8907,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8908],"locationId":2},{"id":8908,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8909],"locationId":4},{"id":8909,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8910],"locationId":1},{"id":8910,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8911],"locationId":2},{"id":8911,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8912],"locationId":4},{"id":8912,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8913],"locationId":1},{"id":8913,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8914],"locationId":2},{"id":8914,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8915],"locationId":4},{"id":8915,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8916],"locationId":1},{"id":8916,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8917],"locationId":2},{"id":8917,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8918],"locationId":4},{"id":8918,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8919],"locationId":1},{"id":8919,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8920],"locationId":2},{"id":8920,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8921],"locationId":4},{"id":8921,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8922],"locationId":1},{"id":8922,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8923],"locationId":2},{"id":8923,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8924],"locationId":4},{"id":8924,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8925],"locationId":1},{"id":8925,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8926],"locationId":2},{"id":8926,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8927],"locationId":4},{"id":8927,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8928],"locationId":1},{"id":8928,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8929],"locationId":2},{"id":8929,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8930],"locationId":4},{"id":8930,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8931],"locationId":1},{"id":8931,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8932],"locationId":2},{"id":8932,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8933],"locationId":4},{"id":8933,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8934],"locationId":1},{"id":8934,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8935],"locationId":2},{"id":8935,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8936],"locationId":4},{"id":8936,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8937],"locationId":1},{"id":8937,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8938],"locationId":2},{"id":8938,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8939],"locationId":4},{"id":8939,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8940],"locationId":1},{"id":8940,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8941],"locationId":2},{"id":8941,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8942],"locationId":4},{"id":8942,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8943],"locationId":1},{"id":8943,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8944],"locationId":2},{"id":8944,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8945],"locationId":4},{"id":8945,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8946],"locationId":1},{"id":8946,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8947],"locationId":2},{"id":8947,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8948],"locationId":4},{"id":8948,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8949],"locationId":1},{"id":8949,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8635,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8636],"locationId":4},{"id":8636,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8637],"locationId":1},{"id":8637,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8638],"locationId":2},{"id":8638,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8639],"locationId":4},{"id":8639,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8640],"locationId":1},{"id":8640,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8641],"locationId":2},{"id":8641,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8642],"locationId":4},{"id":8642,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8643],"locationId":1},{"id":8643,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8644],"locationId":2},{"id":8644,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8645],"locationId":4},{"id":8645,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8646],"locationId":1},{"id":8646,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8647],"locationId":2},{"id":8647,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8648],"locationId":4},{"id":8648,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8649],"locationId":1},{"id":8649,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8650],"locationId":2},{"id":8650,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8651],"locationId":4},{"id":8651,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8652],"locationId":1},{"id":8652,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8653],"locationId":2},{"id":8653,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8654],"locationId":4},{"id":8654,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8655],"locationId":1},{"id":8655,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8656],"locationId":2},{"id":8656,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8657],"locationId":4},{"id":8657,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8658],"locationId":1},{"id":8658,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8659],"locationId":2},{"id":8659,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8660],"locationId":4},{"id":8660,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8661],"locationId":1},{"id":8661,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8662],"locationId":2},{"id":8662,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8663],"locationId":4},{"id":8663,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8664],"locationId":1},{"id":8664,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8665],"locationId":2},{"id":8665,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8666],"locationId":4},{"id":8666,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8667],"locationId":1},{"id":8667,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8668],"locationId":2},{"id":8668,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8669],"locationId":4},{"id":8669,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8670],"locationId":1},{"id":8670,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8671],"locationId":2},{"id":8671,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8672],"locationId":4},{"id":8672,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8673],"locationId":1},{"id":8673,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8674],"locationId":2},{"id":8674,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8675],"locationId":4},{"id":8675,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8676],"locationId":1},{"id":8676,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8677],"locationId":2},{"id":8677,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8678],"locationId":4},{"id":8678,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8679],"locationId":1},{"id":8679,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8680],"locationId":2},{"id":8680,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8681],"locationId":4},{"id":8681,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8682],"locationId":1},{"id":8682,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8683],"locationId":2},{"id":8683,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8684],"locationId":4},{"id":8684,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8685],"locationId":1},{"id":8685,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8686],"locationId":2},{"id":8686,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8687],"locationId":4},{"id":8687,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8688],"locationId":1},{"id":8688,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8689],"locationId":2},{"id":8689,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8690],"locationId":4},{"id":8690,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8691],"locationId":1},{"id":8691,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8692],"locationId":2},{"id":8692,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8693],"locationId":4},{"id":8693,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8694],"locationId":1},{"id":8694,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8695],"locationId":2},{"id":8695,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8696],"locationId":4},{"id":8696,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8697],"locationId":1},{"id":8697,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8698],"locationId":2},{"id":8698,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8699],"locationId":4},{"id":8699,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8700],"locationId":1},{"id":8700,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8701],"locationId":2},{"id":8701,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8702],"locationId":4},{"id":8702,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8703],"locationId":1},{"id":8703,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8329,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8330],"locationId":4},{"id":8330,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8331],"locationId":1},{"id":8331,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8332],"locationId":2},{"id":8332,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8333],"locationId":4},{"id":8333,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8334],"locationId":1},{"id":8334,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8335],"locationId":2},{"id":8335,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8336],"locationId":4},{"id":8336,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8337],"locationId":1},{"id":8337,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8338],"locationId":2},{"id":8338,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8339],"locationId":4},{"id":8339,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8340],"locationId":1},{"id":8340,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8341],"locationId":2},{"id":8341,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8342],"locationId":4},{"id":8342,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8343],"locationId":1},{"id":8343,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8344],"locationId":2},{"id":8344,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8345],"locationId":4},{"id":8345,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8346],"locationId":1},{"id":8346,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8347],"locationId":2},{"id":8347,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8348],"locationId":4},{"id":8348,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8349],"locationId":1},{"id":8349,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8350],"locationId":2},{"id":8350,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8351],"locationId":4},{"id":8351,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8352],"locationId":1},{"id":8352,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8353],"locationId":2},{"id":8353,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8354],"locationId":4},{"id":8354,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8355],"locationId":1},{"id":8355,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8356],"locationId":2},{"id":8356,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8357],"locationId":4},{"id":8357,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8358],"locationId":1},{"id":8358,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8359],"locationId":2},{"id":8359,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8360],"locationId":4},{"id":8360,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8361],"locationId":1},{"id":8361,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8362],"locationId":2},{"id":8362,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8363],"locationId":4},{"id":8363,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8364],"locationId":1},{"id":8364,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8365],"locationId":2},{"id":8365,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8366],"locationId":4},{"id":8366,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8367],"locationId":1},{"id":8367,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8368],"locationId":2},{"id":8368,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8369],"locationId":4},{"id":8369,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8370],"locationId":1},{"id":8370,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8371],"locationId":2},{"id":8371,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8372],"locationId":4},{"id":8372,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8373],"locationId":1},{"id":8373,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8374],"locationId":2},{"id":8374,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8375],"locationId":4},{"id":8375,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8376],"locationId":1},{"id":8376,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8377],"locationId":2},{"id":8377,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8378],"locationId":4},{"id":8378,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8379],"locationId":1},{"id":8379,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8380],"locationId":2},{"id":8380,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8381],"locationId":4},{"id":8381,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8382],"locationId":1},{"id":8382,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8383],"locationId":2},{"id":8383,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8384],"locationId":4},{"id":8384,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8385],"locationId":1},{"id":8385,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8386],"locationId":2},{"id":8386,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8387],"locationId":4},{"id":8387,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8388],"locationId":1},{"id":8388,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8389],"locationId":2},{"id":8389,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8390],"locationId":4},{"id":8390,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8391],"locationId":1},{"id":8391,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8392],"locationId":2},{"id":8392,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8393],"locationId":4},{"id":8393,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8394],"locationId":1},{"id":8394,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8395],"locationId":2},{"id":8395,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8396],"locationId":4},{"id":8396,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8397],"locationId":1},{"id":8397,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8398],"locationId":2},{"id":8398,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8399],"locationId":4},{"id":8399,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8400],"locationId":1},{"id":8400,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8401],"locationId":2},{"id":8401,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8402],"locationId":4},{"id":8402,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8403],"locationId":1},{"id":8403,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8404],"locationId":2},{"id":8404,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8405],"locationId":4},{"id":8405,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8406],"locationId":1},{"id":8406,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8407],"locationId":2},{"id":8407,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8408],"locationId":4},{"id":8408,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8409],"locationId":1},{"id":8409,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7975,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7976],"locationId":4},{"id":7976,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7977],"locationId":1},{"id":7977,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7978],"locationId":2},{"id":7978,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7979],"locationId":4},{"id":7979,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7980],"locationId":1},{"id":7980,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7981],"locationId":2},{"id":7981,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7982],"locationId":4},{"id":7982,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7983],"locationId":1},{"id":7983,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7984],"locationId":2},{"id":7984,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7985],"locationId":4},{"id":7985,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7986],"locationId":1},{"id":7986,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7987],"locationId":2},{"id":7987,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7988],"locationId":4},{"id":7988,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7989],"locationId":1},{"id":7989,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7990],"locationId":2},{"id":7990,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7991],"locationId":4},{"id":7991,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7992],"locationId":1},{"id":7992,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7993],"locationId":2},{"id":7993,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7994],"locationId":4},{"id":7994,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7995],"locationId":1},{"id":7995,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7996],"locationId":2},{"id":7996,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7997],"locationId":4},{"id":7997,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7998],"locationId":1},{"id":7998,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7999],"locationId":2},{"id":7999,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8000],"locationId":4},{"id":8000,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8001],"locationId":1},{"id":8001,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8002],"locationId":2},{"id":8002,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8003],"locationId":4},{"id":8003,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8004],"locationId":1},{"id":8004,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8005],"locationId":2},{"id":8005,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8006],"locationId":4},{"id":8006,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8007],"locationId":1},{"id":8007,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8008],"locationId":2},{"id":8008,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8009],"locationId":4},{"id":8009,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8010],"locationId":1},{"id":8010,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8011],"locationId":2},{"id":8011,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8012],"locationId":4},{"id":8012,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8013],"locationId":1},{"id":8013,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8014],"locationId":2},{"id":8014,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8015],"locationId":4},{"id":8015,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8016],"locationId":1},{"id":8016,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8017],"locationId":2},{"id":8017,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8018],"locationId":4},{"id":8018,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8019],"locationId":1},{"id":8019,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8020],"locationId":2},{"id":8020,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8021],"locationId":4},{"id":8021,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8022],"locationId":1},{"id":8022,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8023],"locationId":2},{"id":8023,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8024],"locationId":4},{"id":8024,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8025],"locationId":1},{"id":8025,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8026],"locationId":2},{"id":8026,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8027],"locationId":4},{"id":8027,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8028],"locationId":1},{"id":8028,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8029],"locationId":2},{"id":8029,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8030],"locationId":4},{"id":8030,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8031],"locationId":1},{"id":8031,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8032],"locationId":2},{"id":8032,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8033],"locationId":4},{"id":8033,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8034],"locationId":1},{"id":8034,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8035],"locationId":2},{"id":8035,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8036],"locationId":4},{"id":8036,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8037],"locationId":1},{"id":8037,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8038],"locationId":2},{"id":8038,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8039],"locationId":4},{"id":8039,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8040],"locationId":1},{"id":8040,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8041],"locationId":2},{"id":8041,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8042],"locationId":4},{"id":8042,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8043],"locationId":1},{"id":8043,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8044],"locationId":2},{"id":8044,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8045],"locationId":4},{"id":8045,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8046],"locationId":1},{"id":8046,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8047],"locationId":2},{"id":8047,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8048],"locationId":4},{"id":8048,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8049],"locationId":1},{"id":8049,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8050],"locationId":2},{"id":8050,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8051],"locationId":4},{"id":8051,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8052],"locationId":1},{"id":8052,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8053],"locationId":2},{"id":8053,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8054],"locationId":4},{"id":8054,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8055],"locationId":1},{"id":8055,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8056],"locationId":2},{"id":8056,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8057],"locationId":4},{"id":8057,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8058],"locationId":1},{"id":8058,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8059],"locationId":2},{"id":8059,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8060],"locationId":4},{"id":8060,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8061],"locationId":1},{"id":8061,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8062],"locationId":2},{"id":8062,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8063],"locationId":4},{"id":8063,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8064],"locationId":1},{"id":8064,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8065],"locationId":2},{"id":8065,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8066],"locationId":4},{"id":8066,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8067],"locationId":1},{"id":8067,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7573,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7574],"locationId":4},{"id":7574,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7575],"locationId":1},{"id":7575,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7576],"locationId":2},{"id":7576,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7577],"locationId":4},{"id":7577,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7578],"locationId":1},{"id":7578,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7579],"locationId":2},{"id":7579,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7580],"locationId":4},{"id":7580,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7581],"locationId":1},{"id":7581,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7582],"locationId":2},{"id":7582,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7583],"locationId":4},{"id":7583,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7584],"locationId":1},{"id":7584,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7585],"locationId":2},{"id":7585,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7586],"locationId":4},{"id":7586,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7587],"locationId":1},{"id":7587,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7588],"locationId":2},{"id":7588,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7589],"locationId":4},{"id":7589,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7590],"locationId":1},{"id":7590,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7591],"locationId":2},{"id":7591,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7592],"locationId":4},{"id":7592,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7593],"locationId":1},{"id":7593,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7594],"locationId":2},{"id":7594,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7595],"locationId":4},{"id":7595,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7596],"locationId":1},{"id":7596,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7597],"locationId":2},{"id":7597,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7598],"locationId":4},{"id":7598,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7599],"locationId":1},{"id":7599,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7600],"locationId":2},{"id":7600,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7601],"locationId":4},{"id":7601,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7602],"locationId":1},{"id":7602,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7603],"locationId":2},{"id":7603,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7604],"locationId":4},{"id":7604,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7605],"locationId":1},{"id":7605,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7606],"locationId":2},{"id":7606,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7607],"locationId":4},{"id":7607,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7608],"locationId":1},{"id":7608,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7609],"locationId":2},{"id":7609,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7610],"locationId":4},{"id":7610,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7611],"locationId":1},{"id":7611,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7612],"locationId":2},{"id":7612,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7613],"locationId":4},{"id":7613,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7614],"locationId":1},{"id":7614,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7615],"locationId":2},{"id":7615,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7616],"locationId":4},{"id":7616,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7617],"locationId":1},{"id":7617,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7618],"locationId":2},{"id":7618,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7619],"locationId":4},{"id":7619,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7620],"locationId":1},{"id":7620,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7621],"locationId":2},{"id":7621,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7622],"locationId":4},{"id":7622,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7623],"locationId":1},{"id":7623,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7624],"locationId":2},{"id":7624,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7625],"locationId":4},{"id":7625,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7626],"locationId":1},{"id":7626,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7627],"locationId":2},{"id":7627,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7628],"locationId":4},{"id":7628,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7629],"locationId":1},{"id":7629,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7630],"locationId":2},{"id":7630,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7631],"locationId":4},{"id":7631,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7632],"locationId":1},{"id":7632,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7633],"locationId":2},{"id":7633,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7634],"locationId":4},{"id":7634,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7635],"locationId":1},{"id":7635,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7636],"locationId":2},{"id":7636,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7637],"locationId":4},{"id":7637,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7638],"locationId":1},{"id":7638,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7639],"locationId":2},{"id":7639,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7640],"locationId":4},{"id":7640,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7641],"locationId":1},{"id":7641,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7642],"locationId":2},{"id":7642,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7643],"locationId":4},{"id":7643,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7644],"locationId":1},{"id":7644,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7645],"locationId":2},{"id":7645,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7646],"locationId":4},{"id":7646,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7647],"locationId":1},{"id":7647,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7648],"locationId":2},{"id":7648,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7649],"locationId":4},{"id":7649,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7650],"locationId":1},{"id":7650,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7651],"locationId":2},{"id":7651,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7652],"locationId":4},{"id":7652,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7653],"locationId":1},{"id":7653,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7654],"locationId":2},{"id":7654,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7655],"locationId":4},{"id":7655,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7656],"locationId":1},{"id":7656,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7657],"locationId":2},{"id":7657,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7658],"locationId":4},{"id":7658,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7659],"locationId":1},{"id":7659,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7660],"locationId":2},{"id":7660,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7661],"locationId":4},{"id":7661,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7662],"locationId":1},{"id":7662,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7663],"locationId":2},{"id":7663,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7664],"locationId":4},{"id":7664,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7665],"locationId":1},{"id":7665,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7666],"locationId":2},{"id":7666,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7667],"locationId":4},{"id":7667,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7668],"locationId":1},{"id":7668,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7669],"locationId":2},{"id":7669,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7670],"locationId":4},{"id":7670,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7671],"locationId":1},{"id":7671,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7672],"locationId":2},{"id":7672,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7673],"locationId":4},{"id":7673,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7674],"locationId":1},{"id":7674,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7675],"locationId":2},{"id":7675,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7676],"locationId":4},{"id":7676,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7677],"locationId":1},{"id":7677,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7123,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7124],"locationId":4},{"id":7124,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7125],"locationId":1},{"id":7125,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7126],"locationId":2},{"id":7126,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7127],"locationId":4},{"id":7127,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7128],"locationId":1},{"id":7128,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7129],"locationId":2},{"id":7129,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7130],"locationId":4},{"id":7130,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7131],"locationId":1},{"id":7131,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7132],"locationId":2},{"id":7132,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7133],"locationId":4},{"id":7133,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7134],"locationId":1},{"id":7134,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7135],"locationId":2},{"id":7135,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7136],"locationId":4},{"id":7136,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7137],"locationId":1},{"id":7137,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7138],"locationId":2},{"id":7138,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7139],"locationId":4},{"id":7139,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7140],"locationId":1},{"id":7140,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7141],"locationId":2},{"id":7141,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7142],"locationId":4},{"id":7142,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7143],"locationId":1},{"id":7143,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7144],"locationId":2},{"id":7144,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7145],"locationId":4},{"id":7145,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7146],"locationId":1},{"id":7146,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7147],"locationId":2},{"id":7147,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7148],"locationId":4},{"id":7148,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7149],"locationId":1},{"id":7149,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7150],"locationId":2},{"id":7150,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7151],"locationId":4},{"id":7151,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7152],"locationId":1},{"id":7152,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7153],"locationId":2},{"id":7153,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7154],"locationId":4},{"id":7154,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7155],"locationId":1},{"id":7155,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7156],"locationId":2},{"id":7156,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7157],"locationId":4},{"id":7157,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7158],"locationId":1},{"id":7158,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7159],"locationId":2},{"id":7159,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7160],"locationId":4},{"id":7160,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7161],"locationId":1},{"id":7161,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7162],"locationId":2},{"id":7162,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7163],"locationId":4},{"id":7163,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7164],"locationId":1},{"id":7164,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7165],"locationId":2},{"id":7165,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7166],"locationId":4},{"id":7166,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7167],"locationId":1},{"id":7167,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7168],"locationId":2},{"id":7168,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7169],"locationId":4},{"id":7169,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7170],"locationId":1},{"id":7170,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7171],"locationId":2},{"id":7171,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7172],"locationId":4},{"id":7172,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7173],"locationId":1},{"id":7173,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7174],"locationId":2},{"id":7174,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7175],"locationId":4},{"id":7175,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7176],"locationId":1},{"id":7176,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7177],"locationId":2},{"id":7177,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7178],"locationId":4},{"id":7178,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7179],"locationId":1},{"id":7179,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7180],"locationId":2},{"id":7180,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7181],"locationId":4},{"id":7181,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7182],"locationId":1},{"id":7182,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7183],"locationId":2},{"id":7183,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7184],"locationId":4},{"id":7184,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7185],"locationId":1},{"id":7185,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7186],"locationId":2},{"id":7186,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7187],"locationId":4},{"id":7187,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7188],"locationId":1},{"id":7188,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7189],"locationId":2},{"id":7189,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7190],"locationId":4},{"id":7190,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7191],"locationId":1},{"id":7191,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7192],"locationId":2},{"id":7192,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7193],"locationId":4},{"id":7193,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7194],"locationId":1},{"id":7194,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7195],"locationId":2},{"id":7195,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7196],"locationId":4},{"id":7196,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7197],"locationId":1},{"id":7197,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7198],"locationId":2},{"id":7198,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7199],"locationId":4},{"id":7199,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7200],"locationId":1},{"id":7200,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7201],"locationId":2},{"id":7201,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7202],"locationId":4},{"id":7202,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7203],"locationId":1},{"id":7203,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7204],"locationId":2},{"id":7204,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7205],"locationId":4},{"id":7205,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7206],"locationId":1},{"id":7206,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7207],"locationId":2},{"id":7207,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7208],"locationId":4},{"id":7208,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7209],"locationId":1},{"id":7209,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7210],"locationId":2},{"id":7210,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7211],"locationId":4},{"id":7211,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7212],"locationId":1},{"id":7212,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7213],"locationId":2},{"id":7213,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7214],"locationId":4},{"id":7214,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7215],"locationId":1},{"id":7215,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7216],"locationId":2},{"id":7216,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7217],"locationId":4},{"id":7217,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7218],"locationId":1},{"id":7218,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7219],"locationId":2},{"id":7219,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7220],"locationId":4},{"id":7220,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7221],"locationId":1},{"id":7221,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7222],"locationId":2},{"id":7222,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7223],"locationId":4},{"id":7223,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7224],"locationId":1},{"id":7224,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7225],"locationId":2},{"id":7225,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7226],"locationId":4},{"id":7226,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7227],"locationId":1},{"id":7227,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7228],"locationId":2},{"id":7228,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7229],"locationId":4},{"id":7229,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7230],"locationId":1},{"id":7230,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7231],"locationId":2},{"id":7231,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7232],"locationId":4},{"id":7232,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7233],"locationId":1},{"id":7233,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7234],"locationId":2},{"id":7234,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7235],"locationId":4},{"id":7235,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7236],"locationId":1},{"id":7236,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7237],"locationId":2},{"id":7237,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7238],"locationId":4},{"id":7238,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7239],"locationId":1},{"id":7239,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":6625,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6626],"locationId":4},{"id":6626,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6627],"locationId":1},{"id":6627,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6628],"locationId":2},{"id":6628,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6629],"locationId":4},{"id":6629,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6630],"locationId":1},{"id":6630,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6631],"locationId":2},{"id":6631,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6632],"locationId":4},{"id":6632,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6633],"locationId":1},{"id":6633,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6634],"locationId":2},{"id":6634,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6635],"locationId":4},{"id":6635,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6636],"locationId":1},{"id":6636,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6637],"locationId":2},{"id":6637,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6638],"locationId":4},{"id":6638,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6639],"locationId":1},{"id":6639,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6640],"locationId":2},{"id":6640,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6641],"locationId":4},{"id":6641,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6642],"locationId":1},{"id":6642,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6643],"locationId":2},{"id":6643,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6644],"locationId":4},{"id":6644,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6645],"locationId":1},{"id":6645,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6646],"locationId":2},{"id":6646,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6647],"locationId":4},{"id":6647,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6648],"locationId":1},{"id":6648,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6649],"locationId":2},{"id":6649,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6650],"locationId":4},{"id":6650,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6651],"locationId":1},{"id":6651,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6652],"locationId":2},{"id":6652,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6653],"locationId":4},{"id":6653,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6654],"locationId":1},{"id":6654,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6655],"locationId":2},{"id":6655,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6656],"locationId":4},{"id":6656,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6657],"locationId":1},{"id":6657,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6658],"locationId":2},{"id":6658,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6659],"locationId":4},{"id":6659,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6660],"locationId":1},{"id":6660,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6661],"locationId":2},{"id":6661,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6662],"locationId":4},{"id":6662,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6663],"locationId":1},{"id":6663,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6664],"locationId":2},{"id":6664,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6665],"locationId":4},{"id":6665,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6666],"locationId":1},{"id":6666,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6667],"locationId":2},{"id":6667,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6668],"locationId":4},{"id":6668,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6669],"locationId":1},{"id":6669,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6670],"locationId":2},{"id":6670,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6671],"locationId":4},{"id":6671,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6672],"locationId":1},{"id":6672,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6673],"locationId":2},{"id":6673,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6674],"locationId":4},{"id":6674,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6675],"locationId":1},{"id":6675,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6676],"locationId":2},{"id":6676,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6677],"locationId":4},{"id":6677,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6678],"locationId":1},{"id":6678,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6679],"locationId":2},{"id":6679,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6680],"locationId":4},{"id":6680,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6681],"locationId":1},{"id":6681,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6682],"locationId":2},{"id":6682,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6683],"locationId":4},{"id":6683,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6684],"locationId":1},{"id":6684,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6685],"locationId":2},{"id":6685,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6686],"locationId":4},{"id":6686,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6687],"locationId":1},{"id":6687,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6688],"locationId":2},{"id":6688,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6689],"locationId":4},{"id":6689,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6690],"locationId":1},{"id":6690,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6691],"locationId":2},{"id":6691,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6692],"locationId":4},{"id":6692,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6693],"locationId":1},{"id":6693,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6694],"locationId":2},{"id":6694,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6695],"locationId":4},{"id":6695,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6696],"locationId":1},{"id":6696,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6697],"locationId":2},{"id":6697,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6698],"locationId":4},{"id":6698,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6699],"locationId":1},{"id":6699,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6700],"locationId":2},{"id":6700,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6701],"locationId":4},{"id":6701,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6702],"locationId":1},{"id":6702,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6703],"locationId":2},{"id":6703,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6704],"locationId":4},{"id":6704,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6705],"locationId":1},{"id":6705,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6706],"locationId":2},{"id":6706,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6707],"locationId":4},{"id":6707,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6708],"locationId":1},{"id":6708,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6709],"locationId":2},{"id":6709,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6710],"locationId":4},{"id":6710,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6711],"locationId":1},{"id":6711,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6712],"locationId":2},{"id":6712,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6713],"locationId":4},{"id":6713,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6714],"locationId":1},{"id":6714,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6715],"locationId":2},{"id":6715,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6716],"locationId":4},{"id":6716,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6717],"locationId":1},{"id":6717,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6718],"locationId":2},{"id":6718,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6719],"locationId":4},{"id":6719,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6720],"locationId":1},{"id":6720,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6721],"locationId":2},{"id":6721,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6722],"locationId":4},{"id":6722,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6723],"locationId":1},{"id":6723,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6724],"locationId":2},{"id":6724,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6725],"locationId":4},{"id":6725,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6726],"locationId":1},{"id":6726,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6727],"locationId":2},{"id":6727,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6728],"locationId":4},{"id":6728,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6729],"locationId":1},{"id":6729,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6730],"locationId":2},{"id":6730,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6731],"locationId":4},{"id":6731,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6732],"locationId":1},{"id":6732,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6733],"locationId":2},{"id":6733,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6734],"locationId":4},{"id":6734,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6735],"locationId":1},{"id":6735,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6736],"locationId":2},{"id":6736,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6737],"locationId":4},{"id":6737,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6738],"locationId":1},{"id":6738,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6739],"locationId":2},{"id":6739,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6740],"locationId":4},{"id":6740,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6741],"locationId":1},{"id":6741,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6742],"locationId":2},{"id":6742,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6743],"locationId":4},{"id":6743,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6744],"locationId":1},{"id":6744,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6745],"locationId":2},{"id":6745,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6746],"locationId":4},{"id":6746,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6747],"locationId":1},{"id":6747,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6748],"locationId":2},{"id":6748,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6749],"locationId":4},{"id":6749,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6750],"locationId":1},{"id":6750,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6751],"locationId":2},{"id":6751,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6752],"locationId":4},{"id":6752,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6753],"locationId":1},{"id":6753,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":6357,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6358],"locationId":4},{"id":6358,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6359],"locationId":1},{"id":6359,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6360],"locationId":2},{"id":6360,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6361],"locationId":4},{"id":6361,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6362],"locationId":1},{"id":6362,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6363],"locationId":2},{"id":6363,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6364],"locationId":4},{"id":6364,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6365],"locationId":1},{"id":6365,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6366],"locationId":2},{"id":6366,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6367],"locationId":4},{"id":6367,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6368],"locationId":1},{"id":6368,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6369],"locationId":2},{"id":6369,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6370],"locationId":4},{"id":6370,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6371],"locationId":1},{"id":6371,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6372],"locationId":2},{"id":6372,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6373],"locationId":4},{"id":6373,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6374],"locationId":1},{"id":6374,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6375],"locationId":2},{"id":6375,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6376],"locationId":4},{"id":6376,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6377],"locationId":1},{"id":6377,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6378],"locationId":2},{"id":6378,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6379],"locationId":4},{"id":6379,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6380],"locationId":1},{"id":6380,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6381],"locationId":2},{"id":6381,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6382],"locationId":4},{"id":6382,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6383],"locationId":1},{"id":6383,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6384],"locationId":2},{"id":6384,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6385],"locationId":4},{"id":6385,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6386],"locationId":1},{"id":6386,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6387],"locationId":2},{"id":6387,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6388],"locationId":4},{"id":6388,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6389],"locationId":1},{"id":6389,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6390],"locationId":2},{"id":6390,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6391],"locationId":4},{"id":6391,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6392],"locationId":1},{"id":6392,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6393],"locationId":2},{"id":6393,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6394],"locationId":4},{"id":6394,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6395],"locationId":1},{"id":6395,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6396],"locationId":2},{"id":6396,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6397],"locationId":4},{"id":6397,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6398],"locationId":1},{"id":6398,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6399],"locationId":2},{"id":6399,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6400],"locationId":4},{"id":6400,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6401],"locationId":1},{"id":6401,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6402],"locationId":2},{"id":6402,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6403],"locationId":4},{"id":6403,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6404],"locationId":1},{"id":6404,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6405],"locationId":2},{"id":6405,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6406],"locationId":4},{"id":6406,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6407],"locationId":1},{"id":6407,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6408],"locationId":2},{"id":6408,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6409],"locationId":4},{"id":6409,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6410],"locationId":1},{"id":6410,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6411],"locationId":2},{"id":6411,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6412],"locationId":4},{"id":6412,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6413],"locationId":1},{"id":6413,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6414],"locationId":2},{"id":6414,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6415],"locationId":4},{"id":6415,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6416],"locationId":1},{"id":6416,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6417],"locationId":2},{"id":6417,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6418],"locationId":4},{"id":6418,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6419],"locationId":1},{"id":6419,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6420],"locationId":2},{"id":6420,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6421],"locationId":4},{"id":6421,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6422],"locationId":1},{"id":6422,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6423],"locationId":2},{"id":6423,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6424],"locationId":4},{"id":6424,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6425],"locationId":1},{"id":6425,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6426],"locationId":2},{"id":6426,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6427],"locationId":4},{"id":6427,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6428],"locationId":1},{"id":6428,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6429],"locationId":2},{"id":6429,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6430],"locationId":4},{"id":6430,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6431],"locationId":1},{"id":6431,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6432],"locationId":2},{"id":6432,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6433],"locationId":4},{"id":6433,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6434],"locationId":1},{"id":6434,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6435],"locationId":2},{"id":6435,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6436],"locationId":4},{"id":6436,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6437],"locationId":1},{"id":6437,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6438],"locationId":2},{"id":6438,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6439],"locationId":4},{"id":6439,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6440],"locationId":1},{"id":6440,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6441],"locationId":2},{"id":6441,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6442],"locationId":4},{"id":6442,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6443],"locationId":1},{"id":6443,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6444],"locationId":2},{"id":6444,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6445],"locationId":4},{"id":6445,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6446],"locationId":1},{"id":6446,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6447],"locationId":2},{"id":6447,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6448],"locationId":4},{"id":6448,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6449],"locationId":1},{"id":6449,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6450],"locationId":2},{"id":6450,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6451],"locationId":4},{"id":6451,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6452],"locationId":1},{"id":6452,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6453],"locationId":2},{"id":6453,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6454],"locationId":4},{"id":6454,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6455],"locationId":1},{"id":6455,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6456],"locationId":2},{"id":6456,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6457],"locationId":4},{"id":6457,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6458],"locationId":1},{"id":6458,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6459],"locationId":2},{"id":6459,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6460],"locationId":4},{"id":6460,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6461],"locationId":1},{"id":6461,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6462],"locationId":2},{"id":6462,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6463],"locationId":4},{"id":6463,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6464],"locationId":1},{"id":6464,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6465],"locationId":2},{"id":6465,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6466],"locationId":4},{"id":6466,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6467],"locationId":1},{"id":6467,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6468],"locationId":2},{"id":6468,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6469],"locationId":4},{"id":6469,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6470],"locationId":1},{"id":6470,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6471],"locationId":2},{"id":6471,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6472],"locationId":4},{"id":6472,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6473],"locationId":1},{"id":6473,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6474],"locationId":2},{"id":6474,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6475],"locationId":4},{"id":6475,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6476],"locationId":1},{"id":6476,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6477],"locationId":2},{"id":6477,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6478],"locationId":4},{"id":6478,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6479],"locationId":1},{"id":6479,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6480],"locationId":2},{"id":6480,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6481],"locationId":4},{"id":6481,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6482],"locationId":1},{"id":6482,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6483],"locationId":2},{"id":6483,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6484],"locationId":4},{"id":6484,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6485],"locationId":1},{"id":6485,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6486],"locationId":2},{"id":6486,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6487],"locationId":4},{"id":6487,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6488],"locationId":1},{"id":6488,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6489],"locationId":2},{"id":6489,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6490],"locationId":4},{"id":6490,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6491],"locationId":1},{"id":6491,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6492],"locationId":2},{"id":6492,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":728,"ticks":1,"startLocationId":292,"endLocationId":293}],"locationId":3},{"id":5943,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5944],"locationId":4},{"id":5944,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5945],"locationId":1},{"id":5945,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5946],"locationId":2},{"id":5946,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5947],"locationId":4},{"id":5947,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5948],"locationId":1},{"id":5948,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5949],"locationId":2},{"id":5949,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5950],"locationId":4},{"id":5950,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5951],"locationId":1},{"id":5951,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5952],"locationId":2},{"id":5952,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5953],"locationId":4},{"id":5953,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5954],"locationId":1},{"id":5954,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5955],"locationId":2},{"id":5955,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5956],"locationId":4},{"id":5956,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5957],"locationId":1},{"id":5957,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5958],"locationId":2},{"id":5958,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5959],"locationId":4},{"id":5959,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5960],"locationId":1},{"id":5960,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5961],"locationId":2},{"id":5961,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5962],"locationId":4},{"id":5962,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5963],"locationId":1},{"id":5963,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5964],"locationId":2},{"id":5964,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5965],"locationId":4},{"id":5965,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5966],"locationId":1},{"id":5966,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5967],"locationId":2},{"id":5967,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5968],"locationId":4},{"id":5968,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5969],"locationId":1},{"id":5969,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5970],"locationId":2},{"id":5970,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5971],"locationId":4},{"id":5971,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5972],"locationId":1},{"id":5972,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5973],"locationId":2},{"id":5973,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5974],"locationId":4},{"id":5974,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5975],"locationId":1},{"id":5975,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5976],"locationId":2},{"id":5976,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5977],"locationId":4},{"id":5977,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5978],"locationId":1},{"id":5978,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5979],"locationId":2},{"id":5979,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5980],"locationId":4},{"id":5980,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5981],"locationId":1},{"id":5981,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5982],"locationId":2},{"id":5982,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5983],"locationId":4},{"id":5983,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5984],"locationId":1},{"id":5984,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5985],"locationId":2},{"id":5985,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5986],"locationId":4},{"id":5986,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5987],"locationId":1},{"id":5987,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5988],"locationId":2},{"id":5988,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5989],"locationId":4},{"id":5989,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5990],"locationId":1},{"id":5990,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5991],"locationId":2},{"id":5991,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5992],"locationId":4},{"id":5992,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5993],"locationId":1},{"id":5993,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5994],"locationId":2},{"id":5994,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5995],"locationId":4},{"id":5995,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5996],"locationId":1},{"id":5996,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5997],"locationId":2},{"id":5997,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5998],"locationId":4},{"id":5998,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5999],"locationId":1},{"id":5999,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6000],"locationId":2},{"id":6000,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6001],"locationId":4},{"id":6001,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6002],"locationId":1},{"id":6002,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6003],"locationId":2},{"id":6003,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6004],"locationId":4},{"id":6004,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6005],"locationId":1},{"id":6005,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6006],"locationId":2},{"id":6006,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6007],"locationId":4},{"id":6007,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6008],"locationId":1},{"id":6008,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6009],"locationId":2},{"id":6009,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6010],"locationId":4},{"id":6010,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6011],"locationId":1},{"id":6011,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6012],"locationId":2},{"id":6012,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6013],"locationId":4},{"id":6013,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6014],"locationId":1},{"id":6014,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6015],"locationId":2},{"id":6015,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6016],"locationId":4},{"id":6016,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6017],"locationId":1},{"id":6017,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6018],"locationId":2},{"id":6018,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6019],"locationId":4},{"id":6019,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6020],"locationId":1},{"id":6020,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6021],"locationId":2},{"id":6021,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6022],"locationId":4},{"id":6022,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6023],"locationId":1},{"id":6023,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6024],"locationId":2},{"id":6024,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6025],"locationId":4},{"id":6025,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6026],"locationId":1},{"id":6026,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6027],"locationId":2},{"id":6027,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6028],"locationId":4},{"id":6028,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6029],"locationId":1},{"id":6029,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6030],"locationId":2},{"id":6030,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6031],"locationId":4},{"id":6031,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6032],"locationId":1},{"id":6032,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6033],"locationId":2},{"id":6033,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6034],"locationId":4},{"id":6034,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6035],"locationId":1},{"id":6035,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6036],"locationId":2},{"id":6036,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6037],"locationId":4},{"id":6037,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6038],"locationId":1},{"id":6038,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6039],"locationId":2},{"id":6039,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6040],"locationId":4},{"id":6040,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6041],"locationId":1},{"id":6041,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6042],"locationId":2},{"id":6042,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6043],"locationId":4},{"id":6043,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6044],"locationId":1},{"id":6044,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6045],"locationId":2},{"id":6045,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6046],"locationId":4},{"id":6046,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6047],"locationId":1},{"id":6047,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6048],"locationId":2},{"id":6048,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6049],"locationId":4},{"id":6049,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6050],"locationId":1},{"id":6050,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6051],"locationId":2},{"id":6051,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6052],"locationId":4},{"id":6052,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6053],"locationId":1},{"id":6053,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6054],"locationId":2},{"id":6054,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6055],"locationId":4},{"id":6055,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6056],"locationId":1},{"id":6056,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6057],"locationId":2},{"id":6057,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6058],"locationId":4},{"id":6058,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6059],"locationId":1},{"id":6059,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6060],"locationId":2},{"id":6060,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6061],"locationId":4},{"id":6061,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6062],"locationId":1},{"id":6062,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6063],"locationId":2},{"id":6063,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6064],"locationId":4},{"id":6064,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6065],"locationId":1},{"id":6065,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6066],"locationId":2},{"id":6066,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6067],"locationId":4},{"id":6067,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6068],"locationId":1},{"id":6068,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6069],"locationId":2},{"id":6069,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6070],"locationId":4},{"id":6070,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6071],"locationId":1},{"id":6071,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6072],"locationId":2},{"id":6072,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6073],"locationId":4},{"id":6073,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6074],"locationId":1},{"id":6074,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6075],"locationId":2},{"id":6075,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6076],"locationId":4},{"id":6076,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6077],"locationId":1},{"id":6077,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6078],"locationId":2},{"id":6078,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6079],"locationId":4},{"id":6079,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6080],"locationId":1},{"id":6080,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6081],"locationId":2},{"id":6081,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6082],"locationId":4},{"id":6082,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6083],"locationId":1},{"id":6083,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":5349,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5350],"locationId":4},{"id":5350,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5351],"locationId":1},{"id":5351,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5352],"locationId":2},{"id":5352,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5353],"locationId":4},{"id":5353,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5354],"locationId":1},{"id":5354,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5355],"locationId":2},{"id":5355,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5356],"locationId":4},{"id":5356,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5357],"locationId":1},{"id":5357,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5358],"locationId":2},{"id":5358,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5359],"locationId":4},{"id":5359,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5360],"locationId":1},{"id":5360,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5361],"locationId":2},{"id":5361,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5362],"locationId":4},{"id":5362,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5363],"locationId":1},{"id":5363,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5364],"locationId":2},{"id":5364,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5365],"locationId":4},{"id":5365,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5366],"locationId":1},{"id":5366,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5367],"locationId":2},{"id":5367,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5368],"locationId":4},{"id":5368,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5369],"locationId":1},{"id":5369,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5370],"locationId":2},{"id":5370,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5371],"locationId":4},{"id":5371,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5372],"locationId":1},{"id":5372,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5373],"locationId":2},{"id":5373,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5374],"locationId":4},{"id":5374,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5375],"locationId":1},{"id":5375,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5376],"locationId":2},{"id":5376,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5377],"locationId":4},{"id":5377,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5378],"locationId":1},{"id":5378,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5379],"locationId":2},{"id":5379,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5380],"locationId":4},{"id":5380,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5381],"locationId":1},{"id":5381,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5382],"locationId":2},{"id":5382,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5383],"locationId":4},{"id":5383,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5384],"locationId":1},{"id":5384,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5385],"locationId":2},{"id":5385,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5386],"locationId":4},{"id":5386,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5387],"locationId":1},{"id":5387,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5388],"locationId":2},{"id":5388,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5389],"locationId":4},{"id":5389,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5390],"locationId":1},{"id":5390,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5391],"locationId":2},{"id":5391,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5392],"locationId":4},{"id":5392,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5393],"locationId":1},{"id":5393,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5394],"locationId":2},{"id":5394,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5395],"locationId":4},{"id":5395,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5396],"locationId":1},{"id":5396,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5397],"locationId":2},{"id":5397,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5398],"locationId":4},{"id":5398,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5399],"locationId":1},{"id":5399,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5400],"locationId":2},{"id":5400,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5401],"locationId":4},{"id":5401,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5402],"locationId":1},{"id":5402,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5403],"locationId":2},{"id":5403,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5404],"locationId":4},{"id":5404,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5405],"locationId":1},{"id":5405,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5406],"locationId":2},{"id":5406,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5407],"locationId":4},{"id":5407,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5408],"locationId":1},{"id":5408,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5409],"locationId":2},{"id":5409,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5410],"locationId":4},{"id":5410,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5411],"locationId":1},{"id":5411,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5412],"locationId":2},{"id":5412,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5413],"locationId":4},{"id":5413,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5414],"locationId":1},{"id":5414,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5415],"locationId":2},{"id":5415,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5416],"locationId":4},{"id":5416,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5417],"locationId":1},{"id":5417,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5418],"locationId":2},{"id":5418,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5419],"locationId":4},{"id":5419,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5420],"locationId":1},{"id":5420,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5421],"locationId":2},{"id":5421,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5422],"locationId":4},{"id":5422,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5423],"locationId":1},{"id":5423,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5424],"locationId":2},{"id":5424,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5425],"locationId":4},{"id":5425,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5426],"locationId":1},{"id":5426,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5427],"locationId":2},{"id":5427,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5428],"locationId":4},{"id":5428,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5429],"locationId":1},{"id":5429,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5430],"locationId":2},{"id":5430,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5431],"locationId":4},{"id":5431,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5432],"locationId":1},{"id":5432,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5433],"locationId":2},{"id":5433,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5434],"locationId":4},{"id":5434,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5435],"locationId":1},{"id":5435,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5436],"locationId":2},{"id":5436,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5437],"locationId":4},{"id":5437,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5438],"locationId":1},{"id":5438,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5439],"locationId":2},{"id":5439,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5440],"locationId":4},{"id":5440,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5441],"locationId":1},{"id":5441,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5442],"locationId":2},{"id":5442,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5443],"locationId":4},{"id":5443,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5444],"locationId":1},{"id":5444,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5445],"locationId":2},{"id":5445,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5446],"locationId":4},{"id":5446,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5447],"locationId":1},{"id":5447,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5448],"locationId":2},{"id":5448,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5449],"locationId":4},{"id":5449,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5450],"locationId":1},{"id":5450,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5451],"locationId":2},{"id":5451,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5452],"locationId":4},{"id":5452,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5453],"locationId":1},{"id":5453,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5454],"locationId":2},{"id":5454,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5455],"locationId":4},{"id":5455,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5456],"locationId":1},{"id":5456,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5457],"locationId":2},{"id":5457,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5458],"locationId":4},{"id":5458,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5459],"locationId":1},{"id":5459,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5460],"locationId":2},{"id":5460,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5461],"locationId":4},{"id":5461,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5462],"locationId":1},{"id":5462,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5463],"locationId":2},{"id":5463,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5464],"locationId":4},{"id":5464,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5465],"locationId":1},{"id":5465,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5466],"locationId":2},{"id":5466,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5467],"locationId":4},{"id":5467,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5468],"locationId":1},{"id":5468,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5469],"locationId":2},{"id":5469,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5470],"locationId":4},{"id":5470,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5471],"locationId":1},{"id":5471,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5472],"locationId":2},{"id":5472,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5473],"locationId":4},{"id":5473,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5474],"locationId":1},{"id":5474,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5475],"locationId":2},{"id":5475,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5476],"locationId":4},{"id":5476,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5477],"locationId":1},{"id":5477,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5478],"locationId":2},{"id":5478,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5479],"locationId":4},{"id":5479,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5480],"locationId":1},{"id":5480,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5481],"locationId":2},{"id":5481,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5482],"locationId":4},{"id":5482,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5483],"locationId":1},{"id":5483,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5484],"locationId":2},{"id":5484,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5485],"locationId":4},{"id":5485,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5486],"locationId":1},{"id":5486,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5487],"locationId":2},{"id":5487,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5488],"locationId":4},{"id":5488,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5489],"locationId":1},{"id":5489,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5490],"locationId":2},{"id":5490,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5491],"locationId":4},{"id":5491,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5492],"locationId":1},{"id":5492,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5493],"locationId":2},{"id":5493,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5494],"locationId":4},{"id":5494,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5495],"locationId":1},{"id":5495,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5496],"locationId":2},{"id":5496,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5497],"locationId":4},{"id":5497,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5498],"locationId":1},{"id":5498,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5499],"locationId":2},{"id":5499,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5500],"locationId":4},{"id":5500,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5501],"locationId":1},{"id":5501,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":4707,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4708],"locationId":4},{"id":4708,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4709],"locationId":1},{"id":4709,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4710],"locationId":2},{"id":4710,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4711],"locationId":4},{"id":4711,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4712],"locationId":1},{"id":4712,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4713],"locationId":2},{"id":4713,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4714],"locationId":4},{"id":4714,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4715],"locationId":1},{"id":4715,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4716],"locationId":2},{"id":4716,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4717],"locationId":4},{"id":4717,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4718],"locationId":1},{"id":4718,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4719],"locationId":2},{"id":4719,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4720],"locationId":4},{"id":4720,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4721],"locationId":1},{"id":4721,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4722],"locationId":2},{"id":4722,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4723],"locationId":4},{"id":4723,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4724],"locationId":1},{"id":4724,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4725],"locationId":2},{"id":4725,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4726],"locationId":4},{"id":4726,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4727],"locationId":1},{"id":4727,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4728],"locationId":2},{"id":4728,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4729],"locationId":4},{"id":4729,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4730],"locationId":1},{"id":4730,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4731],"locationId":2},{"id":4731,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4732],"locationId":4},{"id":4732,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4733],"locationId":1},{"id":4733,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4734],"locationId":2},{"id":4734,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4735],"locationId":4},{"id":4735,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4736],"locationId":1},{"id":4736,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4737],"locationId":2},{"id":4737,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4738],"locationId":4},{"id":4738,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4739],"locationId":1},{"id":4739,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4740],"locationId":2},{"id":4740,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4741],"locationId":4},{"id":4741,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4742],"locationId":1},{"id":4742,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4743],"locationId":2},{"id":4743,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4744],"locationId":4},{"id":4744,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4745],"locationId":1},{"id":4745,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4746],"locationId":2},{"id":4746,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4747],"locationId":4},{"id":4747,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4748],"locationId":1},{"id":4748,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4749],"locationId":2},{"id":4749,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4750],"locationId":4},{"id":4750,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4751],"locationId":1},{"id":4751,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4752],"locationId":2},{"id":4752,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4753],"locationId":4},{"id":4753,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4754],"locationId":1},{"id":4754,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4755],"locationId":2},{"id":4755,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4756],"locationId":4},{"id":4756,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4757],"locationId":1},{"id":4757,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4758],"locationId":2},{"id":4758,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4759],"locationId":4},{"id":4759,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4760],"locationId":1},{"id":4760,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4761],"locationId":2},{"id":4761,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4762],"locationId":4},{"id":4762,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4763],"locationId":1},{"id":4763,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4764],"locationId":2},{"id":4764,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4765],"locationId":4},{"id":4765,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4766],"locationId":1},{"id":4766,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4767],"locationId":2},{"id":4767,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4768],"locationId":4},{"id":4768,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4769],"locationId":1},{"id":4769,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4770],"locationId":2},{"id":4770,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4771],"locationId":4},{"id":4771,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4772],"locationId":1},{"id":4772,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4773],"locationId":2},{"id":4773,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4774],"locationId":4},{"id":4774,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4775],"locationId":1},{"id":4775,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4776],"locationId":2},{"id":4776,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4777],"locationId":4},{"id":4777,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4778],"locationId":1},{"id":4778,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4779],"locationId":2},{"id":4779,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4780],"locationId":4},{"id":4780,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4781],"locationId":1},{"id":4781,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4782],"locationId":2},{"id":4782,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4783],"locationId":4},{"id":4783,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4784],"locationId":1},{"id":4784,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4785],"locationId":2},{"id":4785,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4786],"locationId":4},{"id":4786,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4787],"locationId":1},{"id":4787,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4788],"locationId":2},{"id":4788,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4789],"locationId":4},{"id":4789,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4790],"locationId":1},{"id":4790,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4791],"locationId":2},{"id":4791,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4792],"locationId":4},{"id":4792,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4793],"locationId":1},{"id":4793,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4794],"locationId":2},{"id":4794,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4795],"locationId":4},{"id":4795,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4796],"locationId":1},{"id":4796,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4797],"locationId":2},{"id":4797,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4798],"locationId":4},{"id":4798,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4799],"locationId":1},{"id":4799,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4800],"locationId":2},{"id":4800,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4801],"locationId":4},{"id":4801,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4802],"locationId":1},{"id":4802,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4803],"locationId":2},{"id":4803,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4804],"locationId":4},{"id":4804,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4805],"locationId":1},{"id":4805,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4806],"locationId":2},{"id":4806,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4807],"locationId":4},{"id":4807,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4808],"locationId":1},{"id":4808,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4809],"locationId":2},{"id":4809,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4810],"locationId":4},{"id":4810,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4811],"locationId":1},{"id":4811,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4812],"locationId":2},{"id":4812,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4813],"locationId":4},{"id":4813,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4814],"locationId":1},{"id":4814,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4815],"locationId":2},{"id":4815,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4816],"locationId":4},{"id":4816,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4817],"locationId":1},{"id":4817,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4818],"locationId":2},{"id":4818,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4819],"locationId":4},{"id":4819,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4820],"locationId":1},{"id":4820,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4821],"locationId":2},{"id":4821,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4822],"locationId":4},{"id":4822,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4823],"locationId":1},{"id":4823,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4824],"locationId":2},{"id":4824,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4825],"locationId":4},{"id":4825,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4826],"locationId":1},{"id":4826,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4827],"locationId":2},{"id":4827,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4828],"locationId":4},{"id":4828,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4829],"locationId":1},{"id":4829,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4830],"locationId":2},{"id":4830,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4831],"locationId":4},{"id":4831,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4832],"locationId":1},{"id":4832,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4833],"locationId":2},{"id":4833,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4834],"locationId":4},{"id":4834,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4835],"locationId":1},{"id":4835,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4836],"locationId":2},{"id":4836,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4837],"locationId":4},{"id":4837,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4838],"locationId":1},{"id":4838,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4839],"locationId":2},{"id":4839,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4840],"locationId":4},{"id":4840,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4841],"locationId":1},{"id":4841,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4842],"locationId":2},{"id":4842,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4843],"locationId":4},{"id":4843,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4844],"locationId":1},{"id":4844,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4845],"locationId":2},{"id":4845,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4846],"locationId":4},{"id":4846,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4847],"locationId":1},{"id":4847,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4848],"locationId":2},{"id":4848,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4849],"locationId":4},{"id":4849,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4850],"locationId":1},{"id":4850,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4851],"locationId":2},{"id":4851,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4852],"locationId":4},{"id":4852,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4853],"locationId":1},{"id":4853,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4854],"locationId":2},{"id":4854,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4855],"locationId":4},{"id":4855,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4856],"locationId":1},{"id":4856,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4857],"locationId":2},{"id":4857,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4858],"locationId":4},{"id":4858,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4859],"locationId":1},{"id":4859,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4860],"locationId":2},{"id":4860,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4861],"locationId":4},{"id":4861,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4862],"locationId":1},{"id":4862,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4863],"locationId":2},{"id":4863,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4864],"locationId":4},{"id":4864,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4865],"locationId":1},{"id":4865,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4866],"locationId":2},{"id":4866,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4867],"locationId":4},{"id":4867,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4868],"locationId":1},{"id":4868,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4869],"locationId":2},{"id":4869,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4870],"locationId":4},{"id":4870,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4871],"locationId":1},{"id":4871,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":4017,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4018],"locationId":4},{"id":4018,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4019],"locationId":1},{"id":4019,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4020],"locationId":2},{"id":4020,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4021],"locationId":4},{"id":4021,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4022],"locationId":1},{"id":4022,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4023],"locationId":2},{"id":4023,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4024],"locationId":4},{"id":4024,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4025],"locationId":1},{"id":4025,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4026],"locationId":2},{"id":4026,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4027],"locationId":4},{"id":4027,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4028],"locationId":1},{"id":4028,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4029],"locationId":2},{"id":4029,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4030],"locationId":4},{"id":4030,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4031],"locationId":1},{"id":4031,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4032],"locationId":2},{"id":4032,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4033],"locationId":4},{"id":4033,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4034],"locationId":1},{"id":4034,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4035],"locationId":2},{"id":4035,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4036],"locationId":4},{"id":4036,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4037],"locationId":1},{"id":4037,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4038],"locationId":2},{"id":4038,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4039],"locationId":4},{"id":4039,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4040],"locationId":1},{"id":4040,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4041],"locationId":2},{"id":4041,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4042],"locationId":4},{"id":4042,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4043],"locationId":1},{"id":4043,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4044],"locationId":2},{"id":4044,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4045],"locationId":4},{"id":4045,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4046],"locationId":1},{"id":4046,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4047],"locationId":2},{"id":4047,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4048],"locationId":4},{"id":4048,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4049],"locationId":1},{"id":4049,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4050],"locationId":2},{"id":4050,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4051],"locationId":4},{"id":4051,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4052],"locationId":1},{"id":4052,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4053],"locationId":2},{"id":4053,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4054],"locationId":4},{"id":4054,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4055],"locationId":1},{"id":4055,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4056],"locationId":2},{"id":4056,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4057],"locationId":4},{"id":4057,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4058],"locationId":1},{"id":4058,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4059],"locationId":2},{"id":4059,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4060],"locationId":4},{"id":4060,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4061],"locationId":1},{"id":4061,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4062],"locationId":2},{"id":4062,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4063],"locationId":4},{"id":4063,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4064],"locationId":1},{"id":4064,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4065],"locationId":2},{"id":4065,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4066],"locationId":4},{"id":4066,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4067],"locationId":1},{"id":4067,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4068],"locationId":2},{"id":4068,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4069],"locationId":4},{"id":4069,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4070],"locationId":1},{"id":4070,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4071],"locationId":2},{"id":4071,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4072],"locationId":4},{"id":4072,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4073],"locationId":1},{"id":4073,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4074],"locationId":2},{"id":4074,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4075],"locationId":4},{"id":4075,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4076],"locationId":1},{"id":4076,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4077],"locationId":2},{"id":4077,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4078],"locationId":4},{"id":4078,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4079],"locationId":1},{"id":4079,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4080],"locationId":2},{"id":4080,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4081],"locationId":4},{"id":4081,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4082],"locationId":1},{"id":4082,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4083],"locationId":2},{"id":4083,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4084],"locationId":4},{"id":4084,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4085],"locationId":1},{"id":4085,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4086],"locationId":2},{"id":4086,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4087],"locationId":4},{"id":4087,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4088],"locationId":1},{"id":4088,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4089],"locationId":2},{"id":4089,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4090],"locationId":4},{"id":4090,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4091],"locationId":1},{"id":4091,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4092],"locationId":2},{"id":4092,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4093],"locationId":4},{"id":4093,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4094],"locationId":1},{"id":4094,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4095],"locationId":2},{"id":4095,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4096],"locationId":4},{"id":4096,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4097],"locationId":1},{"id":4097,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4098],"locationId":2},{"id":4098,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4099],"locationId":4},{"id":4099,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4100],"locationId":1},{"id":4100,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4101],"locationId":2},{"id":4101,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4102],"locationId":4},{"id":4102,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4103],"locationId":1},{"id":4103,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4104],"locationId":2},{"id":4104,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4105],"locationId":4},{"id":4105,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4106],"locationId":1},{"id":4106,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4107],"locationId":2},{"id":4107,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4108],"locationId":4},{"id":4108,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4109],"locationId":1},{"id":4109,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4110],"locationId":2},{"id":4110,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4111],"locationId":4},{"id":4111,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4112],"locationId":1},{"id":4112,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4113],"locationId":2},{"id":4113,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4114],"locationId":4},{"id":4114,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4115],"locationId":1},{"id":4115,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4116],"locationId":2},{"id":4116,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4117],"locationId":4},{"id":4117,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4118],"locationId":1},{"id":4118,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4119],"locationId":2},{"id":4119,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4120],"locationId":4},{"id":4120,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4121],"locationId":1},{"id":4121,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4122],"locationId":2},{"id":4122,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4123],"locationId":4},{"id":4123,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4124],"locationId":1},{"id":4124,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4125],"locationId":2},{"id":4125,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4126],"locationId":4},{"id":4126,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4127],"locationId":1},{"id":4127,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4128],"locationId":2},{"id":4128,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4129],"locationId":4},{"id":4129,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4130],"locationId":1},{"id":4130,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4131],"locationId":2},{"id":4131,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4132],"locationId":4},{"id":4132,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4133],"locationId":1},{"id":4133,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4134],"locationId":2},{"id":4134,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4135],"locationId":4},{"id":4135,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4136],"locationId":1},{"id":4136,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4137],"locationId":2},{"id":4137,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4138],"locationId":4},{"id":4138,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4139],"locationId":1},{"id":4139,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4140],"locationId":2},{"id":4140,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4141],"locationId":4},{"id":4141,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4142],"locationId":1},{"id":4142,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4143],"locationId":2},{"id":4143,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4144],"locationId":4},{"id":4144,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4145],"locationId":1},{"id":4145,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4146],"locationId":2},{"id":4146,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4147],"locationId":4},{"id":4147,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4148],"locationId":1},{"id":4148,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4149],"locationId":2},{"id":4149,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4150],"locationId":4},{"id":4150,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4151],"locationId":1},{"id":4151,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4152],"locationId":2},{"id":4152,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4153],"locationId":4},{"id":4153,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4154],"locationId":1},{"id":4154,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4155],"locationId":2},{"id":4155,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4156],"locationId":4},{"id":4156,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4157],"locationId":1},{"id":4157,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4158],"locationId":2},{"id":4158,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4159],"locationId":4},{"id":4159,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4160],"locationId":1},{"id":4160,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4161],"locationId":2},{"id":4161,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4162],"locationId":4},{"id":4162,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4163],"locationId":1},{"id":4163,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4164],"locationId":2},{"id":4164,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4165],"locationId":4},{"id":4165,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4166],"locationId":1},{"id":4166,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4167],"locationId":2},{"id":4167,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4168],"locationId":4},{"id":4168,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4169],"locationId":1},{"id":4169,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4170],"locationId":2},{"id":4170,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4171],"locationId":4},{"id":4171,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4172],"locationId":1},{"id":4172,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4173],"locationId":2},{"id":4173,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4174],"locationId":4},{"id":4174,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4175],"locationId":1},{"id":4175,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4176],"locationId":2},{"id":4176,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4177],"locationId":4},{"id":4177,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4178],"locationId":1},{"id":4178,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4179],"locationId":2},{"id":4179,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4180],"locationId":4},{"id":4180,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4181],"locationId":1},{"id":4181,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4182],"locationId":2},{"id":4182,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4183],"locationId":4},{"id":4183,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4184],"locationId":1},{"id":4184,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4185],"locationId":2},{"id":4185,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4186],"locationId":4},{"id":4186,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4187],"locationId":1},{"id":4187,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4188],"locationId":2},{"id":4188,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4189],"locationId":4},{"id":4189,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4190],"locationId":1},{"id":4190,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4191],"locationId":2},{"id":4191,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4192],"locationId":4},{"id":4192,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4193],"locationId":1},{"id":4193,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":261,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[262],"locationId":2},{"id":262,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[263,19051,27363],"locationId":3},{"id":263,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[264],"locationId":4},{"id":264,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[265],"locationId":1},{"id":265,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[266],"locationId":2},{"id":266,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[267],"locationId":3},{"id":267,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[268],"locationId":4},{"id":268,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[269],"locationId":1},{"id":269,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[270],"locationId":2},{"id":270,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[271],"locationId":3},{"id":271,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[272],"locationId":4},{"id":272,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[273],"locationId":1},{"id":273,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[274],"locationId":2},{"id":274,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[275],"locationId":3},{"id":275,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[276],"locationId":4},{"id":276,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[277],"locationId":1},{"id":277,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[278],"locationId":2},{"id":278,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[279],"locationId":3},{"id":279,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[280],"locationId":4},{"id":280,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[281],"locationId":1},{"id":281,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[282],"locationId":2},{"id":282,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[283],"locationId":3},{"id":283,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[284],"locationId":4},{"id":284,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[285],"locationId":1},{"id":285,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[286],"locationId":2},{"id":286,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[287],"locationId":3},{"id":287,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[288],"locationId":4},{"id":288,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[289],"locationId":1},{"id":289,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[290],"locationId":2},{"id":290,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[291],"locationId":3},{"id":291,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[292],"locationId":4},{"id":292,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[293],"locationId":1},{"id":293,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[294],"locationId":2},{"id":294,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[295],"locationId":3},{"id":295,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[296],"locationId":4},{"id":296,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[297],"locationId":1},{"id":297,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[298],"locationId":2},{"id":298,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[299],"locationId":3},{"id":299,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[300],"locationId":4},{"id":300,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[301],"locationId":1},{"id":301,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[302],"locationId":2},{"id":302,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[303],"locationId":3},{"id":303,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[304],"locationId":4},{"id":304,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[305],"locationId":1},{"id":305,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[306],"locationId":2},{"id":306,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[307],"locationId":3},{"id":307,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[308],"locationId":4},{"id":308,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[309],"locationId":1},{"id":309,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[310],"locationId":2},{"id":310,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[311],"locationId":3},{"id":311,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[312],"locationId":4},{"id":312,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[313],"locationId":1},{"id":313,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[314],"locationId":2},{"id":314,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[315],"locationId":3},{"id":315,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[316],"locationId":4},{"id":316,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[317],"locationId":1},{"id":317,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[318],"locationId":2},{"id":318,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[319],"locationId":3},{"id":319,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[320],"locationId":4},{"id":320,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[321],"locationId":1},{"id":321,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[322],"locationId":2},{"id":322,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[323],"locationId":3},{"id":323,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[324],"locationId":4},{"id":324,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[325],"locationId":1},{"id":325,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[326],"locationId":2},{"id":326,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[327],"locationId":3},{"id":327,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[328],"locationId":4},{"id":328,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[329],"locationId":1},{"id":329,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[330],"locationId":2},{"id":330,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[331],"locationId":3},{"id":331,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[332],"locationId":4},{"id":332,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[333],"locationId":1},{"id":333,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[334],"locationId":2},{"id":334,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[335],"locationId":3},{"id":335,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[336],"locationId":4},{"id":336,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[337],"locationId":1},{"id":337,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[338],"locationId":2},{"id":338,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[339],"locationId":3},{"id":339,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[340],"locationId":4},{"id":340,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[341],"locationId":1},{"id":341,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[342,4194],"locationId":2},{"id":342,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[343],"locationId":3},{"id":343,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[344],"locationId":4},{"id":344,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[345],"locationId":1},{"id":345,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[346],"locationId":2},{"id":346,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[347],"locationId":3},{"id":347,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[348],"locationId":4},{"id":348,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[349],"locationId":1},{"id":349,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[350],"locationId":2},{"id":350,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[351],"locationId":3},{"id":351,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[352],"locationId":4},{"id":352,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[353],"locationId":1},{"id":353,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[354,4872],"locationId":2},{"id":354,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[355],"locationId":3},{"id":355,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[356],"locationId":4},{"id":356,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[357],"locationId":1},{"id":357,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[358],"locationId":2},{"id":358,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[359],"locationId":3},{"id":359,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[360],"locationId":4},{"id":360,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[361],"locationId":1},{"id":361,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[362],"locationId":2},{"id":362,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[363],"locationId":3},{"id":363,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[364],"locationId":4},{"id":364,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[365],"locationId":1},{"id":365,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[366,5502],"locationId":2},{"id":366,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[367],"locationId":3},{"id":367,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[368],"locationId":4},{"id":368,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[369],"locationId":1},{"id":369,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[370],"locationId":2},{"id":370,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[371],"locationId":3},{"id":371,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[372],"locationId":4},{"id":372,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[373],"locationId":1},{"id":373,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[374],"locationId":2},{"id":374,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[375],"locationId":3},{"id":375,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[376],"locationId":4},{"id":376,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[377],"locationId":1},{"id":377,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[378,6084],"locationId":2},{"id":378,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[379],"locationId":3},{"id":379,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[380],"locationId":4},{"id":380,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[381],"locationId":1},{"id":381,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[382],"locationId":2},{"id":382,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[383],"locationId":3},{"id":383,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[384],"locationId":4},{"id":384,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[385],"locationId":1},{"id":385,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[386],"locationId":2},{"id":386,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[387],"locationId":3},{"id":387,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[388],"locationId":4},{"id":388,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[389],"locationId":1},{"id":389,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[390,6754],"locationId":2},{"id":390,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[391],"locationId":3},{"id":391,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[392],"locationId":4},{"id":392,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[393],"locationId":1},{"id":393,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[394],"locationId":2},{"id":394,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[395],"locationId":3},{"id":395,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[396],"locationId":4},{"id":396,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[397],"locationId":1},{"id":397,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[398],"locationId":2},{"id":398,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[399],"locationId":3},{"id":399,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[400],"locationId":4},{"id":400,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[401],"locationId":1},{"id":401,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[402,7240],"locationId":2},{"id":402,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[403],"locationId":3},{"id":403,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[404],"locationId":4},{"id":404,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[405],"locationId":1},{"id":405,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[406],"locationId":2},{"id":406,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[407],"locationId":3},{"id":407,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[408],"locationId":4},{"id":408,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[409],"locationId":1},{"id":409,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[410],"locationId":2},{"id":410,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[411],"locationId":3},{"id":411,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[412],"locationId":4},{"id":412,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[413],"locationId":1},{"id":413,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[414,7678],"locationId":2},{"id":414,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[415],"locationId":3},{"id":415,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[416],"locationId":4},{"id":416,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[417],"locationId":1},{"id":417,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[418],"locationId":2},{"id":418,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[419],"locationId":3},{"id":419,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[420],"locationId":4},{"id":420,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[421],"locationId":1},{"id":421,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[422],"locationId":2},{"id":422,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[423],"locationId":3},{"id":423,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[424],"locationId":4},{"id":424,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[425],"locationId":1},{"id":425,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[426,8068],"locationId":2},{"id":426,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[427],"locationId":3},{"id":427,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[428],"locationId":4},{"id":428,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[429],"locationId":1},{"id":429,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[430],"locationId":2},{"id":430,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[431],"locationId":3},{"id":431,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[432],"locationId":4},{"id":432,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[433],"locationId":1},{"id":433,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[434],"locationId":2},{"id":434,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[435],"locationId":3},{"id":435,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[436],"locationId":4},{"id":436,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[437],"locationId":1},{"id":437,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[438,8410],"locationId":2},{"id":438,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[439],"locationId":3},{"id":439,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[440],"locationId":4},{"id":440,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[441],"locationId":1},{"id":441,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[442],"locationId":2},{"id":442,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[443],"locationId":3},{"id":443,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[444],"locationId":4},{"id":444,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[445],"locationId":1},{"id":445,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[446],"locationId":2},{"id":446,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[447],"locationId":3},{"id":447,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[448],"locationId":4},{"id":448,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[449],"locationId":1},{"id":449,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[450,8704],"locationId":2},{"id":450,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[451],"locationId":3},{"id":451,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[452],"locationId":4},{"id":452,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[453],"locationId":1},{"id":453,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[454],"locationId":2},{"id":454,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[455],"locationId":3},{"id":455,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[456],"locationId":4},{"id":456,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[457],"locationId":1},{"id":457,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[458],"locationId":2},{"id":458,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[459],"locationId":3},{"id":459,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[460],"locationId":4},{"id":460,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[461],"locationId":1},{"id":461,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[462,8950],"locationId":2},{"id":462,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[463],"locationId":3},{"id":463,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[464],"locationId":4},{"id":464,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[465],"locationId":1},{"id":465,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[466],"locationId":2},{"id":466,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[467],"locationId":3},{"id":467,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[468],"locationId":4},{"id":468,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[469],"locationId":1},{"id":469,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[470,13861],"locationId":2},{"id":470,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[471],"locationId":3},{"id":471,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[472],"locationId":4},{"id":472,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[473],"locationId":1},{"id":473,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[474,9148],"locationId":2},{"id":474,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[475],"locationId":3},{"id":475,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[476],"locationId":4},{"id":476,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[477],"locationId":1},{"id":477,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[478],"locationId":2},{"id":478,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[479],"locationId":3},{"id":479,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[480],"locationId":4},{"id":480,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[481],"locationId":1},{"id":481,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[482,13959],"locationId":2},{"id":482,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[483],"locationId":3},{"id":483,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[484],"locationId":4},{"id":484,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[485],"locationId":1},{"id":485,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[486,9298,14220],"locationId":2},{"id":486,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[487],"locationId":3},{"id":487,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[488],"locationId":4},{"id":488,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[489],"locationId":1},{"id":489,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[490],"locationId":2},{"id":490,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[491],"locationId":3},{"id":491,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[492],"locationId":4},{"id":492,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[493],"locationId":1},{"id":493,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[494,13712],"locationId":2},{"id":494,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[495],"locationId":3},{"id":495,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[496],"locationId":4},{"id":496,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[497],"locationId":1},{"id":497,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[498,9400,13172],"locationId":2},{"id":498,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[499],"locationId":3},{"id":499,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[500],"locationId":4},{"id":500,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[501],"locationId":1},{"id":501,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[502,1125],"locationId":2},{"id":502,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[503],"locationId":3},{"id":503,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[504],"locationId":4},{"id":504,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[505],"locationId":1},{"id":505,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[506,1243],"locationId":2},{"id":506,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[507],"locationId":5},{"id":507,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[508],"locationId":6},{"id":508,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[509],"locationId":7},{"id":509,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[510],"locationId":6},{"id":510,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[511,14002],"locationId":8},{"id":511,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[512],"locationId":9},{"id":512,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[513],"locationId":6},{"id":513,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[514,1106,14010],"locationId":10},{"id":514,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[515],"locationId":84},{"id":515,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[516],"locationId":6},{"id":516,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[517],"locationId":85},{"id":517,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[518],"locationId":86},{"id":518,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[519],"locationId":87},{"id":519,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[520],"locationId":88},{"id":520,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[521],"locationId":74},{"id":521,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[522,1046],"locationId":89},{"id":522,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":52,"children":[523,1114,1325,13134,13153,14025,14284],"positionTicks":[{"line":82,"ticks":17,"startLocationId":91,"endLocationId":92},{"line":83,"ticks":30,"startLocationId":92,"endLocationId":95},{"line":77,"ticks":5,"startLocationId":94,"endLocationId":96}],"locationId":90},{"id":523,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":51,"children":[13409],"positionTicks":[{"line":48,"ticks":40,"startLocationId":98,"endLocationId":99},{"line":47,"ticks":11,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":13409,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":17,"positionTicks":[{"line":48,"ticks":15,"startLocationId":98,"endLocationId":99},{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":1114,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1115],"locationId":40},{"id":1115,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":24,"children":[1116],"positionTicks":[{"line":13,"ticks":23,"startLocationId":41,"endLocationId":42},{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":1116,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":24,"positionTicks":[{"line":26,"ticks":24,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1325,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1326,13132],"locationId":109},{"id":1326,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":32,"children":[1327,13857],"positionTicks":[{"line":27,"ticks":32,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1327,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[1328],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116},{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":1328,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1329],"locationId":114},{"id":1329,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13857,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13132,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":17,"children":[13917,14410],"positionTicks":[{"line":29,"ticks":17,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13917,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246},{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14410,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":13134,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[13135],"locationId":117},{"id":13135,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":10,"children":[13136,13584],"positionTicks":[{"line":108,"ticks":6,"startLocationId":294,"endLocationId":295},{"line":110,"ticks":4,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":13136,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[13137],"locationId":123},{"id":13137,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13138,14195],"locationId":29},{"id":13138,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":114,"positionTicks":[{"line":26,"ticks":114,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14195,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":220,"columnNumber":46},"hitCount":0,"children":[14196],"locationId":296},{"id":14196,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14197],"locationId":13},{"id":14197,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[14198],"locationId":68},{"id":14198,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":13584,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":11,"positionTicks":[{"line":791,"ticks":11,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":13153,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[13154,14152],"locationId":102},{"id":13154,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":4,"children":[13155],"positionTicks":[{"line":399,"ticks":4,"startLocationId":297,"endLocationId":298}],"locationId":217},{"id":13155,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":13,"positionTicks":[{"line":483,"ticks":8,"startLocationId":299,"endLocationId":300},{"line":466,"ticks":4,"startLocationId":301,"endLocationId":302},{"line":470,"ticks":1,"startLocationId":303,"endLocationId":219}],"locationId":218},{"id":14152,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[14179],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":14179,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14025,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":2,"children":[14151],"positionTicks":[{"line":13,"ticks":2,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":14151,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14284,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[14285],"locationId":239},{"id":14285,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":2,"positionTicks":[{"line":9,"ticks":2,"startLocationId":241,"endLocationId":242}],"locationId":240},{"id":1046,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":19,"children":[13548],"positionTicks":[{"line":185,"ticks":5,"startLocationId":304,"endLocationId":305},{"line":209,"ticks":3,"startLocationId":138,"endLocationId":139},{"line":181,"ticks":4,"startLocationId":134,"endLocationId":135},{"line":195,"ticks":1,"startLocationId":132,"endLocationId":133},{"line":187,"ticks":3,"startLocationId":306,"endLocationId":307},{"line":203,"ticks":3,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":13548,"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"hitCount":2,"children":[13800],"positionTicks":[{"line":269,"ticks":2,"startLocationId":309,"endLocationId":310}],"locationId":308},{"id":13800,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":4,"positionTicks":[{"line":269,"ticks":4,"startLocationId":311,"endLocationId":312}],"locationId":69},{"id":1106,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1107],"locationId":11},{"id":1107,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1108,13655],"locationId":12},{"id":1108,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1109],"locationId":13},{"id":1109,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1110,1175,13203,13401,13606],"locationId":14},{"id":1110,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":11,"children":[1111],"positionTicks":[{"line":784,"ticks":9,"startLocationId":20,"endLocationId":21},{"line":764,"ticks":2,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":1111,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":15,"children":[1112],"positionTicks":[{"line":338,"ticks":15,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":1112,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":48,"positionTicks":[{"line":338,"ticks":48,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":1175,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":14,"children":[12831],"positionTicks":[{"line":648,"ticks":6,"startLocationId":38,"endLocationId":39},{"line":647,"ticks":4,"startLocationId":37,"endLocationId":38},{"line":636,"ticks":3,"startLocationId":222,"endLocationId":223},{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222}],"locationId":36},{"id":12831,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[12832],"locationId":40},{"id":12832,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[12833],"locationId":29},{"id":12833,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":33,"positionTicks":[{"line":26,"ticks":33,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":13203,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":7,"children":[13204],"positionTicks":[{"line":664,"ticks":2,"startLocationId":313,"endLocationId":314},{"line":667,"ticks":5,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":13204,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[13205],"locationId":54},{"id":13205,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[13206],"locationId":55},{"id":13206,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"children":[13207,13217],"positionTicks":[{"line":78,"ticks":1,"startLocationId":315,"endLocationId":316}],"locationId":56},{"id":13207,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":3,"positionTicks":[{"line":791,"ticks":3,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":13217,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[13218],"locationId":28},{"id":13218,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13219],"locationId":29},{"id":13219,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":11,"positionTicks":[{"line":26,"ticks":11,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":13401,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":19,"positionTicks":[{"line":726,"ticks":18,"startLocationId":34,"endLocationId":35},{"line":744,"ticks":1,"startLocationId":317,"endLocationId":318}],"locationId":33},{"id":13606,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[13607],"locationId":64},{"id":13607,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":2,"children":[13608],"positionTicks":[{"line":370,"ticks":2,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":13608,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":17,"positionTicks":[{"line":370,"ticks":17,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":13655,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":1,"children":[13656],"positionTicks":[{"line":887,"ticks":1,"startLocationId":319,"endLocationId":320}],"locationId":72},{"id":13656,"callFrame":{"functionName":"getFileByRelativePath","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":894,"columnNumber":25},"hitCount":2,"children":[14343],"positionTicks":[{"line":901,"ticks":2,"startLocationId":322,"endLocationId":323}],"locationId":321},{"id":14343,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[14344],"locationId":164},{"id":14344,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14345],"locationId":29},{"id":14345,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14010,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[14011],"locationId":151},{"id":14011,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[14012],"locationId":152},{"id":14012,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14013],"locationId":74},{"id":14013,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":438,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":441,"ticks":1,"startLocationId":325,"endLocationId":326}],"locationId":324},{"id":14002,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[14003],"locationId":157},{"id":14003,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[14004],"locationId":164},{"id":14004,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14005],"locationId":29},{"id":14005,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[14006],"locationId":165},{"id":14006,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[14007],"locationId":166},{"id":14007,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14008],"locationId":29},{"id":14008,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[14009,14338,14406],"locationId":167},{"id":14009,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":2,"positionTicks":[{"line":403,"ticks":2,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":14338,"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":14,"columnNumber":26},"hitCount":0,"children":[14339],"locationId":180},{"id":14339,"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":252,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":256,"ticks":1,"startLocationId":182,"endLocationId":183}],"locationId":181},{"id":14406,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":69,"ticks":1,"startLocationId":327,"endLocationId":328}],"locationId":168},{"id":1243,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1244],"locationId":3},{"id":1244,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1245],"locationId":4},{"id":1245,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1246],"locationId":1},{"id":1246,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1247,1410,9454],"locationId":2},{"id":1247,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1248],"locationId":5},{"id":1248,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1249],"locationId":6},{"id":1249,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1250,13313,14415],"locationId":7},{"id":1250,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1251],"locationId":6},{"id":1251,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1252,1265],"locationId":8},{"id":1252,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1253],"locationId":9},{"id":1253,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1254],"locationId":6},{"id":1254,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":14,"children":[1255,1263,1295,1310,13578,13854,14342,14407,14430],"positionTicks":[{"line":550,"ticks":12,"startLocationId":259,"endLocationId":260},{"line":555,"ticks":1,"startLocationId":329,"endLocationId":330},{"line":560,"ticks":1,"startLocationId":331,"endLocationId":332}],"locationId":10},{"id":1255,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1256],"locationId":11},{"id":1256,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1257],"locationId":12},{"id":1257,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1258],"locationId":13},{"id":1258,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200},{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":1263,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":21,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209},{"line":346,"ticks":17,"startLocationId":333,"endLocationId":334},{"line":345,"ticks":1,"startLocationId":268,"endLocationId":333},{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150},{"line":350,"ticks":1,"startLocationId":335,"endLocationId":336}],"locationId":148},{"id":1295,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1310,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1311],"locationId":84},{"id":1311,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1312],"locationId":6},{"id":1312,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1313],"locationId":85},{"id":1313,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1314],"locationId":86},{"id":1314,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1315],"locationId":87},{"id":1315,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1316],"locationId":88},{"id":1316,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1317],"locationId":74},{"id":1317,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1318,1344],"locationId":89},{"id":1318,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[1319,1330,1339,1390],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":1319,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1330,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[1331],"locationId":117},{"id":1331,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[1332],"locationId":118},{"id":1332,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[1333],"locationId":123},{"id":1333,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1334],"locationId":29},{"id":1334,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1339,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1340],"locationId":40},{"id":1340,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":1390,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1391],"locationId":29},{"id":1391,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1344,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":13578,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[13579],"locationId":224},{"id":13579,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":13854,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":410,"ticks":1,"startLocationId":337,"endLocationId":338}],"locationId":13},{"id":14342,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":46,"ticks":1,"startLocationId":340,"endLocationId":341}],"locationId":339},{"id":14407,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[14408],"locationId":198},{"id":14408,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14409],"locationId":29},{"id":14409,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14430,"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":180,"ticks":1,"startLocationId":343,"endLocationId":344}],"locationId":342},{"id":1265,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[1266,14181],"locationId":157},{"id":1266,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[1267],"locationId":158},{"id":1267,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[1268],"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":1268,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":8,"children":[1269,13835],"positionTicks":[{"line":596,"ticks":8,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":1269,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":19,"children":[1270],"positionTicks":[{"line":95,"ticks":1,"startLocationId":348,"endLocationId":349},{"line":79,"ticks":4,"startLocationId":350,"endLocationId":351},{"line":93,"ticks":2,"startLocationId":352,"endLocationId":353},{"line":81,"ticks":6,"startLocationId":354,"endLocationId":355},{"line":94,"ticks":3,"startLocationId":353,"endLocationId":348},{"line":78,"ticks":1,"startLocationId":356,"endLocationId":350},{"line":84,"ticks":2,"startLocationId":357,"endLocationId":358}],"locationId":160},{"id":1270,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":13835,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[13836],"locationId":198},{"id":13836,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13837],"locationId":29},{"id":13837,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14181,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":359,"endLocationId":360}],"locationId":164},{"id":13313,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":3,"positionTicks":[{"line":500,"ticks":3,"startLocationId":361,"endLocationId":362}],"locationId":283},{"id":14415,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[14416],"locationId":196},{"id":14416,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[14417],"locationId":197},{"id":14417,"callFrame":{"functionName":"getOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":325,"columnNumber":15},"hitCount":0,"children":[14418],"locationId":363},{"id":14418,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[14419],"locationId":166},{"id":14419,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14420],"locationId":29},{"id":14420,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[14421],"locationId":167},{"id":14421,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":1410,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1411],"locationId":3},{"id":1411,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1412],"locationId":4},{"id":1412,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1413],"locationId":1},{"id":1413,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":1,"children":[1414,1534],"positionTicks":[{"line":19,"ticks":1,"startLocationId":364,"endLocationId":365}],"locationId":2},{"id":1414,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1415],"locationId":5},{"id":1415,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1416],"locationId":6},{"id":1416,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1417],"locationId":7},{"id":1417,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1418],"locationId":6},{"id":1418,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1419,1442],"locationId":8},{"id":1419,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[1420],"locationId":157},{"id":1420,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[1421],"locationId":158},{"id":1421,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1422],"locationId":29},{"id":1422,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[1423],"locationId":159},{"id":1423,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[1424],"locationId":160},{"id":1424,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":1442,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1443],"locationId":9},{"id":1443,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1444],"locationId":6},{"id":1444,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1445,1454,1488],"locationId":10},{"id":1445,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1446],"locationId":84},{"id":1446,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1447],"locationId":6},{"id":1447,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1448],"locationId":85},{"id":1448,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1449],"locationId":86},{"id":1449,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1450],"locationId":87},{"id":1450,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1451],"locationId":88},{"id":1451,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1452],"locationId":74},{"id":1452,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[1453],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":1453,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[1509,1510],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":13,"ticks":1,"startLocationId":366,"endLocationId":367}],"locationId":90},{"id":1509,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1510,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1511],"locationId":109},{"id":1511,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[1635,1725],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1635,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1636],"locationId":114},{"id":1636,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1637],"locationId":114},{"id":1637,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1725,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1726],"locationId":109},{"id":1726,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1727],"locationId":109},{"id":1727,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1728],"locationId":114},{"id":1728,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1729],"locationId":114},{"id":1729,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1454,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1455],"locationId":11},{"id":1455,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1456],"locationId":12},{"id":1456,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369}],"locationId":256},{"id":1488,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":1534,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1535],"locationId":3},{"id":1535,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1536],"locationId":4},{"id":1536,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1537],"locationId":1},{"id":1537,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1538,1746],"locationId":2},{"id":1538,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1539],"locationId":5},{"id":1539,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1540],"locationId":6},{"id":1540,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1541],"locationId":7},{"id":1541,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1542],"locationId":6},{"id":1542,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1543],"locationId":8},{"id":1543,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1544],"locationId":9},{"id":1544,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1545],"locationId":6},{"id":1545,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1546,1634,1658],"locationId":10},{"id":1546,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":1634,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1658,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1659],"locationId":84},{"id":1659,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1660],"locationId":6},{"id":1660,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1661],"locationId":85},{"id":1661,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1662],"locationId":86},{"id":1662,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1663],"locationId":87},{"id":1663,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1664],"locationId":88},{"id":1664,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1665],"locationId":74},{"id":1665,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1666],"locationId":89},{"id":1666,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1667,1689,1782],"locationId":90},{"id":1667,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[1668],"locationId":117},{"id":1668,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[1669],"locationId":118},{"id":1669,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[1670],"locationId":123},{"id":1670,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1671],"locationId":29},{"id":1671,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1689,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[1690],"locationId":239},{"id":1690,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":9,"ticks":1,"startLocationId":241,"endLocationId":242}],"locationId":240},{"id":1782,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1783],"locationId":109},{"id":1783,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1784,2076],"locationId":109},{"id":1784,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1785],"locationId":114},{"id":1785,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2076,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2077],"locationId":109},{"id":2077,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2078],"locationId":109},{"id":2078,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2079],"locationId":109},{"id":2079,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2080],"locationId":109},{"id":2080,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2081],"locationId":109},{"id":2081,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2082],"locationId":109},{"id":2082,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2083],"locationId":109},{"id":2083,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2084],"locationId":109},{"id":2084,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2085],"locationId":109},{"id":2085,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1746,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1747],"locationId":3},{"id":1747,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1748],"locationId":4},{"id":1748,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1749],"locationId":1},{"id":1749,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1750,1758],"locationId":2},{"id":1750,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1751],"locationId":3},{"id":1751,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1752],"locationId":4},{"id":1752,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1753],"locationId":1},{"id":1753,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1754,2013],"locationId":2},{"id":1754,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1755],"locationId":5},{"id":1755,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1756],"locationId":6},{"id":1756,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1757,1896],"locationId":7},{"id":1757,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":1896,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1897],"locationId":6},{"id":1897,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1898],"locationId":8},{"id":1898,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1899],"locationId":9},{"id":1899,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1900],"locationId":6},{"id":1900,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1901,1934],"locationId":10},{"id":1901,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1934,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1935],"locationId":84},{"id":1935,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1936],"locationId":6},{"id":1936,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1937],"locationId":85},{"id":1937,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1938],"locationId":86},{"id":1938,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1939],"locationId":87},{"id":1939,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1940],"locationId":88},{"id":1940,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1941],"locationId":74},{"id":1941,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[1942],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":1942,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[1980,1982],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":1980,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[1990],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1990,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1991],"locationId":109},{"id":1991,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[2284],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2284,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2285],"locationId":109},{"id":2285,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2286],"locationId":114},{"id":2286,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2287],"locationId":114},{"id":2287,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2288],"locationId":114},{"id":2288,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2289],"locationId":114},{"id":2289,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1982,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[1983],"locationId":117},{"id":1983,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[1984],"locationId":118},{"id":1984,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[1985],"locationId":123},{"id":1985,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1986],"locationId":29},{"id":1986,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2013,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2014],"locationId":3},{"id":2014,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2015],"locationId":4},{"id":2015,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2016],"locationId":1},{"id":2016,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2017,2207],"locationId":2},{"id":2017,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2018],"locationId":5},{"id":2018,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2019],"locationId":6},{"id":2019,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2020],"locationId":7},{"id":2020,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2021],"locationId":6},{"id":2021,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2022],"locationId":8},{"id":2022,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2023],"locationId":9},{"id":2023,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2024],"locationId":6},{"id":2024,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[2025,2050,2061,2132],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":2025,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":2050,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2061,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2062],"locationId":84},{"id":2062,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2063],"locationId":6},{"id":2063,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2064],"locationId":85},{"id":2064,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2065],"locationId":86},{"id":2065,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2066],"locationId":87},{"id":2066,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2067],"locationId":88},{"id":2067,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2068],"locationId":74},{"id":2068,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":3,"children":[2069,2104],"positionTicks":[{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2069,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":2104,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[2105,2113,2156],"locationId":90},{"id":2105,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2113,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2114],"locationId":117},{"id":2114,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2115,2162],"locationId":118},{"id":2115,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":2162,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2163],"locationId":123},{"id":2163,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2164],"locationId":29},{"id":2164,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2156,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2157],"locationId":109},{"id":2157,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[2467],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2467,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2468],"locationId":114},{"id":2468,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2469],"locationId":114},{"id":2469,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2470],"locationId":114},{"id":2470,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2471],"locationId":114},{"id":2471,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2472],"locationId":114},{"id":2472,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2473],"locationId":114},{"id":2473,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2474],"locationId":114},{"id":2474,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":2132,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2133],"locationId":11},{"id":2133,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2134,2145],"locationId":12},{"id":2134,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2135],"locationId":13},{"id":2135,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2136],"locationId":14},{"id":2136,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":2145,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[2146],"locationId":372},{"id":2146,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[2147],"locationId":373},{"id":2147,"callFrame":{"functionName":"verifyNewExpressions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":42,"columnNumber":24},"hitCount":0,"children":[2148],"locationId":374},{"id":2148,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2149],"locationId":13},{"id":2149,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":2207,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2208],"locationId":3},{"id":2208,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2209],"locationId":4},{"id":2209,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2210],"locationId":1},{"id":2210,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2211,2344],"locationId":2},{"id":2211,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2212],"locationId":5},{"id":2212,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2213],"locationId":6},{"id":2213,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2214],"locationId":7},{"id":2214,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2215],"locationId":6},{"id":2215,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2216],"locationId":8},{"id":2216,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2217],"locationId":9},{"id":2217,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2218],"locationId":6},{"id":2218,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[2219,2234,2307],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":2219,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":2234,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2235],"locationId":84},{"id":2235,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2236],"locationId":6},{"id":2236,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2237],"locationId":85},{"id":2237,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2238],"locationId":86},{"id":2238,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2239],"locationId":87},{"id":2239,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2240],"locationId":88},{"id":2240,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2241],"locationId":74},{"id":2241,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[2274],"positionTicks":[{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375},{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2274,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[2275,2290,2319,2332],"locationId":90},{"id":2275,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2276],"locationId":117},{"id":2276,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2277,2278],"locationId":118},{"id":2277,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":2278,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2279],"locationId":123},{"id":2279,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2280],"locationId":29},{"id":2280,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2290,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2291],"locationId":97},{"id":2291,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":2319,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2320],"locationId":109},{"id":2320,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2332,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2333],"locationId":40},{"id":2333,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":2307,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2308],"locationId":11},{"id":2308,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2309],"locationId":12},{"id":2309,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2310],"locationId":13},{"id":2310,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2311,2317,2342],"locationId":14},{"id":2311,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":2317,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[2318],"locationId":64},{"id":2318,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":2342,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":2344,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2345],"locationId":3},{"id":2345,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2346],"locationId":4},{"id":2346,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2347],"locationId":1},{"id":2347,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2348,2553],"locationId":2},{"id":2348,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2349],"locationId":5},{"id":2349,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2350],"locationId":6},{"id":2350,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2351],"locationId":7},{"id":2351,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2352],"locationId":6},{"id":2352,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2353],"locationId":8},{"id":2353,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2354],"locationId":9},{"id":2354,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2355],"locationId":6},{"id":2355,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2356,2395,2396,2421],"locationId":10},{"id":2356,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2395,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":2396,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2397],"locationId":84},{"id":2397,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2398],"locationId":6},{"id":2398,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2399],"locationId":85},{"id":2399,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2400],"locationId":86},{"id":2400,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2401],"locationId":87},{"id":2401,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2402],"locationId":88},{"id":2402,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2403],"locationId":74},{"id":2403,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2404],"locationId":89},{"id":2404,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[2475,2517],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":2475,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2517,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2518],"locationId":40},{"id":2518,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2519],"locationId":29},{"id":2519,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2421,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2422],"locationId":11},{"id":2422,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2423],"locationId":12},{"id":2423,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2424],"locationId":13},{"id":2424,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":2553,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2554],"locationId":3},{"id":2554,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2555],"locationId":4},{"id":2555,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2556],"locationId":1},{"id":2556,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2557,2709],"locationId":2},{"id":2557,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2558],"locationId":5},{"id":2558,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2559],"locationId":6},{"id":2559,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2560],"locationId":7},{"id":2560,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2561],"locationId":6},{"id":2561,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2562,2579],"locationId":8},{"id":2562,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2563],"locationId":157},{"id":2563,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2564],"locationId":158},{"id":2564,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2565],"locationId":29},{"id":2565,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[2566],"locationId":159},{"id":2566,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[2567],"locationId":160},{"id":2567,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":2579,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2580],"locationId":9},{"id":2580,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2581],"locationId":6},{"id":2581,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2582,2594,2684],"locationId":10},{"id":2582,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2583],"locationId":11},{"id":2583,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2584],"locationId":12},{"id":2584,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2585],"locationId":13},{"id":2585,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[2615,2691,2694,2706],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":2615,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":662,"ticks":1,"startLocationId":376,"endLocationId":377}],"locationId":46},{"id":2691,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[2692],"locationId":64},{"id":2692,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[2693],"locationId":65},{"id":2693,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":2694,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[2695],"locationId":36},{"id":2695,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2696],"locationId":40},{"id":2696,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2697],"locationId":29},{"id":2697,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2706,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[2707],"locationId":15},{"id":2707,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[2708],"locationId":25},{"id":2708,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":2594,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2595],"locationId":84},{"id":2595,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2596],"locationId":6},{"id":2596,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2597],"locationId":85},{"id":2597,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2598],"locationId":86},{"id":2598,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2599],"locationId":87},{"id":2599,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2600],"locationId":88},{"id":2600,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2601],"locationId":74},{"id":2601,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[2646],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2646,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[2647,2722],"locationId":90},{"id":2647,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2722,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2723],"locationId":40},{"id":2723,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":2684,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2709,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2710],"locationId":3},{"id":2710,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2711],"locationId":4},{"id":2711,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2712],"locationId":1},{"id":2712,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2713,2860],"locationId":2},{"id":2713,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2714],"locationId":5},{"id":2714,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2715],"locationId":6},{"id":2715,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2716],"locationId":7},{"id":2716,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2717],"locationId":6},{"id":2717,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2718,2735],"locationId":8},{"id":2718,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2719],"locationId":157},{"id":2719,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2720],"locationId":158},{"id":2720,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2721],"locationId":29},{"id":2721,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":2735,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2736],"locationId":9},{"id":2736,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2737],"locationId":6},{"id":2737,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[2753,2767,2768,2777],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":2753,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2754],"locationId":11},{"id":2754,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2755,2759,2850],"locationId":12},{"id":2755,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2756],"locationId":13},{"id":2756,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2757],"locationId":14},{"id":2757,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":691,"ticks":1,"startLocationId":378,"endLocationId":192}],"locationId":64},{"id":2759,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":810,"ticks":1,"startLocationId":379,"endLocationId":380}],"locationId":256},{"id":2850,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[2851],"locationId":72},{"id":2851,"callFrame":{"functionName":"getFileByRelativePath","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":894,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":901,"ticks":1,"startLocationId":322,"endLocationId":323}],"locationId":321},{"id":2767,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2768,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2769],"locationId":84},{"id":2769,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2770],"locationId":6},{"id":2770,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2771],"locationId":85},{"id":2771,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2772],"locationId":86},{"id":2772,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2773],"locationId":87},{"id":2773,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2774],"locationId":88},{"id":2774,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2775],"locationId":74},{"id":2775,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2776],"locationId":89},{"id":2776,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2804,2852,2874],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":2804,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[2848,2859],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2848,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2849],"locationId":114},{"id":2849,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":2859,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[3048],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3048,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3049],"locationId":114},{"id":3049,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3050],"locationId":114},{"id":3050,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3051],"locationId":114},{"id":3051,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3052],"locationId":114},{"id":3052,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2852,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2853],"locationId":40},{"id":2853,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2854],"locationId":29},{"id":2854,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2874,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[2951],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":2951,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2952],"locationId":97},{"id":2952,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2953],"locationId":97},{"id":2953,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2777,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[2778],"locationId":151},{"id":2778,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[2779],"locationId":224},{"id":2779,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2780],"locationId":29},{"id":2780,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2860,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2861],"locationId":3},{"id":2861,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2862],"locationId":4},{"id":2862,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2863],"locationId":1},{"id":2863,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2864,3065],"locationId":2},{"id":2864,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2865],"locationId":5},{"id":2865,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2866],"locationId":6},{"id":2866,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2867],"locationId":7},{"id":2867,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2868],"locationId":6},{"id":2868,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2869,2932],"locationId":8},{"id":2869,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2870],"locationId":157},{"id":2870,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2871],"locationId":158},{"id":2871,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2872],"locationId":29},{"id":2872,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[2873],"locationId":159},{"id":2873,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":350,"endLocationId":351}],"locationId":160},{"id":2932,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2933],"locationId":9},{"id":2933,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2934],"locationId":6},{"id":2934,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2935,2968,2970],"locationId":10},{"id":2935,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2936],"locationId":84},{"id":2936,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2937],"locationId":6},{"id":2937,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2938],"locationId":85},{"id":2938,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2939],"locationId":86},{"id":2939,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2940],"locationId":87},{"id":2940,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2941],"locationId":88},{"id":2941,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2942],"locationId":74},{"id":2942,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[2944],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187},{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":2944,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[2967,2969,2984,3033],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":81,"ticks":1,"startLocationId":381,"endLocationId":91},{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383}],"locationId":90},{"id":2967,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[2990],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2990,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2969,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[3014],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3014,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":2984,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2985],"locationId":117},{"id":2985,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":3033,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3034],"locationId":40},{"id":3034,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3035],"locationId":29},{"id":3035,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2968,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2970,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2971],"locationId":11},{"id":2971,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2972],"locationId":12},{"id":2972,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2973],"locationId":13},{"id":2973,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2974,2986],"locationId":14},{"id":2974,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":2986,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[2987],"locationId":36},{"id":2987,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2988],"locationId":40},{"id":2988,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2989],"locationId":29},{"id":2989,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3065,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3066],"locationId":3},{"id":3066,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3067],"locationId":4},{"id":3067,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3068],"locationId":1},{"id":3068,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3069,3238],"locationId":2},{"id":3069,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3070],"locationId":5},{"id":3070,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3071],"locationId":6},{"id":3071,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3072],"locationId":7},{"id":3072,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3073],"locationId":6},{"id":3073,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3074],"locationId":8},{"id":3074,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3075],"locationId":9},{"id":3075,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3076],"locationId":6},{"id":3076,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3077,3099,3131],"locationId":10},{"id":3077,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3078],"locationId":84},{"id":3078,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3079],"locationId":6},{"id":3079,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3080],"locationId":85},{"id":3080,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3081],"locationId":86},{"id":3081,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3082],"locationId":87},{"id":3082,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3083],"locationId":88},{"id":3083,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3084],"locationId":74},{"id":3084,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3117],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3117,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[3136,3139,3154,3163],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":3136,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[3162],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3162,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[3312],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3312,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3313],"locationId":114},{"id":3313,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3314],"locationId":114},{"id":3314,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[3363],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3363,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3364],"locationId":114},{"id":3364,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3139,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3154,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[3155],"locationId":117},{"id":3155,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[3156],"locationId":118},{"id":3156,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[3157],"locationId":123},{"id":3157,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3158],"locationId":29},{"id":3158,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3163,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3164],"locationId":40},{"id":3164,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":3099,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3100],"locationId":11},{"id":3100,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3101],"locationId":12},{"id":3101,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3102],"locationId":13},{"id":3102,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3103,3159,3215],"locationId":14},{"id":3103,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":3159,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[3160],"locationId":15},{"id":3160,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[3161],"locationId":25},{"id":3161,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":3215,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":3131,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3238,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3239],"locationId":3},{"id":3239,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3240],"locationId":4},{"id":3240,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3241],"locationId":1},{"id":3241,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3242,3383],"locationId":2},{"id":3242,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3243],"locationId":5},{"id":3243,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3244],"locationId":6},{"id":3244,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3245],"locationId":7},{"id":3245,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3246],"locationId":6},{"id":3246,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3247],"locationId":8},{"id":3247,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3248],"locationId":9},{"id":3248,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3249],"locationId":6},{"id":3249,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[3250,3288,3300],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":3250,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":3288,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3289],"locationId":84},{"id":3289,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3290],"locationId":6},{"id":3290,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3291],"locationId":85},{"id":3291,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3292],"locationId":86},{"id":3292,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3293],"locationId":87},{"id":3293,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3294],"locationId":88},{"id":3294,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3295],"locationId":74},{"id":3295,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3296],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3296,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[3308,3366],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":3308,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"children":[3375],"positionTicks":[{"line":26,"ticks":1,"startLocationId":127,"endLocationId":128}],"locationId":40},{"id":3375,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[3376],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":3376,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3366,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3367,3368],"locationId":109},{"id":3367,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3368,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3300,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3301],"locationId":11},{"id":3301,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3302,3331],"locationId":12},{"id":3302,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":896,"ticks":1,"startLocationId":386,"endLocationId":387}],"locationId":72},{"id":3331,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3332],"locationId":13},{"id":3332,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3333],"locationId":14},{"id":3333,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[3334],"locationId":46},{"id":3334,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":3383,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3384],"locationId":3},{"id":3384,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3385],"locationId":4},{"id":3385,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3386],"locationId":1},{"id":3386,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3387,3537],"locationId":2},{"id":3387,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3388],"locationId":5},{"id":3388,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3389],"locationId":6},{"id":3389,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3390],"locationId":7},{"id":3390,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3391],"locationId":6},{"id":3391,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3392],"locationId":8},{"id":3392,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3393],"locationId":9},{"id":3393,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3394],"locationId":6},{"id":3394,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3395,3417],"locationId":10},{"id":3395,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3417,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3418],"locationId":84},{"id":3418,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3419],"locationId":6},{"id":3419,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3420],"locationId":85},{"id":3420,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3421],"locationId":86},{"id":3421,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3422],"locationId":87},{"id":3422,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3423],"locationId":88},{"id":3423,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3424],"locationId":74},{"id":3424,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[3425],"locationId":89},{"id":3425,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[3530,3550,3558],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":3530,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[3531],"locationId":117},{"id":3531,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[3532],"locationId":118},{"id":3532,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[3533],"locationId":123},{"id":3533,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3534],"locationId":29},{"id":3534,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3550,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3551],"locationId":40},{"id":3551,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3552],"locationId":29},{"id":3552,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3558,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3559],"locationId":109},{"id":3559,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3560],"locationId":109},{"id":3560,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3537,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3538],"locationId":3},{"id":3538,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3539],"locationId":4},{"id":3539,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3540],"locationId":1},{"id":3540,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3541,3743],"locationId":2},{"id":3541,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3542],"locationId":5},{"id":3542,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3543],"locationId":6},{"id":3543,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3544],"locationId":7},{"id":3544,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3545],"locationId":6},{"id":3545,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3546],"locationId":8},{"id":3546,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3547],"locationId":9},{"id":3547,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3548],"locationId":6},{"id":3548,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3549,3589,3598],"locationId":10},{"id":3549,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":3589,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3590],"locationId":84},{"id":3590,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3591],"locationId":6},{"id":3591,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3592],"locationId":85},{"id":3592,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3593],"locationId":86},{"id":3593,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3594],"locationId":87},{"id":3594,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3595],"locationId":88},{"id":3595,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3596],"locationId":74},{"id":3596,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3597],"positionTicks":[{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":3597,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":4,"children":[3627,3727],"positionTicks":[{"line":50,"ticks":1,"startLocationId":388,"endLocationId":389},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":3627,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3727,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3728],"locationId":40},{"id":3728,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3729],"locationId":29},{"id":3729,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3598,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3599],"locationId":11},{"id":3599,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3600,3606],"locationId":12},{"id":3600,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369}],"locationId":256},{"id":3606,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3607],"locationId":13},{"id":3607,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3608,3614],"locationId":14},{"id":3608,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[3702],"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":3702,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[3703],"locationId":25},{"id":3703,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":3614,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":390,"endLocationId":391}],"locationId":36},{"id":3743,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3744],"locationId":3},{"id":3744,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3745],"locationId":4},{"id":3745,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3746],"locationId":1},{"id":3746,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3747],"locationId":2},{"id":3747,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3748],"locationId":5},{"id":3748,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3749],"locationId":6},{"id":3749,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3750],"locationId":7},{"id":3750,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3751],"locationId":6},{"id":3751,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3752],"locationId":8},{"id":3752,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3753],"locationId":9},{"id":3753,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3754],"locationId":6},{"id":3754,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3755,3797,3816],"locationId":10},{"id":3755,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3756],"locationId":84},{"id":3756,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3757],"locationId":6},{"id":3757,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3758],"locationId":85},{"id":3758,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3759],"locationId":86},{"id":3759,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3760],"locationId":87},{"id":3760,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3761],"locationId":88},{"id":3761,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3762],"locationId":74},{"id":3762,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3763],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3763,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":113,"ticks":1,"startLocationId":392,"endLocationId":393}],"locationId":90},{"id":3797,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3798],"locationId":11},{"id":3798,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3799],"locationId":12},{"id":3799,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3800],"locationId":13},{"id":3800,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[3826],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":3826,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":3816,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":1758,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1759],"locationId":5},{"id":1759,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1760],"locationId":6},{"id":1760,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1761],"locationId":7},{"id":1761,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1762],"locationId":6},{"id":1762,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1763],"locationId":8},{"id":1763,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1764],"locationId":9},{"id":1764,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1765],"locationId":6},{"id":1765,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1766,1773],"locationId":10},{"id":1766,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1767],"locationId":11},{"id":1767,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1768],"locationId":12},{"id":1768,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1769],"locationId":13},{"id":1769,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1770,1830],"locationId":14},{"id":1770,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":177,"ticks":1,"startLocationId":394,"endLocationId":395}],"locationId":46},{"id":1830,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[1831],"locationId":36},{"id":1831,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1832],"locationId":40},{"id":1832,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1833],"locationId":29},{"id":1833,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1773,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1774],"locationId":84},{"id":1774,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1775],"locationId":6},{"id":1775,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1776],"locationId":85},{"id":1776,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1777],"locationId":86},{"id":1777,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1778],"locationId":87},{"id":1778,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1779],"locationId":88},{"id":1779,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1780],"locationId":74},{"id":1780,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[1843],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":1843,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1844,1863],"locationId":90},{"id":1844,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1863,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1864],"locationId":40},{"id":1864,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1865],"locationId":29},{"id":1865,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9454,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9455],"locationId":4},{"id":9455,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9456],"locationId":1},{"id":9456,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9457],"locationId":2},{"id":9457,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9458],"locationId":4},{"id":9458,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":1,"children":[9459],"positionTicks":[{"line":4,"ticks":1,"startLocationId":396,"endLocationId":397}],"locationId":1},{"id":9459,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":1125,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1126],"locationId":5},{"id":1126,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1127],"locationId":6},{"id":1127,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1128],"locationId":7},{"id":1128,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1129],"locationId":6},{"id":1129,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1130],"locationId":8},{"id":1130,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1131],"locationId":9},{"id":1131,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1132],"locationId":6},{"id":1132,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1133],"locationId":10},{"id":1133,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1134],"locationId":84},{"id":1134,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1135],"locationId":6},{"id":1135,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1136],"locationId":85},{"id":1136,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1137],"locationId":86},{"id":1137,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1138],"locationId":87},{"id":1138,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1139],"locationId":88},{"id":1139,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1140],"locationId":74},{"id":1140,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1141],"locationId":89},{"id":1141,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1142],"locationId":90},{"id":1142,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1143,13165],"locationId":109},{"id":1143,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1144],"locationId":114},{"id":1144,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1145],"locationId":114},{"id":1145,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1146],"locationId":114},{"id":1146,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1147],"locationId":114},{"id":1147,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"children":[13416,14024],"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13416,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":145,"ticks":2,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":14024,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13165,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13166,13574],"locationId":109},{"id":13166,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13167,14189],"locationId":109},{"id":13167,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13168,14014],"locationId":109},{"id":13168,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13169,13838],"locationId":109},{"id":13169,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":3,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13838,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14014,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14015],"locationId":114},{"id":14015,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[14267],"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14267,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14189,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14190],"locationId":114},{"id":14190,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14191],"locationId":114},{"id":14191,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"children":[14340],"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14340,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116},{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":13574,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13575],"locationId":114},{"id":13575,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13576],"locationId":114},{"id":13576,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13577],"locationId":114},{"id":13577,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":6,"children":[13585],"positionTicks":[{"line":29,"ticks":6,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13585,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9400,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9401],"locationId":4},{"id":9401,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9402],"locationId":1},{"id":9402,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9403],"locationId":2},{"id":9403,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9404],"locationId":4},{"id":9404,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9405],"locationId":1},{"id":9405,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9406],"locationId":2},{"id":9406,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9407],"locationId":4},{"id":9407,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9408],"locationId":1},{"id":9408,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9409],"locationId":2},{"id":9409,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9410],"locationId":4},{"id":9410,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9411],"locationId":1},{"id":9411,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9412],"locationId":2},{"id":9412,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9413],"locationId":4},{"id":9413,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9414],"locationId":1},{"id":9414,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9415],"locationId":2},{"id":9415,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9416],"locationId":4},{"id":9416,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9417],"locationId":1},{"id":9417,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":13172,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13173],"locationId":5},{"id":13173,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13174],"locationId":6},{"id":13174,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13175],"locationId":7},{"id":13175,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13176],"locationId":6},{"id":13176,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13177],"locationId":8},{"id":13177,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13178],"locationId":9},{"id":13178,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13179],"locationId":6},{"id":13179,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13180],"locationId":10},{"id":13180,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13181],"locationId":84},{"id":13181,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13182],"locationId":6},{"id":13182,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13183],"locationId":85},{"id":13183,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13184],"locationId":86},{"id":13184,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13185],"locationId":87},{"id":13185,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13186],"locationId":88},{"id":13186,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13187],"locationId":74},{"id":13187,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13188],"locationId":89},{"id":13188,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13189],"locationId":90},{"id":13189,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13190,13826],"locationId":109},{"id":13190,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13191,14136],"locationId":109},{"id":13191,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13192],"locationId":114},{"id":13192,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13193],"locationId":114},{"id":13193,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13194],"locationId":114},{"id":13194,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13195],"locationId":114},{"id":13195,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13196],"locationId":114},{"id":13196,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13197],"locationId":114},{"id":13197,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13198],"locationId":114},{"id":13198,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"children":[13843],"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13843,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":14136,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14137,14422],"locationId":109},{"id":14137,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14138,14144],"locationId":109},{"id":14138,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14139],"locationId":109},{"id":14139,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14140],"locationId":109},{"id":14140,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14141],"locationId":109},{"id":14141,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14142],"locationId":114},{"id":14142,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14143],"locationId":114},{"id":14143,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14144,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14145],"locationId":114},{"id":14145,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14146],"locationId":114},{"id":14146,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14147],"locationId":114},{"id":14147,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14148],"locationId":114},{"id":14148,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14149],"locationId":114},{"id":14149,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[14150,14215],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14150,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":14215,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14422,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14423],"locationId":114},{"id":14423,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14424],"locationId":114},{"id":14424,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14425],"locationId":114},{"id":14425,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14426],"locationId":114},{"id":14426,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14427],"locationId":114},{"id":14427,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14428],"locationId":114},{"id":14428,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14429],"locationId":114},{"id":14429,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13826,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13827],"locationId":114},{"id":13827,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13828],"locationId":114},{"id":13828,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13829],"locationId":114},{"id":13829,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13830],"locationId":114},{"id":13830,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13831],"locationId":114},{"id":13831,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13832],"locationId":114},{"id":13832,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13833],"locationId":114},{"id":13833,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13834],"locationId":114},{"id":13834,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13712,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13713],"locationId":5},{"id":13713,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13714],"locationId":6},{"id":13714,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13715],"locationId":7},{"id":13715,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13716],"locationId":6},{"id":13716,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13717],"locationId":8},{"id":13717,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13718],"locationId":9},{"id":13718,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13719],"locationId":6},{"id":13719,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13720],"locationId":10},{"id":13720,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13721],"locationId":84},{"id":13721,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13722],"locationId":6},{"id":13722,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13723],"locationId":85},{"id":13723,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13724],"locationId":86},{"id":13724,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13725],"locationId":87},{"id":13725,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13726],"locationId":88},{"id":13726,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13727],"locationId":74},{"id":13727,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13728],"locationId":89},{"id":13728,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13729],"locationId":90},{"id":13729,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13730],"locationId":109},{"id":13730,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13731,14199],"locationId":109},{"id":13731,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13732],"locationId":114},{"id":13732,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13733],"locationId":114},{"id":13733,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13734],"locationId":114},{"id":13734,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13735],"locationId":114},{"id":13735,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13736],"locationId":114},{"id":13736,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13737],"locationId":114},{"id":13737,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13738],"locationId":114},{"id":13738,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13739],"locationId":114},{"id":13739,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13740],"locationId":114},{"id":13740,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13741],"locationId":114},{"id":13741,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13742],"locationId":114},{"id":13742,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14199,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14200],"locationId":109},{"id":14200,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14201],"locationId":109},{"id":14201,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14202],"locationId":109},{"id":14202,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14203],"locationId":109},{"id":14203,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14204],"locationId":109},{"id":14204,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14205],"locationId":109},{"id":14205,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14206],"locationId":109},{"id":14206,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14207],"locationId":109},{"id":14207,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14208],"locationId":109},{"id":14208,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14209],"locationId":109},{"id":14209,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14210],"locationId":109},{"id":14210,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9298,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9299],"locationId":4},{"id":9299,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9300],"locationId":1},{"id":9300,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9301],"locationId":2},{"id":9301,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9302],"locationId":4},{"id":9302,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9303],"locationId":1},{"id":9303,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9304],"locationId":2},{"id":9304,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9305],"locationId":4},{"id":9305,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9306],"locationId":1},{"id":9306,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9307],"locationId":2},{"id":9307,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9308],"locationId":4},{"id":9308,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9309],"locationId":1},{"id":9309,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9310],"locationId":2},{"id":9310,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9311],"locationId":4},{"id":9311,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9312],"locationId":1},{"id":9312,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9313],"locationId":2},{"id":9313,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9314],"locationId":4},{"id":9314,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9315],"locationId":1},{"id":9315,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9316],"locationId":2},{"id":9316,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9317],"locationId":4},{"id":9317,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9318],"locationId":1},{"id":9318,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9319],"locationId":2},{"id":9319,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9320],"locationId":4},{"id":9320,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9321],"locationId":1},{"id":9321,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9322],"locationId":2},{"id":9322,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9323],"locationId":4},{"id":9323,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9324],"locationId":1},{"id":9324,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9325],"locationId":2},{"id":9325,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9326],"locationId":4},{"id":9326,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9327],"locationId":1},{"id":9327,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":14220,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14221],"locationId":5},{"id":14221,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14222],"locationId":6},{"id":14222,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14223],"locationId":7},{"id":14223,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14224],"locationId":6},{"id":14224,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14225],"locationId":8},{"id":14225,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14226],"locationId":9},{"id":14226,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14227],"locationId":6},{"id":14227,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14228],"locationId":10},{"id":14228,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14229],"locationId":84},{"id":14229,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14230],"locationId":6},{"id":14230,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14231],"locationId":85},{"id":14231,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14232],"locationId":86},{"id":14232,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14233],"locationId":87},{"id":14233,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14234],"locationId":88},{"id":14234,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14235],"locationId":74},{"id":14235,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14236],"locationId":89},{"id":14236,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[14237],"locationId":90},{"id":14237,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14238],"locationId":109},{"id":14238,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14239],"locationId":109},{"id":14239,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14240],"locationId":109},{"id":14240,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14241],"locationId":109},{"id":14241,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14242],"locationId":109},{"id":14242,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14243],"locationId":109},{"id":14243,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14244],"locationId":109},{"id":14244,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14245],"locationId":109},{"id":14245,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14246],"locationId":109},{"id":14246,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14247],"locationId":109},{"id":14247,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14248],"locationId":109},{"id":14248,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14249],"locationId":109},{"id":14249,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14250],"locationId":109},{"id":14250,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14251],"locationId":109},{"id":14251,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14252],"locationId":109},{"id":14252,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14253],"locationId":109},{"id":14253,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14254],"locationId":109},{"id":14254,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14255],"locationId":109},{"id":14255,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14256],"locationId":109},{"id":14256,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14257],"locationId":109},{"id":14257,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14258],"locationId":109},{"id":14258,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13959,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13960],"locationId":5},{"id":13960,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13961],"locationId":6},{"id":13961,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13962],"locationId":7},{"id":13962,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13963],"locationId":6},{"id":13963,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13964],"locationId":8},{"id":13964,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13965],"locationId":9},{"id":13965,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13966],"locationId":6},{"id":13966,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13967],"locationId":10},{"id":13967,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13968],"locationId":84},{"id":13968,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13969],"locationId":6},{"id":13969,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13970],"locationId":85},{"id":13970,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13971],"locationId":86},{"id":13971,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13972],"locationId":87},{"id":13972,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13973],"locationId":88},{"id":13973,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13974],"locationId":74},{"id":13974,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13975],"locationId":89},{"id":13975,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13976],"locationId":90},{"id":13976,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13977],"locationId":109},{"id":13977,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13978],"locationId":109},{"id":13978,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13979],"locationId":109},{"id":13979,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13980],"locationId":109},{"id":13980,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13981],"locationId":109},{"id":13981,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13982],"locationId":109},{"id":13982,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13983],"locationId":109},{"id":13983,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13984],"locationId":109},{"id":13984,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13985],"locationId":109},{"id":13985,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13986],"locationId":109},{"id":13986,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13987],"locationId":109},{"id":13987,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13988],"locationId":109},{"id":13988,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13989],"locationId":109},{"id":13989,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13990],"locationId":109},{"id":13990,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13991],"locationId":109},{"id":13991,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13992],"locationId":109},{"id":13992,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13993],"locationId":109},{"id":13993,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13994],"locationId":109},{"id":13994,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13995],"locationId":109},{"id":13995,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13996],"locationId":109},{"id":13996,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13997],"locationId":109},{"id":13997,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13998],"locationId":109},{"id":13998,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13999],"locationId":109},{"id":13999,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14000],"locationId":109},{"id":14000,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14001],"locationId":109},{"id":14001,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9148,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9149],"locationId":4},{"id":9149,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9150],"locationId":1},{"id":9150,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9151],"locationId":2},{"id":9151,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9152],"locationId":4},{"id":9152,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9153],"locationId":1},{"id":9153,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9154],"locationId":2},{"id":9154,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9155],"locationId":4},{"id":9155,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9156],"locationId":1},{"id":9156,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9157],"locationId":2},{"id":9157,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9158],"locationId":4},{"id":9158,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9159],"locationId":1},{"id":9159,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9160],"locationId":2},{"id":9160,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9161],"locationId":4},{"id":9161,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9162],"locationId":1},{"id":9162,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9163],"locationId":2},{"id":9163,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9164],"locationId":4},{"id":9164,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9165],"locationId":1},{"id":9165,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9166],"locationId":2},{"id":9166,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9167],"locationId":4},{"id":9167,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9168],"locationId":1},{"id":9168,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9169],"locationId":2},{"id":9169,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9170],"locationId":4},{"id":9170,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9171],"locationId":1},{"id":9171,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9172],"locationId":2},{"id":9172,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9173],"locationId":4},{"id":9173,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9174],"locationId":1},{"id":9174,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9175],"locationId":2},{"id":9175,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9176],"locationId":4},{"id":9176,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9177],"locationId":1},{"id":9177,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9178],"locationId":2},{"id":9178,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9179],"locationId":4},{"id":9179,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9180],"locationId":1},{"id":9180,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9181],"locationId":2},{"id":9181,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9182],"locationId":4},{"id":9182,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9183],"locationId":1},{"id":9183,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9184],"locationId":2},{"id":9184,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9185],"locationId":4},{"id":9185,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9186],"locationId":1},{"id":9186,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9187],"locationId":2},{"id":9187,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9188],"locationId":4},{"id":9188,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9189],"locationId":1},{"id":9189,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":13861,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13862],"locationId":5},{"id":13862,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13863],"locationId":6},{"id":13863,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13864],"locationId":7},{"id":13864,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13865],"locationId":6},{"id":13865,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13866],"locationId":8},{"id":13866,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13867],"locationId":9},{"id":13867,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13868],"locationId":6},{"id":13868,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13869],"locationId":10},{"id":13869,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13870],"locationId":84},{"id":13870,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13871],"locationId":6},{"id":13871,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13872],"locationId":85},{"id":13872,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13873],"locationId":86},{"id":13873,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13874],"locationId":87},{"id":13874,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13875],"locationId":88},{"id":13875,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13876],"locationId":74},{"id":13876,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13877],"locationId":89},{"id":13877,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13878],"locationId":90},{"id":13878,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13879],"locationId":109},{"id":13879,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13880],"locationId":109},{"id":13880,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13881],"locationId":109},{"id":13881,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13882],"locationId":109},{"id":13882,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13883],"locationId":109},{"id":13883,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13884],"locationId":109},{"id":13884,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13885],"locationId":109},{"id":13885,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13886],"locationId":109},{"id":13886,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13887],"locationId":109},{"id":13887,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13888],"locationId":109},{"id":13888,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13889],"locationId":109},{"id":13889,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13890],"locationId":109},{"id":13890,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13891],"locationId":109},{"id":13891,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13892],"locationId":109},{"id":13892,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13893],"locationId":109},{"id":13893,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13894],"locationId":109},{"id":13894,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13895],"locationId":109},{"id":13895,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13896],"locationId":109},{"id":13896,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13897],"locationId":109},{"id":13897,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13898],"locationId":109},{"id":13898,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13899],"locationId":109},{"id":13899,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13900],"locationId":109},{"id":13900,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13901],"locationId":109},{"id":13901,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13902],"locationId":109},{"id":13902,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13903],"locationId":109},{"id":13903,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13904],"locationId":109},{"id":13904,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13905],"locationId":109},{"id":13905,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13906],"locationId":109},{"id":13906,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13907],"locationId":109},{"id":13907,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13908],"locationId":109},{"id":13908,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13909],"locationId":109},{"id":13909,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13910],"locationId":109},{"id":13910,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13911],"locationId":109},{"id":13911,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13912],"locationId":109},{"id":13912,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13913],"locationId":109},{"id":13913,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13914],"locationId":109},{"id":13914,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13915],"locationId":109},{"id":13915,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":8950,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8951],"locationId":4},{"id":8951,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8952],"locationId":1},{"id":8952,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8953],"locationId":2},{"id":8953,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8954],"locationId":4},{"id":8954,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8955],"locationId":1},{"id":8955,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8956],"locationId":2},{"id":8956,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8957],"locationId":4},{"id":8957,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8958],"locationId":1},{"id":8958,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8959],"locationId":2},{"id":8959,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8960],"locationId":4},{"id":8960,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8961],"locationId":1},{"id":8961,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8962],"locationId":2},{"id":8962,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8963],"locationId":4},{"id":8963,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8964],"locationId":1},{"id":8964,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8965],"locationId":2},{"id":8965,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8966],"locationId":4},{"id":8966,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8967],"locationId":1},{"id":8967,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8968],"locationId":2},{"id":8968,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8969],"locationId":4},{"id":8969,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8970],"locationId":1},{"id":8970,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8971],"locationId":2},{"id":8971,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8972],"locationId":4},{"id":8972,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8973],"locationId":1},{"id":8973,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8974],"locationId":2},{"id":8974,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8975],"locationId":4},{"id":8975,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8976],"locationId":1},{"id":8976,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8977],"locationId":2},{"id":8977,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8978],"locationId":4},{"id":8978,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8979],"locationId":1},{"id":8979,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8980],"locationId":2},{"id":8980,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8981],"locationId":4},{"id":8981,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8982],"locationId":1},{"id":8982,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8983],"locationId":2},{"id":8983,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8984],"locationId":4},{"id":8984,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8985],"locationId":1},{"id":8985,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8986],"locationId":2},{"id":8986,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8987],"locationId":4},{"id":8987,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8988],"locationId":1},{"id":8988,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8989],"locationId":2},{"id":8989,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8990],"locationId":4},{"id":8990,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8991],"locationId":1},{"id":8991,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8992],"locationId":2},{"id":8992,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8993],"locationId":4},{"id":8993,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8994],"locationId":1},{"id":8994,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8995],"locationId":2},{"id":8995,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8996],"locationId":4},{"id":8996,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8997],"locationId":1},{"id":8997,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8998],"locationId":2},{"id":8998,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8999],"locationId":4},{"id":8999,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9000],"locationId":1},{"id":9000,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9001],"locationId":2},{"id":9001,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9002],"locationId":4},{"id":9002,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9003],"locationId":1},{"id":9003,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8704,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8705],"locationId":4},{"id":8705,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8706],"locationId":1},{"id":8706,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8707],"locationId":2},{"id":8707,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8708],"locationId":4},{"id":8708,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8709],"locationId":1},{"id":8709,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8710],"locationId":2},{"id":8710,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8711],"locationId":4},{"id":8711,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8712],"locationId":1},{"id":8712,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8713],"locationId":2},{"id":8713,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8714],"locationId":4},{"id":8714,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8715],"locationId":1},{"id":8715,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8716],"locationId":2},{"id":8716,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8717],"locationId":4},{"id":8717,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8718],"locationId":1},{"id":8718,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8719],"locationId":2},{"id":8719,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8720],"locationId":4},{"id":8720,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8721],"locationId":1},{"id":8721,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8722],"locationId":2},{"id":8722,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8723],"locationId":4},{"id":8723,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8724],"locationId":1},{"id":8724,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8725],"locationId":2},{"id":8725,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8726],"locationId":4},{"id":8726,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8727],"locationId":1},{"id":8727,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8728],"locationId":2},{"id":8728,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8729],"locationId":4},{"id":8729,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8730],"locationId":1},{"id":8730,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8731],"locationId":2},{"id":8731,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8732],"locationId":4},{"id":8732,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8733],"locationId":1},{"id":8733,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8734],"locationId":2},{"id":8734,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8735],"locationId":4},{"id":8735,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8736],"locationId":1},{"id":8736,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8737],"locationId":2},{"id":8737,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8738],"locationId":4},{"id":8738,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8739],"locationId":1},{"id":8739,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8740],"locationId":2},{"id":8740,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8741],"locationId":4},{"id":8741,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8742],"locationId":1},{"id":8742,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8743],"locationId":2},{"id":8743,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8744],"locationId":4},{"id":8744,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8745],"locationId":1},{"id":8745,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8746],"locationId":2},{"id":8746,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8747],"locationId":4},{"id":8747,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8748],"locationId":1},{"id":8748,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8749],"locationId":2},{"id":8749,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8750],"locationId":4},{"id":8750,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8751],"locationId":1},{"id":8751,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8752],"locationId":2},{"id":8752,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8753],"locationId":4},{"id":8753,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8754],"locationId":1},{"id":8754,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8755],"locationId":2},{"id":8755,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8756],"locationId":4},{"id":8756,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8757],"locationId":1},{"id":8757,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8758],"locationId":2},{"id":8758,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8759],"locationId":4},{"id":8759,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8760],"locationId":1},{"id":8760,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8761],"locationId":2},{"id":8761,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8762],"locationId":4},{"id":8762,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8763],"locationId":1},{"id":8763,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8764],"locationId":2},{"id":8764,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8765],"locationId":4},{"id":8765,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8766],"locationId":1},{"id":8766,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8767],"locationId":2},{"id":8767,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8768],"locationId":4},{"id":8768,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8769],"locationId":1},{"id":8769,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8410,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8411],"locationId":4},{"id":8411,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8412],"locationId":1},{"id":8412,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8413],"locationId":2},{"id":8413,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8414],"locationId":4},{"id":8414,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8415],"locationId":1},{"id":8415,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8416],"locationId":2},{"id":8416,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8417],"locationId":4},{"id":8417,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8418],"locationId":1},{"id":8418,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8419],"locationId":2},{"id":8419,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8420],"locationId":4},{"id":8420,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8421],"locationId":1},{"id":8421,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8422],"locationId":2},{"id":8422,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8423],"locationId":4},{"id":8423,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8424],"locationId":1},{"id":8424,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8425],"locationId":2},{"id":8425,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8426],"locationId":4},{"id":8426,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8427],"locationId":1},{"id":8427,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8428],"locationId":2},{"id":8428,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8429],"locationId":4},{"id":8429,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8430],"locationId":1},{"id":8430,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8431],"locationId":2},{"id":8431,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8432],"locationId":4},{"id":8432,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8433],"locationId":1},{"id":8433,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8434],"locationId":2},{"id":8434,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8435],"locationId":4},{"id":8435,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8436],"locationId":1},{"id":8436,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8437],"locationId":2},{"id":8437,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8438],"locationId":4},{"id":8438,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8439],"locationId":1},{"id":8439,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8440],"locationId":2},{"id":8440,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8441],"locationId":4},{"id":8441,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8442],"locationId":1},{"id":8442,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8443],"locationId":2},{"id":8443,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8444],"locationId":4},{"id":8444,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8445],"locationId":1},{"id":8445,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8446],"locationId":2},{"id":8446,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8447],"locationId":4},{"id":8447,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8448],"locationId":1},{"id":8448,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8449],"locationId":2},{"id":8449,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8450],"locationId":4},{"id":8450,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8451],"locationId":1},{"id":8451,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8452],"locationId":2},{"id":8452,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8453],"locationId":4},{"id":8453,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8454],"locationId":1},{"id":8454,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8455],"locationId":2},{"id":8455,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8456],"locationId":4},{"id":8456,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8457],"locationId":1},{"id":8457,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8458],"locationId":2},{"id":8458,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8459],"locationId":4},{"id":8459,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8460],"locationId":1},{"id":8460,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8461],"locationId":2},{"id":8461,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8462],"locationId":4},{"id":8462,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8463],"locationId":1},{"id":8463,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8464],"locationId":2},{"id":8464,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8465],"locationId":4},{"id":8465,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8466],"locationId":1},{"id":8466,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8467],"locationId":2},{"id":8467,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8468],"locationId":4},{"id":8468,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8469],"locationId":1},{"id":8469,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8470],"locationId":2},{"id":8470,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8471],"locationId":4},{"id":8471,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8472],"locationId":1},{"id":8472,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8473],"locationId":2},{"id":8473,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8474],"locationId":4},{"id":8474,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8475],"locationId":1},{"id":8475,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8476],"locationId":2},{"id":8476,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8477],"locationId":4},{"id":8477,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8478],"locationId":1},{"id":8478,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8479],"locationId":2},{"id":8479,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8480],"locationId":4},{"id":8480,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8481],"locationId":1},{"id":8481,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8482],"locationId":2},{"id":8482,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8483],"locationId":4},{"id":8483,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8484],"locationId":1},{"id":8484,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8485],"locationId":2},{"id":8485,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8486],"locationId":4},{"id":8486,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8487],"locationId":1},{"id":8487,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8068,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8069],"locationId":4},{"id":8069,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8070],"locationId":1},{"id":8070,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8071],"locationId":2},{"id":8071,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8072],"locationId":4},{"id":8072,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8073],"locationId":1},{"id":8073,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8074],"locationId":2},{"id":8074,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8075],"locationId":4},{"id":8075,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8076],"locationId":1},{"id":8076,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8077],"locationId":2},{"id":8077,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8078],"locationId":4},{"id":8078,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8079],"locationId":1},{"id":8079,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8080],"locationId":2},{"id":8080,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8081],"locationId":4},{"id":8081,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8082],"locationId":1},{"id":8082,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8083],"locationId":2},{"id":8083,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8084],"locationId":4},{"id":8084,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8085],"locationId":1},{"id":8085,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8086],"locationId":2},{"id":8086,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8087],"locationId":4},{"id":8087,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8088],"locationId":1},{"id":8088,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8089],"locationId":2},{"id":8089,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8090],"locationId":4},{"id":8090,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8091],"locationId":1},{"id":8091,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8092],"locationId":2},{"id":8092,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8093],"locationId":4},{"id":8093,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8094],"locationId":1},{"id":8094,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8095],"locationId":2},{"id":8095,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8096],"locationId":4},{"id":8096,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8097],"locationId":1},{"id":8097,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8098],"locationId":2},{"id":8098,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8099],"locationId":4},{"id":8099,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8100],"locationId":1},{"id":8100,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8101],"locationId":2},{"id":8101,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8102],"locationId":4},{"id":8102,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8103],"locationId":1},{"id":8103,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8104],"locationId":2},{"id":8104,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8105],"locationId":4},{"id":8105,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8106],"locationId":1},{"id":8106,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8107],"locationId":2},{"id":8107,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8108],"locationId":4},{"id":8108,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8109],"locationId":1},{"id":8109,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8110],"locationId":2},{"id":8110,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8111],"locationId":4},{"id":8111,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8112],"locationId":1},{"id":8112,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8113],"locationId":2},{"id":8113,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8114],"locationId":4},{"id":8114,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8115],"locationId":1},{"id":8115,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8116],"locationId":2},{"id":8116,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8117],"locationId":4},{"id":8117,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8118],"locationId":1},{"id":8118,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8119],"locationId":2},{"id":8119,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8120],"locationId":4},{"id":8120,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8121],"locationId":1},{"id":8121,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8122],"locationId":2},{"id":8122,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8123],"locationId":4},{"id":8123,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8124],"locationId":1},{"id":8124,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8125],"locationId":2},{"id":8125,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8126],"locationId":4},{"id":8126,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8127],"locationId":1},{"id":8127,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8128],"locationId":2},{"id":8128,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8129],"locationId":4},{"id":8129,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8130],"locationId":1},{"id":8130,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8131],"locationId":2},{"id":8131,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8132],"locationId":4},{"id":8132,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8133],"locationId":1},{"id":8133,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8134],"locationId":2},{"id":8134,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8135],"locationId":4},{"id":8135,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8136],"locationId":1},{"id":8136,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8137],"locationId":2},{"id":8137,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8138],"locationId":4},{"id":8138,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8139],"locationId":1},{"id":8139,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8140],"locationId":2},{"id":8140,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8141],"locationId":4},{"id":8141,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8142],"locationId":1},{"id":8142,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8143],"locationId":2},{"id":8143,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8144],"locationId":4},{"id":8144,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8145],"locationId":1},{"id":8145,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8146],"locationId":2},{"id":8146,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8147],"locationId":4},{"id":8147,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8148],"locationId":1},{"id":8148,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8149],"locationId":2},{"id":8149,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8150],"locationId":4},{"id":8150,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8151],"locationId":1},{"id":8151,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8152],"locationId":2},{"id":8152,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8153],"locationId":4},{"id":8153,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8154],"locationId":1},{"id":8154,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8155],"locationId":2},{"id":8155,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8156],"locationId":4},{"id":8156,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8157],"locationId":1},{"id":8157,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7678,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7679],"locationId":4},{"id":7679,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7680],"locationId":1},{"id":7680,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7681],"locationId":2},{"id":7681,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7682],"locationId":4},{"id":7682,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7683],"locationId":1},{"id":7683,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7684],"locationId":2},{"id":7684,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7685],"locationId":4},{"id":7685,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7686],"locationId":1},{"id":7686,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7687],"locationId":2},{"id":7687,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7688],"locationId":4},{"id":7688,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7689],"locationId":1},{"id":7689,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7690],"locationId":2},{"id":7690,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7691],"locationId":4},{"id":7691,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7692],"locationId":1},{"id":7692,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7693],"locationId":2},{"id":7693,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7694],"locationId":4},{"id":7694,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7695],"locationId":1},{"id":7695,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7696],"locationId":2},{"id":7696,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7697],"locationId":4},{"id":7697,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7698],"locationId":1},{"id":7698,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7699],"locationId":2},{"id":7699,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7700],"locationId":4},{"id":7700,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7701],"locationId":1},{"id":7701,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7702],"locationId":2},{"id":7702,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7703],"locationId":4},{"id":7703,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7704],"locationId":1},{"id":7704,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7705],"locationId":2},{"id":7705,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7706],"locationId":4},{"id":7706,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7707],"locationId":1},{"id":7707,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7708],"locationId":2},{"id":7708,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7709],"locationId":4},{"id":7709,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7710],"locationId":1},{"id":7710,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7711],"locationId":2},{"id":7711,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7712],"locationId":4},{"id":7712,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7713],"locationId":1},{"id":7713,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7714],"locationId":2},{"id":7714,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7715],"locationId":4},{"id":7715,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7716],"locationId":1},{"id":7716,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7717],"locationId":2},{"id":7717,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7718],"locationId":4},{"id":7718,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7719],"locationId":1},{"id":7719,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7720],"locationId":2},{"id":7720,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7721],"locationId":4},{"id":7721,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7722],"locationId":1},{"id":7722,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7723],"locationId":2},{"id":7723,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7724],"locationId":4},{"id":7724,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7725],"locationId":1},{"id":7725,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7726],"locationId":2},{"id":7726,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7727],"locationId":4},{"id":7727,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7728],"locationId":1},{"id":7728,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7729],"locationId":2},{"id":7729,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7730],"locationId":4},{"id":7730,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7731],"locationId":1},{"id":7731,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7732],"locationId":2},{"id":7732,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7733],"locationId":4},{"id":7733,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7734],"locationId":1},{"id":7734,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7735],"locationId":2},{"id":7735,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7736],"locationId":4},{"id":7736,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7737],"locationId":1},{"id":7737,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7738],"locationId":2},{"id":7738,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7739],"locationId":4},{"id":7739,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7740],"locationId":1},{"id":7740,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7741],"locationId":2},{"id":7741,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7742],"locationId":4},{"id":7742,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7743],"locationId":1},{"id":7743,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7744],"locationId":2},{"id":7744,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7745],"locationId":4},{"id":7745,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7746],"locationId":1},{"id":7746,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7747],"locationId":2},{"id":7747,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7748],"locationId":4},{"id":7748,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7749],"locationId":1},{"id":7749,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7750],"locationId":2},{"id":7750,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7751],"locationId":4},{"id":7751,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7752],"locationId":1},{"id":7752,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7753],"locationId":2},{"id":7753,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7754],"locationId":4},{"id":7754,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7755],"locationId":1},{"id":7755,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7756],"locationId":2},{"id":7756,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7757],"locationId":4},{"id":7757,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7758],"locationId":1},{"id":7758,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7759],"locationId":2},{"id":7759,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7760],"locationId":4},{"id":7760,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7761],"locationId":1},{"id":7761,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7762],"locationId":2},{"id":7762,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7763],"locationId":4},{"id":7763,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7764],"locationId":1},{"id":7764,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7765],"locationId":2},{"id":7765,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7766],"locationId":4},{"id":7766,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7767],"locationId":1},{"id":7767,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7768],"locationId":2},{"id":7768,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7769],"locationId":4},{"id":7769,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7770],"locationId":1},{"id":7770,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7771],"locationId":2},{"id":7771,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7772],"locationId":4},{"id":7772,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7773],"locationId":1},{"id":7773,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7774],"locationId":2},{"id":7774,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7775],"locationId":4},{"id":7775,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7776],"locationId":1},{"id":7776,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7777],"locationId":2},{"id":7777,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7778],"locationId":4},{"id":7778,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7779],"locationId":1},{"id":7779,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7240,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7241],"locationId":4},{"id":7241,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7242],"locationId":1},{"id":7242,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7243],"locationId":2},{"id":7243,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7244],"locationId":4},{"id":7244,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7245],"locationId":1},{"id":7245,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7246],"locationId":2},{"id":7246,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7247],"locationId":4},{"id":7247,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7248],"locationId":1},{"id":7248,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7249],"locationId":2},{"id":7249,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7250],"locationId":4},{"id":7250,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7251],"locationId":1},{"id":7251,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7252],"locationId":2},{"id":7252,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7253],"locationId":4},{"id":7253,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7254],"locationId":1},{"id":7254,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7255],"locationId":2},{"id":7255,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7256],"locationId":4},{"id":7256,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7257],"locationId":1},{"id":7257,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7258],"locationId":2},{"id":7258,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7259],"locationId":4},{"id":7259,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7260],"locationId":1},{"id":7260,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7261],"locationId":2},{"id":7261,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7262],"locationId":4},{"id":7262,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7263],"locationId":1},{"id":7263,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7264],"locationId":2},{"id":7264,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7265],"locationId":4},{"id":7265,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7266],"locationId":1},{"id":7266,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7267],"locationId":2},{"id":7267,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7268],"locationId":4},{"id":7268,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7269],"locationId":1},{"id":7269,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7270],"locationId":2},{"id":7270,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7271],"locationId":4},{"id":7271,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7272],"locationId":1},{"id":7272,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7273],"locationId":2},{"id":7273,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7274],"locationId":4},{"id":7274,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7275],"locationId":1},{"id":7275,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7276],"locationId":2},{"id":7276,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7277],"locationId":4},{"id":7277,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7278],"locationId":1},{"id":7278,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7279],"locationId":2},{"id":7279,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7280],"locationId":4},{"id":7280,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7281],"locationId":1},{"id":7281,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7282],"locationId":2},{"id":7282,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7283],"locationId":4},{"id":7283,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7284],"locationId":1},{"id":7284,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7285],"locationId":2},{"id":7285,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7286],"locationId":4},{"id":7286,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7287],"locationId":1},{"id":7287,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7288],"locationId":2},{"id":7288,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7289],"locationId":4},{"id":7289,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7290],"locationId":1},{"id":7290,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7291],"locationId":2},{"id":7291,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7292],"locationId":4},{"id":7292,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7293],"locationId":1},{"id":7293,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7294],"locationId":2},{"id":7294,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7295],"locationId":4},{"id":7295,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7296],"locationId":1},{"id":7296,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7297],"locationId":2},{"id":7297,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7298],"locationId":4},{"id":7298,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7299],"locationId":1},{"id":7299,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7300],"locationId":2},{"id":7300,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7301],"locationId":4},{"id":7301,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7302],"locationId":1},{"id":7302,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7303],"locationId":2},{"id":7303,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7304],"locationId":4},{"id":7304,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7305],"locationId":1},{"id":7305,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7306],"locationId":2},{"id":7306,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7307],"locationId":4},{"id":7307,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7308],"locationId":1},{"id":7308,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7309],"locationId":2},{"id":7309,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7310],"locationId":4},{"id":7310,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7311],"locationId":1},{"id":7311,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7312],"locationId":2},{"id":7312,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7313],"locationId":4},{"id":7313,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7314],"locationId":1},{"id":7314,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7315],"locationId":2},{"id":7315,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7316],"locationId":4},{"id":7316,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7317],"locationId":1},{"id":7317,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7318],"locationId":2},{"id":7318,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7319],"locationId":4},{"id":7319,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7320],"locationId":1},{"id":7320,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7321],"locationId":2},{"id":7321,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7322],"locationId":4},{"id":7322,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7323],"locationId":1},{"id":7323,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7324],"locationId":2},{"id":7324,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7325],"locationId":4},{"id":7325,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7326],"locationId":1},{"id":7326,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7327],"locationId":2},{"id":7327,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7328],"locationId":4},{"id":7328,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7329],"locationId":1},{"id":7329,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7330],"locationId":2},{"id":7330,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7331],"locationId":4},{"id":7331,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7332],"locationId":1},{"id":7332,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7333],"locationId":2},{"id":7333,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7334],"locationId":4},{"id":7334,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7335],"locationId":1},{"id":7335,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7336],"locationId":2},{"id":7336,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7337],"locationId":4},{"id":7337,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7338],"locationId":1},{"id":7338,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7339],"locationId":2},{"id":7339,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7340],"locationId":4},{"id":7340,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7341],"locationId":1},{"id":7341,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7342],"locationId":2},{"id":7342,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7343],"locationId":4},{"id":7343,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7344],"locationId":1},{"id":7344,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7345],"locationId":2},{"id":7345,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7346],"locationId":4},{"id":7346,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7347],"locationId":1},{"id":7347,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7348],"locationId":2},{"id":7348,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7349],"locationId":4},{"id":7349,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7350],"locationId":1},{"id":7350,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7351],"locationId":2},{"id":7351,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7352],"locationId":4},{"id":7352,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7353],"locationId":1},{"id":7353,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":6754,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6755],"locationId":4},{"id":6755,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6756],"locationId":1},{"id":6756,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6757],"locationId":2},{"id":6757,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6758],"locationId":4},{"id":6758,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6759],"locationId":1},{"id":6759,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6760],"locationId":2},{"id":6760,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6761],"locationId":4},{"id":6761,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6762],"locationId":1},{"id":6762,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6763],"locationId":2},{"id":6763,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6764],"locationId":4},{"id":6764,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6765],"locationId":1},{"id":6765,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6766],"locationId":2},{"id":6766,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6767],"locationId":4},{"id":6767,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6768],"locationId":1},{"id":6768,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6769],"locationId":2},{"id":6769,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6770],"locationId":4},{"id":6770,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6771],"locationId":1},{"id":6771,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6772],"locationId":2},{"id":6772,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6773],"locationId":4},{"id":6773,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6774],"locationId":1},{"id":6774,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6775],"locationId":2},{"id":6775,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6776],"locationId":4},{"id":6776,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6777],"locationId":1},{"id":6777,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6778],"locationId":2},{"id":6778,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6779],"locationId":4},{"id":6779,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6780],"locationId":1},{"id":6780,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6781],"locationId":2},{"id":6781,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6782],"locationId":4},{"id":6782,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6783],"locationId":1},{"id":6783,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6784],"locationId":2},{"id":6784,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6785],"locationId":4},{"id":6785,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6786],"locationId":1},{"id":6786,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6787],"locationId":2},{"id":6787,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6788],"locationId":4},{"id":6788,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6789],"locationId":1},{"id":6789,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6790],"locationId":2},{"id":6790,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6791],"locationId":4},{"id":6791,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6792],"locationId":1},{"id":6792,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6793],"locationId":2},{"id":6793,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6794],"locationId":4},{"id":6794,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6795],"locationId":1},{"id":6795,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6796],"locationId":2},{"id":6796,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6797],"locationId":4},{"id":6797,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6798],"locationId":1},{"id":6798,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6799],"locationId":2},{"id":6799,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6800],"locationId":4},{"id":6800,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6801],"locationId":1},{"id":6801,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6802],"locationId":2},{"id":6802,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6803],"locationId":4},{"id":6803,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6804],"locationId":1},{"id":6804,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6805],"locationId":2},{"id":6805,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6806],"locationId":4},{"id":6806,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6807],"locationId":1},{"id":6807,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6808],"locationId":2},{"id":6808,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6809],"locationId":4},{"id":6809,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6810],"locationId":1},{"id":6810,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6811],"locationId":2},{"id":6811,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6812],"locationId":4},{"id":6812,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6813],"locationId":1},{"id":6813,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6814],"locationId":2},{"id":6814,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6815],"locationId":4},{"id":6815,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6816],"locationId":1},{"id":6816,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6817],"locationId":2},{"id":6817,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6818],"locationId":4},{"id":6818,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6819],"locationId":1},{"id":6819,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6820],"locationId":2},{"id":6820,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6821],"locationId":4},{"id":6821,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6822],"locationId":1},{"id":6822,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6823],"locationId":2},{"id":6823,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6824],"locationId":4},{"id":6824,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6825],"locationId":1},{"id":6825,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6826],"locationId":2},{"id":6826,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6827],"locationId":4},{"id":6827,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6828],"locationId":1},{"id":6828,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6829],"locationId":2},{"id":6829,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6830],"locationId":4},{"id":6830,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6831],"locationId":1},{"id":6831,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6832],"locationId":2},{"id":6832,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6833],"locationId":4},{"id":6833,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6834],"locationId":1},{"id":6834,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6835],"locationId":2},{"id":6835,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6836],"locationId":4},{"id":6836,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6837],"locationId":1},{"id":6837,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6838],"locationId":2},{"id":6838,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6839],"locationId":4},{"id":6839,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6840],"locationId":1},{"id":6840,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6841],"locationId":2},{"id":6841,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6842],"locationId":4},{"id":6842,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6843],"locationId":1},{"id":6843,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6844],"locationId":2},{"id":6844,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6845],"locationId":4},{"id":6845,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6846],"locationId":1},{"id":6846,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6847],"locationId":2},{"id":6847,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6848],"locationId":4},{"id":6848,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6849],"locationId":1},{"id":6849,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6850],"locationId":2},{"id":6850,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6851],"locationId":4},{"id":6851,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6852],"locationId":1},{"id":6852,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6853],"locationId":2},{"id":6853,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6854],"locationId":4},{"id":6854,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6855],"locationId":1},{"id":6855,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6856],"locationId":2},{"id":6856,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6857],"locationId":4},{"id":6857,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6858],"locationId":1},{"id":6858,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6859],"locationId":2},{"id":6859,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6860],"locationId":4},{"id":6860,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6861],"locationId":1},{"id":6861,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6862],"locationId":2},{"id":6862,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6863],"locationId":4},{"id":6863,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6864],"locationId":1},{"id":6864,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6865],"locationId":2},{"id":6865,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6866],"locationId":4},{"id":6866,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6867],"locationId":1},{"id":6867,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6868],"locationId":2},{"id":6868,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6869],"locationId":4},{"id":6869,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6870],"locationId":1},{"id":6870,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6871],"locationId":2},{"id":6871,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6872],"locationId":4},{"id":6872,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6873],"locationId":1},{"id":6873,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6874],"locationId":2},{"id":6874,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6875],"locationId":4},{"id":6875,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6876],"locationId":1},{"id":6876,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6877],"locationId":2},{"id":6877,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6878],"locationId":4},{"id":6878,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6879],"locationId":1},{"id":6879,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":6084,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6085],"locationId":4},{"id":6085,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6086],"locationId":1},{"id":6086,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6087],"locationId":2},{"id":6087,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6088],"locationId":4},{"id":6088,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6089],"locationId":1},{"id":6089,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6090],"locationId":2},{"id":6090,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6091],"locationId":4},{"id":6091,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6092],"locationId":1},{"id":6092,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6093],"locationId":2},{"id":6093,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6094],"locationId":4},{"id":6094,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6095],"locationId":1},{"id":6095,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6096],"locationId":2},{"id":6096,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6097],"locationId":4},{"id":6097,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6098],"locationId":1},{"id":6098,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6099],"locationId":2},{"id":6099,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6100],"locationId":4},{"id":6100,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6101],"locationId":1},{"id":6101,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6102],"locationId":2},{"id":6102,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6103],"locationId":4},{"id":6103,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6104],"locationId":1},{"id":6104,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6105],"locationId":2},{"id":6105,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6106],"locationId":4},{"id":6106,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6107],"locationId":1},{"id":6107,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6108],"locationId":2},{"id":6108,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6109],"locationId":4},{"id":6109,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6110],"locationId":1},{"id":6110,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6111],"locationId":2},{"id":6111,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6112],"locationId":4},{"id":6112,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6113],"locationId":1},{"id":6113,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6114],"locationId":2},{"id":6114,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6115],"locationId":4},{"id":6115,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6116],"locationId":1},{"id":6116,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6117],"locationId":2},{"id":6117,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6118],"locationId":4},{"id":6118,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6119],"locationId":1},{"id":6119,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6120],"locationId":2},{"id":6120,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6121],"locationId":4},{"id":6121,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6122],"locationId":1},{"id":6122,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6123],"locationId":2},{"id":6123,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6124],"locationId":4},{"id":6124,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6125],"locationId":1},{"id":6125,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6126],"locationId":2},{"id":6126,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6127],"locationId":4},{"id":6127,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6128],"locationId":1},{"id":6128,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6129],"locationId":2},{"id":6129,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6130],"locationId":4},{"id":6130,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6131],"locationId":1},{"id":6131,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6132],"locationId":2},{"id":6132,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6133],"locationId":4},{"id":6133,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6134],"locationId":1},{"id":6134,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6135],"locationId":2},{"id":6135,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6136],"locationId":4},{"id":6136,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6137],"locationId":1},{"id":6137,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6138],"locationId":2},{"id":6138,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6139],"locationId":4},{"id":6139,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6140],"locationId":1},{"id":6140,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6141],"locationId":2},{"id":6141,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6142],"locationId":4},{"id":6142,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6143],"locationId":1},{"id":6143,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6144],"locationId":2},{"id":6144,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6145],"locationId":4},{"id":6145,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6146],"locationId":1},{"id":6146,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6147],"locationId":2},{"id":6147,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6148],"locationId":4},{"id":6148,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6149],"locationId":1},{"id":6149,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6150],"locationId":2},{"id":6150,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6151],"locationId":4},{"id":6151,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6152],"locationId":1},{"id":6152,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6153],"locationId":2},{"id":6153,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6154],"locationId":4},{"id":6154,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6155],"locationId":1},{"id":6155,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6156],"locationId":2},{"id":6156,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6157],"locationId":4},{"id":6157,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6158],"locationId":1},{"id":6158,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6159],"locationId":2},{"id":6159,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6160],"locationId":4},{"id":6160,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6161],"locationId":1},{"id":6161,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6162],"locationId":2},{"id":6162,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6163],"locationId":4},{"id":6163,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6164],"locationId":1},{"id":6164,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6165],"locationId":2},{"id":6165,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6166],"locationId":4},{"id":6166,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6167],"locationId":1},{"id":6167,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6168],"locationId":2},{"id":6168,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6169],"locationId":4},{"id":6169,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6170],"locationId":1},{"id":6170,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6171],"locationId":2},{"id":6171,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6172],"locationId":4},{"id":6172,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6173],"locationId":1},{"id":6173,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6174],"locationId":2},{"id":6174,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6175],"locationId":4},{"id":6175,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6176],"locationId":1},{"id":6176,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6177],"locationId":2},{"id":6177,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6178],"locationId":4},{"id":6178,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6179],"locationId":1},{"id":6179,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6180],"locationId":2},{"id":6180,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6181],"locationId":4},{"id":6181,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6182],"locationId":1},{"id":6182,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6183],"locationId":2},{"id":6183,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6184],"locationId":4},{"id":6184,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6185],"locationId":1},{"id":6185,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6186],"locationId":2},{"id":6186,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6187],"locationId":4},{"id":6187,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6188],"locationId":1},{"id":6188,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6189],"locationId":2},{"id":6189,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6190],"locationId":4},{"id":6190,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6191],"locationId":1},{"id":6191,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6192],"locationId":2},{"id":6192,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6193],"locationId":4},{"id":6193,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6194],"locationId":1},{"id":6194,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6195],"locationId":2},{"id":6195,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6196],"locationId":4},{"id":6196,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6197],"locationId":1},{"id":6197,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6198],"locationId":2},{"id":6198,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6199],"locationId":4},{"id":6199,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6200],"locationId":1},{"id":6200,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6201],"locationId":2},{"id":6201,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6202],"locationId":4},{"id":6202,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6203],"locationId":1},{"id":6203,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6204],"locationId":2},{"id":6204,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6205],"locationId":4},{"id":6205,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6206],"locationId":1},{"id":6206,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6207],"locationId":2},{"id":6207,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6208],"locationId":4},{"id":6208,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6209],"locationId":1},{"id":6209,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6210],"locationId":2},{"id":6210,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6211],"locationId":4},{"id":6211,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6212],"locationId":1},{"id":6212,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6213],"locationId":2},{"id":6213,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6214],"locationId":4},{"id":6214,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6215],"locationId":1},{"id":6215,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6216],"locationId":2},{"id":6216,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6217],"locationId":4},{"id":6217,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6218],"locationId":1},{"id":6218,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6219],"locationId":2},{"id":6219,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6220],"locationId":4},{"id":6220,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6221],"locationId":1},{"id":6221,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":5502,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5503],"locationId":4},{"id":5503,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5504],"locationId":1},{"id":5504,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5505],"locationId":2},{"id":5505,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5506],"locationId":4},{"id":5506,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5507],"locationId":1},{"id":5507,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5508],"locationId":2},{"id":5508,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5509],"locationId":4},{"id":5509,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5510],"locationId":1},{"id":5510,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5511],"locationId":2},{"id":5511,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5512],"locationId":4},{"id":5512,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5513],"locationId":1},{"id":5513,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5514],"locationId":2},{"id":5514,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5515],"locationId":4},{"id":5515,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5516],"locationId":1},{"id":5516,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5517],"locationId":2},{"id":5517,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5518],"locationId":4},{"id":5518,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5519],"locationId":1},{"id":5519,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5520],"locationId":2},{"id":5520,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5521],"locationId":4},{"id":5521,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5522],"locationId":1},{"id":5522,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5523],"locationId":2},{"id":5523,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5524],"locationId":4},{"id":5524,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5525],"locationId":1},{"id":5525,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5526],"locationId":2},{"id":5526,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5527],"locationId":4},{"id":5527,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5528],"locationId":1},{"id":5528,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5529],"locationId":2},{"id":5529,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5530],"locationId":4},{"id":5530,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5531],"locationId":1},{"id":5531,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5532],"locationId":2},{"id":5532,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5533],"locationId":4},{"id":5533,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5534],"locationId":1},{"id":5534,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5535],"locationId":2},{"id":5535,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5536],"locationId":4},{"id":5536,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5537],"locationId":1},{"id":5537,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5538],"locationId":2},{"id":5538,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5539],"locationId":4},{"id":5539,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5540],"locationId":1},{"id":5540,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5541],"locationId":2},{"id":5541,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5542],"locationId":4},{"id":5542,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5543],"locationId":1},{"id":5543,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5544],"locationId":2},{"id":5544,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5545],"locationId":4},{"id":5545,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5546],"locationId":1},{"id":5546,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5547],"locationId":2},{"id":5547,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5548],"locationId":4},{"id":5548,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5549],"locationId":1},{"id":5549,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5550],"locationId":2},{"id":5550,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5551],"locationId":4},{"id":5551,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5552],"locationId":1},{"id":5552,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5553],"locationId":2},{"id":5553,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5554],"locationId":4},{"id":5554,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5555],"locationId":1},{"id":5555,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5556],"locationId":2},{"id":5556,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5557],"locationId":4},{"id":5557,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5558],"locationId":1},{"id":5558,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5559],"locationId":2},{"id":5559,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5560],"locationId":4},{"id":5560,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5561],"locationId":1},{"id":5561,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5562],"locationId":2},{"id":5562,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5563],"locationId":4},{"id":5563,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5564],"locationId":1},{"id":5564,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5565],"locationId":2},{"id":5565,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5566],"locationId":4},{"id":5566,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5567],"locationId":1},{"id":5567,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5568],"locationId":2},{"id":5568,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5569],"locationId":4},{"id":5569,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5570],"locationId":1},{"id":5570,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5571],"locationId":2},{"id":5571,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5572],"locationId":4},{"id":5572,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5573],"locationId":1},{"id":5573,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5574],"locationId":2},{"id":5574,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5575],"locationId":4},{"id":5575,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5576],"locationId":1},{"id":5576,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5577],"locationId":2},{"id":5577,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5578],"locationId":4},{"id":5578,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5579],"locationId":1},{"id":5579,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5580],"locationId":2},{"id":5580,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5581],"locationId":4},{"id":5581,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5582],"locationId":1},{"id":5582,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5583],"locationId":2},{"id":5583,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5584],"locationId":4},{"id":5584,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5585],"locationId":1},{"id":5585,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5586],"locationId":2},{"id":5586,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5587],"locationId":4},{"id":5587,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5588],"locationId":1},{"id":5588,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5589],"locationId":2},{"id":5589,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5590],"locationId":4},{"id":5590,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5591],"locationId":1},{"id":5591,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5592],"locationId":2},{"id":5592,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5593],"locationId":4},{"id":5593,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5594],"locationId":1},{"id":5594,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5595],"locationId":2},{"id":5595,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5596],"locationId":4},{"id":5596,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5597],"locationId":1},{"id":5597,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5598],"locationId":2},{"id":5598,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5599],"locationId":4},{"id":5599,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5600],"locationId":1},{"id":5600,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5601],"locationId":2},{"id":5601,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5602],"locationId":4},{"id":5602,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5603],"locationId":1},{"id":5603,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5604],"locationId":2},{"id":5604,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5605],"locationId":4},{"id":5605,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5606],"locationId":1},{"id":5606,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5607],"locationId":2},{"id":5607,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5608],"locationId":4},{"id":5608,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5609],"locationId":1},{"id":5609,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5610],"locationId":2},{"id":5610,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5611],"locationId":4},{"id":5611,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5612],"locationId":1},{"id":5612,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5613],"locationId":2},{"id":5613,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5614],"locationId":4},{"id":5614,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5615],"locationId":1},{"id":5615,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5616],"locationId":2},{"id":5616,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5617],"locationId":4},{"id":5617,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5618],"locationId":1},{"id":5618,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5619],"locationId":2},{"id":5619,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5620],"locationId":4},{"id":5620,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5621],"locationId":1},{"id":5621,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5622],"locationId":2},{"id":5622,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5623],"locationId":4},{"id":5623,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5624],"locationId":1},{"id":5624,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5625],"locationId":2},{"id":5625,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5626],"locationId":4},{"id":5626,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5627],"locationId":1},{"id":5627,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5628],"locationId":2},{"id":5628,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5629],"locationId":4},{"id":5629,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5630],"locationId":1},{"id":5630,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5631],"locationId":2},{"id":5631,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5632],"locationId":4},{"id":5632,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5633],"locationId":1},{"id":5633,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5634],"locationId":2},{"id":5634,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5635],"locationId":4},{"id":5635,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5636],"locationId":1},{"id":5636,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5637],"locationId":2},{"id":5637,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5638],"locationId":4},{"id":5638,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5639],"locationId":1},{"id":5639,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5640],"locationId":2},{"id":5640,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5641],"locationId":4},{"id":5641,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5642],"locationId":1},{"id":5642,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5643],"locationId":2},{"id":5643,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5644],"locationId":4},{"id":5644,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5645],"locationId":1},{"id":5645,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5646],"locationId":2},{"id":5646,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5647],"locationId":4},{"id":5647,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5648],"locationId":1},{"id":5648,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5649],"locationId":2},{"id":5649,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5650],"locationId":4},{"id":5650,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5651],"locationId":1},{"id":5651,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":4872,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4873],"locationId":4},{"id":4873,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4874],"locationId":1},{"id":4874,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4875],"locationId":2},{"id":4875,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4876],"locationId":4},{"id":4876,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4877],"locationId":1},{"id":4877,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4878],"locationId":2},{"id":4878,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4879],"locationId":4},{"id":4879,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4880],"locationId":1},{"id":4880,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4881],"locationId":2},{"id":4881,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4882],"locationId":4},{"id":4882,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4883],"locationId":1},{"id":4883,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4884],"locationId":2},{"id":4884,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4885],"locationId":4},{"id":4885,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4886],"locationId":1},{"id":4886,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4887],"locationId":2},{"id":4887,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4888],"locationId":4},{"id":4888,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4889],"locationId":1},{"id":4889,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4890],"locationId":2},{"id":4890,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4891],"locationId":4},{"id":4891,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4892],"locationId":1},{"id":4892,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4893],"locationId":2},{"id":4893,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4894],"locationId":4},{"id":4894,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4895],"locationId":1},{"id":4895,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4896],"locationId":2},{"id":4896,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4897],"locationId":4},{"id":4897,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4898],"locationId":1},{"id":4898,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4899],"locationId":2},{"id":4899,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4900],"locationId":4},{"id":4900,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4901],"locationId":1},{"id":4901,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4902],"locationId":2},{"id":4902,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4903],"locationId":4},{"id":4903,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4904],"locationId":1},{"id":4904,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4905],"locationId":2},{"id":4905,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4906],"locationId":4},{"id":4906,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4907],"locationId":1},{"id":4907,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4908],"locationId":2},{"id":4908,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4909],"locationId":4},{"id":4909,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4910],"locationId":1},{"id":4910,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4911],"locationId":2},{"id":4911,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4912],"locationId":4},{"id":4912,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4913],"locationId":1},{"id":4913,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4914],"locationId":2},{"id":4914,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4915],"locationId":4},{"id":4915,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4916],"locationId":1},{"id":4916,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4917],"locationId":2},{"id":4917,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4918],"locationId":4},{"id":4918,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4919],"locationId":1},{"id":4919,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4920],"locationId":2},{"id":4920,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4921],"locationId":4},{"id":4921,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4922],"locationId":1},{"id":4922,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4923],"locationId":2},{"id":4923,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4924],"locationId":4},{"id":4924,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4925],"locationId":1},{"id":4925,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4926],"locationId":2},{"id":4926,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4927],"locationId":4},{"id":4927,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4928],"locationId":1},{"id":4928,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4929],"locationId":2},{"id":4929,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4930],"locationId":4},{"id":4930,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4931],"locationId":1},{"id":4931,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4932],"locationId":2},{"id":4932,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4933],"locationId":4},{"id":4933,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4934],"locationId":1},{"id":4934,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4935],"locationId":2},{"id":4935,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4936],"locationId":4},{"id":4936,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4937],"locationId":1},{"id":4937,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4938],"locationId":2},{"id":4938,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4939],"locationId":4},{"id":4939,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4940],"locationId":1},{"id":4940,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4941],"locationId":2},{"id":4941,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4942],"locationId":4},{"id":4942,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4943],"locationId":1},{"id":4943,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4944],"locationId":2},{"id":4944,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4945],"locationId":4},{"id":4945,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4946],"locationId":1},{"id":4946,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4947],"locationId":2},{"id":4947,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4948],"locationId":4},{"id":4948,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4949],"locationId":1},{"id":4949,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4950],"locationId":2},{"id":4950,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4951],"locationId":4},{"id":4951,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4952],"locationId":1},{"id":4952,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4953],"locationId":2},{"id":4953,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4954],"locationId":4},{"id":4954,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4955],"locationId":1},{"id":4955,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4956],"locationId":2},{"id":4956,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4957],"locationId":4},{"id":4957,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4958],"locationId":1},{"id":4958,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4959],"locationId":2},{"id":4959,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4960],"locationId":4},{"id":4960,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4961],"locationId":1},{"id":4961,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4962],"locationId":2},{"id":4962,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4963],"locationId":4},{"id":4963,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4964],"locationId":1},{"id":4964,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4965],"locationId":2},{"id":4965,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4966],"locationId":4},{"id":4966,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4967],"locationId":1},{"id":4967,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4968],"locationId":2},{"id":4968,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4969],"locationId":4},{"id":4969,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4970],"locationId":1},{"id":4970,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4971],"locationId":2},{"id":4971,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4972],"locationId":4},{"id":4972,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4973],"locationId":1},{"id":4973,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4974],"locationId":2},{"id":4974,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4975],"locationId":4},{"id":4975,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4976],"locationId":1},{"id":4976,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4977],"locationId":2},{"id":4977,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4978],"locationId":4},{"id":4978,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4979],"locationId":1},{"id":4979,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4980],"locationId":2},{"id":4980,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4981],"locationId":4},{"id":4981,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4982],"locationId":1},{"id":4982,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4983],"locationId":2},{"id":4983,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4984],"locationId":4},{"id":4984,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4985],"locationId":1},{"id":4985,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4986],"locationId":2},{"id":4986,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4987],"locationId":4},{"id":4987,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4988],"locationId":1},{"id":4988,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4989],"locationId":2},{"id":4989,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4990],"locationId":4},{"id":4990,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4991],"locationId":1},{"id":4991,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4992],"locationId":2},{"id":4992,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4993],"locationId":4},{"id":4993,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4994],"locationId":1},{"id":4994,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4995],"locationId":2},{"id":4995,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4996],"locationId":4},{"id":4996,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4997],"locationId":1},{"id":4997,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4998],"locationId":2},{"id":4998,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4999],"locationId":4},{"id":4999,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5000],"locationId":1},{"id":5000,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5001],"locationId":2},{"id":5001,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5002],"locationId":4},{"id":5002,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5003],"locationId":1},{"id":5003,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5004],"locationId":2},{"id":5004,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5005],"locationId":4},{"id":5005,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5006],"locationId":1},{"id":5006,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5007],"locationId":2},{"id":5007,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5008],"locationId":4},{"id":5008,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5009],"locationId":1},{"id":5009,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5010],"locationId":2},{"id":5010,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5011],"locationId":4},{"id":5011,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5012],"locationId":1},{"id":5012,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5013],"locationId":2},{"id":5013,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5014],"locationId":4},{"id":5014,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5015],"locationId":1},{"id":5015,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5016],"locationId":2},{"id":5016,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5017],"locationId":4},{"id":5017,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5018],"locationId":1},{"id":5018,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5019],"locationId":2},{"id":5019,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5020],"locationId":4},{"id":5020,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5021],"locationId":1},{"id":5021,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5022],"locationId":2},{"id":5022,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5023],"locationId":4},{"id":5023,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5024],"locationId":1},{"id":5024,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5025],"locationId":2},{"id":5025,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5026],"locationId":4},{"id":5026,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5027],"locationId":1},{"id":5027,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5028],"locationId":2},{"id":5028,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5029],"locationId":4},{"id":5029,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5030],"locationId":1},{"id":5030,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5031],"locationId":2},{"id":5031,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5032],"locationId":4},{"id":5032,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5033],"locationId":1},{"id":5033,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":4194,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4195],"locationId":4},{"id":4195,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4196],"locationId":1},{"id":4196,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4197],"locationId":2},{"id":4197,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4198],"locationId":4},{"id":4198,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4199],"locationId":1},{"id":4199,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4200],"locationId":2},{"id":4200,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4201],"locationId":4},{"id":4201,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4202],"locationId":1},{"id":4202,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4203],"locationId":2},{"id":4203,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4204],"locationId":4},{"id":4204,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4205],"locationId":1},{"id":4205,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4206],"locationId":2},{"id":4206,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4207],"locationId":4},{"id":4207,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4208],"locationId":1},{"id":4208,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4209],"locationId":2},{"id":4209,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4210],"locationId":4},{"id":4210,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4211],"locationId":1},{"id":4211,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4212],"locationId":2},{"id":4212,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4213],"locationId":4},{"id":4213,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4214],"locationId":1},{"id":4214,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4215],"locationId":2},{"id":4215,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4216],"locationId":4},{"id":4216,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4217],"locationId":1},{"id":4217,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4218],"locationId":2},{"id":4218,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4219],"locationId":4},{"id":4219,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4220],"locationId":1},{"id":4220,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4221],"locationId":2},{"id":4221,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4222],"locationId":4},{"id":4222,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4223],"locationId":1},{"id":4223,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4224],"locationId":2},{"id":4224,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4225],"locationId":4},{"id":4225,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4226],"locationId":1},{"id":4226,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4227],"locationId":2},{"id":4227,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4228],"locationId":4},{"id":4228,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4229],"locationId":1},{"id":4229,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4230],"locationId":2},{"id":4230,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4231],"locationId":4},{"id":4231,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4232],"locationId":1},{"id":4232,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4233],"locationId":2},{"id":4233,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4234],"locationId":4},{"id":4234,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4235],"locationId":1},{"id":4235,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4236],"locationId":2},{"id":4236,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4237],"locationId":4},{"id":4237,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4238],"locationId":1},{"id":4238,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4239],"locationId":2},{"id":4239,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4240],"locationId":4},{"id":4240,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4241],"locationId":1},{"id":4241,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4242],"locationId":2},{"id":4242,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4243],"locationId":4},{"id":4243,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4244],"locationId":1},{"id":4244,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4245],"locationId":2},{"id":4245,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4246],"locationId":4},{"id":4246,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4247],"locationId":1},{"id":4247,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4248],"locationId":2},{"id":4248,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4249],"locationId":4},{"id":4249,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4250],"locationId":1},{"id":4250,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4251],"locationId":2},{"id":4251,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4252],"locationId":4},{"id":4252,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4253],"locationId":1},{"id":4253,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4254],"locationId":2},{"id":4254,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4255],"locationId":4},{"id":4255,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4256],"locationId":1},{"id":4256,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4257],"locationId":2},{"id":4257,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4258],"locationId":4},{"id":4258,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4259],"locationId":1},{"id":4259,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4260],"locationId":2},{"id":4260,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4261],"locationId":4},{"id":4261,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4262],"locationId":1},{"id":4262,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4263],"locationId":2},{"id":4263,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4264],"locationId":4},{"id":4264,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4265],"locationId":1},{"id":4265,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4266],"locationId":2},{"id":4266,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4267],"locationId":4},{"id":4267,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4268],"locationId":1},{"id":4268,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4269],"locationId":2},{"id":4269,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4270],"locationId":4},{"id":4270,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4271],"locationId":1},{"id":4271,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4272],"locationId":2},{"id":4272,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4273],"locationId":4},{"id":4273,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4274],"locationId":1},{"id":4274,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4275],"locationId":2},{"id":4275,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4276],"locationId":4},{"id":4276,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4277],"locationId":1},{"id":4277,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4278],"locationId":2},{"id":4278,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4279],"locationId":4},{"id":4279,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4280],"locationId":1},{"id":4280,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4281],"locationId":2},{"id":4281,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4282],"locationId":4},{"id":4282,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4283],"locationId":1},{"id":4283,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4284],"locationId":2},{"id":4284,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4285],"locationId":4},{"id":4285,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4286],"locationId":1},{"id":4286,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4287],"locationId":2},{"id":4287,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4288],"locationId":4},{"id":4288,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4289],"locationId":1},{"id":4289,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4290],"locationId":2},{"id":4290,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4291],"locationId":4},{"id":4291,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4292],"locationId":1},{"id":4292,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4293],"locationId":2},{"id":4293,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4294],"locationId":4},{"id":4294,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4295],"locationId":1},{"id":4295,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4296],"locationId":2},{"id":4296,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4297],"locationId":4},{"id":4297,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4298],"locationId":1},{"id":4298,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4299],"locationId":2},{"id":4299,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4300],"locationId":4},{"id":4300,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4301],"locationId":1},{"id":4301,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4302],"locationId":2},{"id":4302,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4303],"locationId":4},{"id":4303,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4304],"locationId":1},{"id":4304,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4305],"locationId":2},{"id":4305,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4306],"locationId":4},{"id":4306,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4307],"locationId":1},{"id":4307,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4308],"locationId":2},{"id":4308,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4309],"locationId":4},{"id":4309,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4310],"locationId":1},{"id":4310,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4311],"locationId":2},{"id":4311,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4312],"locationId":4},{"id":4312,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4313],"locationId":1},{"id":4313,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4314],"locationId":2},{"id":4314,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4315],"locationId":4},{"id":4315,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4316],"locationId":1},{"id":4316,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4317],"locationId":2},{"id":4317,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4318],"locationId":4},{"id":4318,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4319],"locationId":1},{"id":4319,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4320],"locationId":2},{"id":4320,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4321],"locationId":4},{"id":4321,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4322],"locationId":1},{"id":4322,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4323],"locationId":2},{"id":4323,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4324],"locationId":4},{"id":4324,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4325],"locationId":1},{"id":4325,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4326],"locationId":2},{"id":4326,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4327],"locationId":4},{"id":4327,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4328],"locationId":1},{"id":4328,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4329],"locationId":2},{"id":4329,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4330],"locationId":4},{"id":4330,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4331],"locationId":1},{"id":4331,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4332],"locationId":2},{"id":4332,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4333],"locationId":4},{"id":4333,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4334],"locationId":1},{"id":4334,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4335],"locationId":2},{"id":4335,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4336],"locationId":4},{"id":4336,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4337],"locationId":1},{"id":4337,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4338],"locationId":2},{"id":4338,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4339],"locationId":4},{"id":4339,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4340],"locationId":1},{"id":4340,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4341],"locationId":2},{"id":4341,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4342],"locationId":4},{"id":4342,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4343],"locationId":1},{"id":4343,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4344],"locationId":2},{"id":4344,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4345],"locationId":4},{"id":4345,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4346],"locationId":1},{"id":4346,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4347],"locationId":2},{"id":4347,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4348],"locationId":4},{"id":4348,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4349],"locationId":1},{"id":4349,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4350],"locationId":2},{"id":4350,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4351],"locationId":4},{"id":4351,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4352],"locationId":1},{"id":4352,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4353],"locationId":2},{"id":4353,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4354],"locationId":4},{"id":4354,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4355],"locationId":1},{"id":4355,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4356],"locationId":2},{"id":4356,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4357],"locationId":4},{"id":4357,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4358],"locationId":1},{"id":4358,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4359],"locationId":2},{"id":4359,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4360],"locationId":4},{"id":4360,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4361],"locationId":1},{"id":4361,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4362],"locationId":2},{"id":4362,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4363],"locationId":4},{"id":4363,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4364],"locationId":1},{"id":4364,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4365],"locationId":2},{"id":4365,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4366],"locationId":4},{"id":4366,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4367],"locationId":1},{"id":4367,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":19051,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19052],"locationId":398},{"id":19052,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19053],"locationId":399},{"id":19053,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19054],"locationId":2},{"id":19054,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19055],"locationId":3},{"id":19055,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19056],"locationId":398},{"id":19056,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19057],"locationId":399},{"id":19057,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19058],"locationId":2},{"id":19058,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19059],"locationId":3},{"id":19059,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19060],"locationId":398},{"id":19060,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19061],"locationId":399},{"id":19061,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19062],"locationId":2},{"id":19062,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19063],"locationId":3},{"id":19063,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19064],"locationId":398},{"id":19064,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19065],"locationId":399},{"id":19065,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19066],"locationId":2},{"id":19066,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19067],"locationId":3},{"id":19067,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19068],"locationId":398},{"id":19068,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19069],"locationId":399},{"id":19069,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19070],"locationId":2},{"id":19070,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19071],"locationId":3},{"id":19071,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19072],"locationId":398},{"id":19072,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19073],"locationId":399},{"id":19073,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19074],"locationId":2},{"id":19074,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19075],"locationId":3},{"id":19075,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19076],"locationId":398},{"id":19076,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19077],"locationId":399},{"id":19077,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19078],"locationId":2},{"id":19078,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19079],"locationId":3},{"id":19079,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19080],"locationId":398},{"id":19080,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19081],"locationId":399},{"id":19081,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19082],"locationId":2},{"id":19082,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19083],"locationId":3},{"id":19083,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19084],"locationId":398},{"id":19084,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19085],"locationId":399},{"id":19085,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19086],"locationId":2},{"id":19086,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19087],"locationId":3},{"id":19087,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19088],"locationId":398},{"id":19088,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19089],"locationId":399},{"id":19089,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19090],"locationId":2},{"id":19090,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19091],"locationId":3},{"id":19091,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19092],"locationId":398},{"id":19092,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19093],"locationId":399},{"id":19093,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19094],"locationId":2},{"id":19094,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19095],"locationId":3},{"id":19095,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19096],"locationId":398},{"id":19096,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19097],"locationId":399},{"id":19097,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19098],"locationId":2},{"id":19098,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19099],"locationId":3},{"id":19099,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19100],"locationId":398},{"id":19100,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19101],"locationId":399},{"id":19101,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19102],"locationId":2},{"id":19102,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19103],"locationId":3},{"id":19103,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19104],"locationId":398},{"id":19104,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19105],"locationId":399},{"id":19105,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19106],"locationId":2},{"id":19106,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19107],"locationId":3},{"id":19107,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19108],"locationId":398},{"id":19108,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19109],"locationId":399},{"id":19109,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19110],"locationId":2},{"id":19110,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19111],"locationId":3},{"id":19111,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19112],"locationId":398},{"id":19112,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19113],"locationId":399},{"id":19113,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19114],"locationId":2},{"id":19114,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19115],"locationId":3},{"id":19115,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19116],"locationId":398},{"id":19116,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19117],"locationId":399},{"id":19117,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19118],"locationId":2},{"id":19118,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19119],"locationId":3},{"id":19119,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19120],"locationId":398},{"id":19120,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19121],"locationId":399},{"id":19121,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19122],"locationId":2},{"id":19122,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19123],"locationId":3},{"id":19123,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19124],"locationId":398},{"id":19124,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19125],"locationId":399},{"id":19125,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19126],"locationId":2},{"id":19126,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19127],"locationId":3},{"id":19127,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19128],"locationId":398},{"id":19128,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19129],"locationId":399},{"id":19129,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19130],"locationId":2},{"id":19130,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19131],"locationId":3},{"id":19131,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19132],"locationId":398},{"id":19132,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19133],"locationId":399},{"id":19133,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19134],"locationId":2},{"id":19134,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19135],"locationId":3},{"id":19135,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19136],"locationId":398},{"id":19136,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19137],"locationId":399},{"id":19137,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19138],"locationId":2},{"id":19138,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19139],"locationId":3},{"id":19139,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19140],"locationId":398},{"id":19140,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19141],"locationId":399},{"id":19141,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19142],"locationId":2},{"id":19142,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19143],"locationId":3},{"id":19143,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19144],"locationId":398},{"id":19144,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19145],"locationId":399},{"id":19145,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19146],"locationId":2},{"id":19146,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19147],"locationId":3},{"id":19147,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19148],"locationId":398},{"id":19148,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19149],"locationId":399},{"id":19149,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19150],"locationId":2},{"id":19150,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19151],"locationId":3},{"id":19151,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19152],"locationId":398},{"id":19152,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19153],"locationId":399},{"id":19153,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19154],"locationId":2},{"id":19154,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19155],"locationId":3},{"id":19155,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19156],"locationId":398},{"id":19156,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19157],"locationId":399},{"id":19157,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19158],"locationId":2},{"id":19158,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19159],"locationId":3},{"id":19159,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19160],"locationId":398},{"id":19160,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19161],"locationId":399},{"id":19161,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19162],"locationId":2},{"id":19162,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19163],"locationId":3},{"id":19163,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19164],"locationId":398},{"id":19164,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19165],"locationId":399},{"id":19165,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19166],"locationId":2},{"id":19166,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19167],"locationId":3},{"id":19167,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19168],"locationId":398},{"id":19168,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19169],"locationId":399},{"id":19169,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19170],"locationId":2},{"id":19170,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19171],"locationId":3},{"id":19171,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19172],"locationId":398},{"id":19172,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19173],"locationId":399},{"id":19173,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19174],"locationId":2},{"id":19174,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19175],"locationId":3},{"id":19175,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19176],"locationId":398},{"id":19176,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19177],"locationId":399},{"id":19177,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19178],"locationId":2},{"id":19178,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19179],"locationId":3},{"id":19179,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19180],"locationId":398},{"id":19180,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19181],"locationId":399},{"id":19181,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19182],"locationId":2},{"id":19182,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19183],"locationId":3},{"id":19183,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19184],"locationId":398},{"id":19184,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19185],"locationId":399},{"id":19185,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19186],"locationId":2},{"id":19186,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19187],"locationId":3},{"id":19187,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19188],"locationId":398},{"id":19188,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19189],"locationId":399},{"id":19189,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19190],"locationId":2},{"id":19190,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19191],"locationId":3},{"id":19191,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19192],"locationId":398},{"id":19192,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19193],"locationId":399},{"id":19193,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19194],"locationId":2},{"id":19194,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19195],"locationId":3},{"id":19195,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19196],"locationId":398},{"id":19196,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19197],"locationId":399},{"id":19197,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19198],"locationId":2},{"id":19198,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19199],"locationId":3},{"id":19199,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19200],"locationId":398},{"id":19200,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19201],"locationId":399},{"id":19201,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19202],"locationId":2},{"id":19202,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19203],"locationId":3},{"id":19203,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19204],"locationId":398},{"id":19204,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19205],"locationId":399},{"id":19205,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19206],"locationId":2},{"id":19206,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19207],"locationId":3},{"id":19207,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19208],"locationId":398},{"id":19208,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19209],"locationId":399},{"id":19209,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19210],"locationId":2},{"id":19210,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19211],"locationId":3},{"id":19211,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19212],"locationId":398},{"id":19212,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19213],"locationId":399},{"id":19213,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19214],"locationId":2},{"id":19214,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19215],"locationId":3},{"id":19215,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19216],"locationId":398},{"id":19216,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19217],"locationId":399},{"id":19217,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19218],"locationId":2},{"id":19218,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19219],"locationId":3},{"id":19219,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19220],"locationId":398},{"id":19220,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19221],"locationId":399},{"id":19221,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19222],"locationId":2},{"id":19222,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19223],"locationId":3},{"id":19223,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19224],"locationId":398},{"id":19224,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19225],"locationId":399},{"id":19225,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19226],"locationId":2},{"id":19226,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19227],"locationId":3},{"id":19227,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19228],"locationId":398},{"id":19228,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19229],"locationId":399},{"id":19229,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19230],"locationId":2},{"id":19230,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19231],"locationId":3},{"id":19231,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19232],"locationId":398},{"id":19232,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19233],"locationId":399},{"id":19233,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19234],"locationId":2},{"id":19234,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19235],"locationId":3},{"id":19235,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19236],"locationId":398},{"id":19236,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19237],"locationId":399},{"id":19237,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19238],"locationId":2},{"id":19238,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19239],"locationId":3},{"id":19239,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19240],"locationId":398},{"id":19240,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19241],"locationId":399},{"id":19241,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19242],"locationId":2},{"id":19242,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19243],"locationId":3},{"id":19243,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19244],"locationId":398},{"id":19244,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19245],"locationId":399},{"id":19245,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19246],"locationId":2},{"id":19246,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19247],"locationId":3},{"id":19247,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19248],"locationId":398},{"id":19248,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19249],"locationId":399},{"id":19249,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19250],"locationId":2},{"id":19250,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19251],"locationId":3},{"id":19251,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19252],"locationId":398},{"id":19252,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19253],"locationId":399},{"id":19253,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19254],"locationId":2},{"id":19254,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19255],"locationId":3},{"id":19255,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19256],"locationId":398},{"id":19256,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19257],"locationId":399},{"id":19257,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19258,20287],"locationId":2},{"id":19258,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19259],"locationId":3},{"id":19259,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19260],"locationId":398},{"id":19260,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19261],"locationId":399},{"id":19261,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19262,21472],"locationId":2},{"id":19262,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19263],"locationId":3},{"id":19263,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19264],"locationId":398},{"id":19264,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19265],"locationId":399},{"id":19265,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19266],"locationId":2},{"id":19266,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19267],"locationId":3},{"id":19267,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19268],"locationId":398},{"id":19268,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19269],"locationId":399},{"id":19269,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19270],"locationId":2},{"id":19270,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19271],"locationId":3},{"id":19271,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19272],"locationId":398},{"id":19272,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19273],"locationId":399},{"id":19273,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19274,20486],"locationId":2},{"id":19274,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19275],"locationId":3},{"id":19275,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19276],"locationId":398},{"id":19276,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19277],"locationId":399},{"id":19277,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19278,20780],"locationId":2},{"id":19278,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19279],"locationId":3},{"id":19279,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19280],"locationId":398},{"id":19280,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19281],"locationId":399},{"id":19281,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19282,20916],"locationId":2},{"id":19282,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19283],"locationId":3},{"id":19283,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19284],"locationId":398},{"id":19284,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19285],"locationId":399},{"id":19285,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19286,20124],"locationId":2},{"id":19286,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19287],"locationId":3},{"id":19287,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19288],"locationId":398},{"id":19288,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19289],"locationId":399},{"id":19289,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19290,19980],"locationId":2},{"id":19290,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19291],"locationId":3},{"id":19291,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19292],"locationId":398},{"id":19292,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19293],"locationId":399},{"id":19293,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19294,20020],"locationId":2},{"id":19294,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19295],"locationId":5},{"id":19295,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19296],"locationId":6},{"id":19296,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19297],"locationId":7},{"id":19297,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19298],"locationId":6},{"id":19298,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19299,20731],"locationId":8},{"id":19299,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19300],"locationId":9},{"id":19300,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19301],"locationId":6},{"id":19301,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[19302,19909,21363],"locationId":10},{"id":19302,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[19303],"locationId":11},{"id":19303,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":1,"children":[19304,20038],"positionTicks":[{"line":568,"ticks":1,"startLocationId":400,"endLocationId":401}],"locationId":12},{"id":19304,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[19305],"locationId":13},{"id":19305,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[19306,19320,19931,19953,19954],"locationId":14},{"id":19306,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":18,"positionTicks":[{"line":726,"ticks":18,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":19320,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":6,"children":[19977],"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38},{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222},{"line":648,"ticks":2,"startLocationId":38,"endLocationId":39},{"line":636,"ticks":2,"startLocationId":222,"endLocationId":223}],"locationId":36},{"id":19977,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[19978],"locationId":40},{"id":19978,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[19979],"locationId":29},{"id":19979,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":34,"positionTicks":[{"line":26,"ticks":34,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":19931,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":12,"children":[19932,20467],"positionTicks":[{"line":784,"ticks":8,"startLocationId":20,"endLocationId":21},{"line":764,"ticks":4,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":19932,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":6,"children":[19933],"positionTicks":[{"line":338,"ticks":6,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":19933,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":52,"positionTicks":[{"line":338,"ticks":52,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":20467,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[20468],"locationId":28},{"id":20468,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20469],"locationId":29},{"id":20469,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":47},"hitCount":0,"children":[20470],"locationId":30},{"id":20470,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":411,"ticks":1,"startLocationId":338,"endLocationId":402}],"locationId":13},{"id":19953,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":8,"children":[20093],"positionTicks":[{"line":667,"ticks":4,"startLocationId":47,"endLocationId":48},{"line":664,"ticks":4,"startLocationId":313,"endLocationId":314}],"locationId":46},{"id":20093,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[20094],"locationId":54},{"id":20094,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[20095],"locationId":55},{"id":20095,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[20096,20571],"locationId":56},{"id":20096,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[20097],"locationId":28},{"id":20097,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20098],"locationId":29},{"id":20098,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":5,"positionTicks":[{"line":26,"ticks":5,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20571,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":2,"positionTicks":[{"line":791,"ticks":2,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":19954,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[19955],"locationId":64},{"id":19955,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":4,"children":[19956],"positionTicks":[{"line":370,"ticks":4,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":19956,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":15,"positionTicks":[{"line":370,"ticks":15,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":20038,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":1,"children":[20039,20636],"positionTicks":[{"line":887,"ticks":1,"startLocationId":319,"endLocationId":320}],"locationId":72},{"id":20039,"callFrame":{"functionName":"getFileByRelativePath","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":894,"columnNumber":25},"hitCount":2,"children":[20898],"positionTicks":[{"line":901,"ticks":2,"startLocationId":322,"endLocationId":323}],"locationId":321},{"id":20898,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[20899],"locationId":164},{"id":20899,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20900],"locationId":29},{"id":20900,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20636,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[20637],"locationId":73},{"id":20637,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20638,21351],"locationId":74},{"id":20638,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[20639,21333],"locationId":75},{"id":20639,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":0,"children":[20640],"locationId":78},{"id":20640,"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":17},"hitCount":1,"positionTicks":[{"line":71,"ticks":1,"startLocationId":404,"endLocationId":405}],"locationId":403},{"id":21333,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[21334],"locationId":68},{"id":21334,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":21351,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[21352],"locationId":198},{"id":21352,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21353],"locationId":29},{"id":21353,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":19909,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[19910],"locationId":84},{"id":19910,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19911],"locationId":6},{"id":19911,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[19912],"locationId":85},{"id":19912,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[19913],"locationId":86},{"id":19913,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[19914,21200],"locationId":87},{"id":19914,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[19915],"locationId":88},{"id":19915,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[19916],"locationId":74},{"id":19916,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[19917,20013],"locationId":89},{"id":19917,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":35,"children":[19934,19973,20003,20015,20210,21459],"positionTicks":[{"line":83,"ticks":27,"startLocationId":92,"endLocationId":95},{"line":82,"ticks":8,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":19934,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":50,"children":[19935],"positionTicks":[{"line":48,"ticks":35,"startLocationId":98,"endLocationId":99},{"line":47,"ticks":15,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":19935,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":15,"children":[19975],"positionTicks":[{"line":48,"ticks":14,"startLocationId":98,"endLocationId":99},{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":19975,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":10,"positionTicks":[{"line":49,"ticks":1,"startLocationId":99,"endLocationId":100},{"line":25,"ticks":4,"startLocationId":406,"endLocationId":407},{"line":50,"ticks":2,"startLocationId":100,"endLocationId":101},{"line":52,"ticks":1,"startLocationId":408,"endLocationId":409},{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":19973,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[19974],"locationId":117},{"id":19974,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":12,"children":[20017,20092],"positionTicks":[{"line":108,"ticks":8,"startLocationId":294,"endLocationId":295},{"line":110,"ticks":4,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":20017,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[20018],"locationId":123},{"id":20018,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20019],"locationId":29},{"id":20019,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":87,"positionTicks":[{"line":26,"ticks":87,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20092,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":9,"positionTicks":[{"line":791,"ticks":9,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":20003,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[20004],"locationId":40},{"id":20004,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":29,"children":[20005],"positionTicks":[{"line":13,"ticks":29,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":20005,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":13,"positionTicks":[{"line":26,"ticks":13,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20015,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20016,20112],"locationId":109},{"id":20016,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":20,"children":[20387,20622],"positionTicks":[{"line":29,"ticks":20,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20387,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":20622,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20112,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":35,"children":[20119,20978],"positionTicks":[{"line":27,"ticks":35,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20119,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":27,"ticks":3,"startLocationId":110,"endLocationId":111},{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":20978,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116},{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":20210,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[20211],"locationId":102},{"id":20211,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":4,"children":[20212],"positionTicks":[{"line":399,"ticks":4,"startLocationId":297,"endLocationId":298}],"locationId":217},{"id":20212,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":20,"positionTicks":[{"line":492,"ticks":1,"startLocationId":410,"endLocationId":411},{"line":483,"ticks":10,"startLocationId":299,"endLocationId":300},{"line":466,"ticks":6,"startLocationId":301,"endLocationId":302},{"line":471,"ticks":2,"startLocationId":219,"endLocationId":220},{"line":465,"ticks":1,"startLocationId":412,"endLocationId":301}],"locationId":218},{"id":21459,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[21460],"locationId":239},{"id":21460,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":9,"ticks":1,"startLocationId":241,"endLocationId":242}],"locationId":240},{"id":20013,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":26,"children":[20949,21067],"positionTicks":[{"line":181,"ticks":7,"startLocationId":134,"endLocationId":135},{"line":209,"ticks":6,"startLocationId":138,"endLocationId":139},{"line":185,"ticks":7,"startLocationId":304,"endLocationId":305},{"line":187,"ticks":2,"startLocationId":306,"endLocationId":307},{"line":203,"ticks":2,"startLocationId":130,"endLocationId":131},{"line":195,"ticks":1,"startLocationId":132,"endLocationId":133},{"line":194,"ticks":1,"startLocationId":413,"endLocationId":132}],"locationId":129},{"id":20949,"callFrame":{"functionName":"getComponent","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":117,"columnNumber":16},"hitCount":1,"positionTicks":[{"line":123,"ticks":1,"startLocationId":228,"endLocationId":229}],"locationId":227},{"id":21067,"callFrame":{"functionName":"unknownBrightScriptComponent","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":668,"columnNumber":34},"hitCount":2,"positionTicks":[{"line":670,"ticks":2,"startLocationId":415,"endLocationId":416}],"locationId":414},{"id":21200,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":0,"children":[21201],"locationId":140},{"id":21201,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21202],"locationId":13},{"id":21202,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[21203],"locationId":68},{"id":21203,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":21363,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21364],"locationId":12},{"id":21364,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21365],"locationId":13},{"id":21365,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[21366],"locationId":14},{"id":21366,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[21367],"locationId":46},{"id":21367,"callFrame":{"functionName":"scopeFunctionShadowedByBuiltInFunction","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":553,"columnNumber":44},"hitCount":0,"children":[21368],"locationId":261},{"id":21368,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":0,"children":[21369],"locationId":262},{"id":21369,"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":418,"endLocationId":419}],"locationId":417},{"id":20731,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[20732],"locationId":157},{"id":20732,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[20733],"locationId":164},{"id":20733,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20734],"locationId":29},{"id":20734,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[20735],"locationId":165},{"id":20735,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[20736],"locationId":166},{"id":20736,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20737],"locationId":29},{"id":20737,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":1,"children":[21032,21079],"positionTicks":[{"line":341,"ticks":1,"startLocationId":420,"endLocationId":421}],"locationId":167},{"id":21032,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":69,"ticks":1,"startLocationId":327,"endLocationId":328}],"locationId":168},{"id":21079,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":2,"positionTicks":[{"line":403,"ticks":2,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":20020,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[20021],"locationId":3},{"id":20021,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[20022],"locationId":398},{"id":20022,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[20023],"locationId":399},{"id":20023,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[20024,21062],"locationId":2},{"id":20024,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20025],"locationId":5},{"id":20025,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20026],"locationId":6},{"id":20026,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20027,20376],"locationId":7},{"id":20027,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20028],"locationId":6},{"id":20028,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20029,20113],"locationId":8},{"id":20029,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20030],"locationId":9},{"id":20030,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20031],"locationId":6},{"id":20031,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":23,"children":[20471,20642,20816,20948,20951,21186,21362],"positionTicks":[{"line":550,"ticks":19,"startLocationId":259,"endLocationId":260},{"line":553,"ticks":3,"startLocationId":422,"endLocationId":423},{"line":540,"ticks":1,"startLocationId":424,"endLocationId":425}],"locationId":10},{"id":20471,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":15,"positionTicks":[{"line":346,"ticks":9,"startLocationId":333,"endLocationId":334},{"line":350,"ticks":1,"startLocationId":335,"endLocationId":336},{"line":353,"ticks":3,"startLocationId":149,"endLocationId":150},{"line":348,"ticks":2,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":20642,"callFrame":{"functionName":"getName","scriptId":"689","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/globalCallables.js","lineNumber":995,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":996,"ticks":1,"startLocationId":427,"endLocationId":428}],"locationId":426},{"id":20816,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[20817],"locationId":198},{"id":20817,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[21463],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":21463,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20948,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":2,"positionTicks":[{"line":26,"ticks":1,"startLocationId":281,"endLocationId":282},{"line":19,"ticks":1,"startLocationId":429,"endLocationId":430}],"locationId":157},{"id":20951,"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"hitCount":3,"positionTicks":[{"line":35,"ticks":2,"startLocationId":431,"endLocationId":432},{"line":19,"ticks":1,"startLocationId":433,"endLocationId":434}],"locationId":342},{"id":21186,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":384,"ticks":1,"startLocationId":435,"endLocationId":436}],"locationId":151},{"id":21362,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":36,"ticks":1,"startLocationId":437,"endLocationId":438}],"locationId":86},{"id":20113,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":1,"children":[20114,21026,21458],"positionTicks":[{"line":610,"ticks":1,"startLocationId":439,"endLocationId":440}],"locationId":157},{"id":20114,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[20115],"locationId":158},{"id":20115,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[20116],"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":20116,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":4,"children":[20235,21077],"positionTicks":[{"line":596,"ticks":4,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":20235,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":18,"positionTicks":[{"line":83,"ticks":1,"startLocationId":441,"endLocationId":357},{"line":79,"ticks":2,"startLocationId":350,"endLocationId":351},{"line":93,"ticks":7,"startLocationId":352,"endLocationId":353},{"line":81,"ticks":3,"startLocationId":354,"endLocationId":355},{"line":94,"ticks":5,"startLocationId":353,"endLocationId":348}],"locationId":160},{"id":21077,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[21078],"locationId":198},{"id":21078,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":21026,"callFrame":{"functionName":"get parser","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":169,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":171,"ticks":1,"startLocationId":443,"endLocationId":444}],"locationId":442},{"id":21458,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":20376,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":1,"positionTicks":[{"line":500,"ticks":1,"startLocationId":361,"endLocationId":362}],"locationId":283},{"id":21062,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21063],"locationId":3},{"id":21063,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21064],"locationId":398},{"id":21064,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21065],"locationId":399},{"id":21065,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":1,"children":[21066],"positionTicks":[{"line":19,"ticks":1,"startLocationId":364,"endLocationId":365}],"locationId":2},{"id":21066,"callFrame":{"functionName":"invalidate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":584,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":588,"ticks":1,"startLocationId":449,"endLocationId":450}],"locationId":448},{"id":19980,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19981],"locationId":5},{"id":19981,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19982],"locationId":6},{"id":19982,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19983],"locationId":7},{"id":19983,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19984],"locationId":6},{"id":19984,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19985],"locationId":8},{"id":19985,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19986],"locationId":9},{"id":19986,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19987],"locationId":6},{"id":19987,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[19988],"locationId":10},{"id":19988,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[19989],"locationId":84},{"id":19989,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19990],"locationId":6},{"id":19990,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[19991],"locationId":85},{"id":19991,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[19992],"locationId":86},{"id":19992,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[19993],"locationId":87},{"id":19993,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[19994],"locationId":88},{"id":19994,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[19995],"locationId":74},{"id":19995,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[19996],"locationId":89},{"id":19996,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[19997],"locationId":90},{"id":19997,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19998,20230],"locationId":109},{"id":19998,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19999,20120],"locationId":109},{"id":19999,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20000,20248],"locationId":109},{"id":20000,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20001,20066],"locationId":109},{"id":20001,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20002],"locationId":109},{"id":20002,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20066,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20067],"locationId":114},{"id":20067,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"children":[20819,21309],"positionTicks":[{"line":29,"ticks":4,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20819,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":146,"ticks":1,"startLocationId":216,"endLocationId":451}],"locationId":214},{"id":21309,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246},{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20248,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20249],"locationId":114},{"id":20249,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20250],"locationId":114},{"id":20250,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":5,"positionTicks":[{"line":29,"ticks":5,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20120,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20121],"locationId":114},{"id":20121,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20122],"locationId":114},{"id":20122,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20123],"locationId":114},{"id":20123,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":29,"ticks":4,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20230,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20231],"locationId":114},{"id":20231,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20232],"locationId":114},{"id":20232,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20233],"locationId":114},{"id":20233,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20234],"locationId":114},{"id":20234,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":6,"children":[20970,21380],"positionTicks":[{"line":29,"ticks":6,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20970,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":21380,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":20124,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20125],"locationId":5},{"id":20125,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20126],"locationId":6},{"id":20126,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20127],"locationId":7},{"id":20127,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20128],"locationId":6},{"id":20128,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20129],"locationId":8},{"id":20129,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20130],"locationId":9},{"id":20130,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20131],"locationId":6},{"id":20131,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20132],"locationId":10},{"id":20132,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20133],"locationId":84},{"id":20133,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20134],"locationId":6},{"id":20134,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20135],"locationId":85},{"id":20135,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20136],"locationId":86},{"id":20136,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20137],"locationId":87},{"id":20137,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20138],"locationId":88},{"id":20138,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20139],"locationId":74},{"id":20139,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20140],"locationId":89},{"id":20140,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20141],"locationId":90},{"id":20141,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20142],"locationId":109},{"id":20142,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20143,20425],"locationId":109},{"id":20143,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20144,20221],"locationId":109},{"id":20144,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20145],"locationId":114},{"id":20145,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20146],"locationId":114},{"id":20146,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20147],"locationId":114},{"id":20147,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20148],"locationId":114},{"id":20148,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20149],"locationId":114},{"id":20149,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20150],"locationId":114},{"id":20150,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[20151],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20151,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":20221,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20222,20909],"locationId":109},{"id":20222,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20223],"locationId":114},{"id":20223,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20224],"locationId":114},{"id":20224,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20225],"locationId":114},{"id":20225,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20226],"locationId":114},{"id":20226,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20227],"locationId":114},{"id":20227,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20909,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20910],"locationId":109},{"id":20910,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20911],"locationId":109},{"id":20911,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20912],"locationId":109},{"id":20912,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20913],"locationId":109},{"id":20913,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20914],"locationId":109},{"id":20914,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[21129],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21129,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":20425,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20426],"locationId":114},{"id":20426,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20427],"locationId":114},{"id":20427,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20428],"locationId":114},{"id":20428,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20429],"locationId":114},{"id":20429,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20430],"locationId":114},{"id":20430,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20431],"locationId":114},{"id":20431,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20432],"locationId":114},{"id":20432,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"children":[21326],"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21326,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":20916,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20917],"locationId":5},{"id":20917,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20918],"locationId":6},{"id":20918,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20919],"locationId":7},{"id":20919,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20920],"locationId":6},{"id":20920,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20921],"locationId":8},{"id":20921,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20922],"locationId":9},{"id":20922,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20923],"locationId":6},{"id":20923,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20924],"locationId":10},{"id":20924,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20925],"locationId":84},{"id":20925,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20926],"locationId":6},{"id":20926,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20927],"locationId":85},{"id":20927,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20928],"locationId":86},{"id":20928,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20929],"locationId":87},{"id":20929,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20930],"locationId":88},{"id":20930,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20931],"locationId":74},{"id":20931,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20932],"locationId":89},{"id":20932,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20933],"locationId":90},{"id":20933,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20934],"locationId":109},{"id":20934,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20935],"locationId":109},{"id":20935,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20936],"locationId":109},{"id":20936,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20937],"locationId":109},{"id":20937,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20938],"locationId":109},{"id":20938,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20939],"locationId":109},{"id":20939,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20940],"locationId":109},{"id":20940,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20941],"locationId":109},{"id":20941,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20942],"locationId":109},{"id":20942,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20943],"locationId":109},{"id":20943,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20944],"locationId":109},{"id":20944,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20945],"locationId":109},{"id":20945,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20946],"locationId":109},{"id":20946,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[20947],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20947,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20780,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20781],"locationId":5},{"id":20781,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20782],"locationId":6},{"id":20782,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20783],"locationId":7},{"id":20783,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20784],"locationId":6},{"id":20784,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20785],"locationId":8},{"id":20785,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20786],"locationId":9},{"id":20786,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20787],"locationId":6},{"id":20787,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20788],"locationId":10},{"id":20788,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20789],"locationId":84},{"id":20789,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20790],"locationId":6},{"id":20790,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20791],"locationId":85},{"id":20791,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20792],"locationId":86},{"id":20792,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20793],"locationId":87},{"id":20793,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20794],"locationId":88},{"id":20794,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20795],"locationId":74},{"id":20795,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20796],"locationId":89},{"id":20796,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20797],"locationId":90},{"id":20797,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20798],"locationId":109},{"id":20798,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20799],"locationId":109},{"id":20799,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20800],"locationId":109},{"id":20800,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20801],"locationId":109},{"id":20801,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20802],"locationId":109},{"id":20802,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20803],"locationId":109},{"id":20803,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20804],"locationId":109},{"id":20804,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20805],"locationId":109},{"id":20805,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20806],"locationId":109},{"id":20806,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20807],"locationId":109},{"id":20807,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20808],"locationId":109},{"id":20808,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20809],"locationId":109},{"id":20809,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20810],"locationId":109},{"id":20810,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20811],"locationId":109},{"id":20811,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20812],"locationId":109},{"id":20812,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20813],"locationId":109},{"id":20813,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20814,21327],"locationId":109},{"id":20814,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21327,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21328],"locationId":109},{"id":21328,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20486,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20487],"locationId":5},{"id":20487,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20488],"locationId":6},{"id":20488,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20489],"locationId":7},{"id":20489,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20490],"locationId":6},{"id":20490,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20491],"locationId":8},{"id":20491,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20492],"locationId":9},{"id":20492,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20493],"locationId":6},{"id":20493,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20494],"locationId":10},{"id":20494,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20495],"locationId":84},{"id":20495,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20496],"locationId":6},{"id":20496,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20497],"locationId":85},{"id":20497,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20498],"locationId":86},{"id":20498,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20499],"locationId":87},{"id":20499,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20500],"locationId":88},{"id":20500,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20501],"locationId":74},{"id":20501,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20502],"locationId":89},{"id":20502,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20503],"locationId":90},{"id":20503,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20504],"locationId":109},{"id":20504,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20505],"locationId":109},{"id":20505,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20506],"locationId":109},{"id":20506,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20507],"locationId":109},{"id":20507,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20508],"locationId":109},{"id":20508,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20509],"locationId":109},{"id":20509,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20510],"locationId":109},{"id":20510,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20511],"locationId":109},{"id":20511,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20512],"locationId":109},{"id":20512,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20513],"locationId":109},{"id":20513,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20514],"locationId":109},{"id":20514,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20515],"locationId":109},{"id":20515,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20516],"locationId":109},{"id":20516,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20517],"locationId":109},{"id":20517,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20518],"locationId":109},{"id":20518,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20519],"locationId":109},{"id":20519,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20520],"locationId":109},{"id":20520,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20521],"locationId":109},{"id":20521,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20522],"locationId":109},{"id":20522,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20523],"locationId":109},{"id":20523,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20524],"locationId":109},{"id":20524,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20525],"locationId":109},{"id":20525,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21472,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21473],"locationId":5},{"id":21473,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21474],"locationId":6},{"id":21474,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21475],"locationId":7},{"id":21475,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21476],"locationId":6},{"id":21476,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21477],"locationId":8},{"id":21477,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21478],"locationId":9},{"id":21478,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21479],"locationId":6},{"id":21479,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21480],"locationId":10},{"id":21480,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21481],"locationId":84},{"id":21481,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21482],"locationId":6},{"id":21482,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21483],"locationId":85},{"id":21483,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21484],"locationId":86},{"id":21484,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21485],"locationId":87},{"id":21485,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21486],"locationId":88},{"id":21486,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21487],"locationId":74},{"id":21487,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21488],"locationId":89},{"id":21488,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21489],"locationId":90},{"id":21489,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21490],"locationId":109},{"id":21490,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21491],"locationId":109},{"id":21491,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21492],"locationId":109},{"id":21492,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21493],"locationId":109},{"id":21493,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21494],"locationId":109},{"id":21494,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21495],"locationId":109},{"id":21495,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21496],"locationId":109},{"id":21496,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21497],"locationId":109},{"id":21497,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21498],"locationId":109},{"id":21498,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21499],"locationId":109},{"id":21499,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21500],"locationId":109},{"id":21500,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21501],"locationId":109},{"id":21501,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21502],"locationId":109},{"id":21502,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21503],"locationId":109},{"id":21503,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21504],"locationId":109},{"id":21504,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21505],"locationId":109},{"id":21505,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21506],"locationId":109},{"id":21506,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21507],"locationId":109},{"id":21507,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21508],"locationId":109},{"id":21508,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21509],"locationId":109},{"id":21509,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21510],"locationId":109},{"id":21510,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21511],"locationId":109},{"id":21511,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21512],"locationId":109},{"id":21512,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21513],"locationId":109},{"id":21513,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21514],"locationId":109},{"id":21514,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21515],"locationId":109},{"id":21515,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21516],"locationId":109},{"id":21516,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21517],"locationId":109},{"id":21517,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21518],"locationId":109},{"id":21518,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21519],"locationId":109},{"id":21519,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21520],"locationId":109},{"id":21520,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21521],"locationId":109},{"id":21521,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21522],"locationId":109},{"id":21522,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20287,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20288],"locationId":5},{"id":20288,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20289],"locationId":6},{"id":20289,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20290],"locationId":7},{"id":20290,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20291],"locationId":6},{"id":20291,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20292],"locationId":8},{"id":20292,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20293],"locationId":9},{"id":20293,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20294],"locationId":6},{"id":20294,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20295],"locationId":10},{"id":20295,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20296],"locationId":84},{"id":20296,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20297],"locationId":6},{"id":20297,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20298],"locationId":85},{"id":20298,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20299],"locationId":86},{"id":20299,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20300],"locationId":87},{"id":20300,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20301],"locationId":88},{"id":20301,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20302],"locationId":74},{"id":20302,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20303],"locationId":89},{"id":20303,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20304],"locationId":90},{"id":20304,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20305],"locationId":109},{"id":20305,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20306],"locationId":109},{"id":20306,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20307],"locationId":109},{"id":20307,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20308],"locationId":109},{"id":20308,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20309],"locationId":109},{"id":20309,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20310],"locationId":109},{"id":20310,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20311],"locationId":109},{"id":20311,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20312],"locationId":109},{"id":20312,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20313],"locationId":109},{"id":20313,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20314],"locationId":109},{"id":20314,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20315],"locationId":109},{"id":20315,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20316],"locationId":109},{"id":20316,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20317],"locationId":109},{"id":20317,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20318],"locationId":109},{"id":20318,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20319],"locationId":109},{"id":20319,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20320],"locationId":109},{"id":20320,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20321],"locationId":109},{"id":20321,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20322],"locationId":109},{"id":20322,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20323],"locationId":109},{"id":20323,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20324],"locationId":109},{"id":20324,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20325],"locationId":109},{"id":20325,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20326],"locationId":109},{"id":20326,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20327],"locationId":109},{"id":20327,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20328],"locationId":109},{"id":20328,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20329],"locationId":109},{"id":20329,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20330],"locationId":109},{"id":20330,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20331],"locationId":109},{"id":20331,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20332],"locationId":109},{"id":20332,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20333],"locationId":109},{"id":20333,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20334],"locationId":109},{"id":20334,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20335],"locationId":109},{"id":20335,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20336],"locationId":109},{"id":20336,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20337],"locationId":109},{"id":20337,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20338],"locationId":109},{"id":20338,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20339],"locationId":109},{"id":20339,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20340],"locationId":109},{"id":20340,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20341],"locationId":109},{"id":20341,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":27363,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27364],"locationId":452},{"id":27364,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27365],"locationId":453},{"id":27365,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27366],"locationId":2},{"id":27366,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27367],"locationId":3},{"id":27367,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27368],"locationId":452},{"id":27368,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27369],"locationId":453},{"id":27369,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27370],"locationId":2},{"id":27370,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27371],"locationId":3},{"id":27371,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27372],"locationId":452},{"id":27372,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27373],"locationId":453},{"id":27373,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27374],"locationId":2},{"id":27374,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27375],"locationId":3},{"id":27375,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27376],"locationId":452},{"id":27376,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27377],"locationId":453},{"id":27377,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27378],"locationId":2},{"id":27378,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27379],"locationId":3},{"id":27379,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27380],"locationId":452},{"id":27380,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27381],"locationId":453},{"id":27381,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27382],"locationId":2},{"id":27382,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27383],"locationId":3},{"id":27383,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27384],"locationId":452},{"id":27384,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27385],"locationId":453},{"id":27385,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27386],"locationId":2},{"id":27386,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27387],"locationId":3},{"id":27387,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27388],"locationId":452},{"id":27388,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27389],"locationId":453},{"id":27389,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27390],"locationId":2},{"id":27390,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27391],"locationId":3},{"id":27391,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27392],"locationId":452},{"id":27392,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27393],"locationId":453},{"id":27393,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27394],"locationId":2},{"id":27394,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27395],"locationId":3},{"id":27395,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27396],"locationId":452},{"id":27396,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27397],"locationId":453},{"id":27397,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27398],"locationId":2},{"id":27398,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27399],"locationId":3},{"id":27399,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27400],"locationId":452},{"id":27400,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27401],"locationId":453},{"id":27401,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27402],"locationId":2},{"id":27402,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27403],"locationId":3},{"id":27403,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27404],"locationId":452},{"id":27404,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27405],"locationId":453},{"id":27405,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27406],"locationId":2},{"id":27406,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27407],"locationId":3},{"id":27407,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27408],"locationId":452},{"id":27408,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27409],"locationId":453},{"id":27409,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27410],"locationId":2},{"id":27410,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27411],"locationId":3},{"id":27411,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27412],"locationId":452},{"id":27412,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27413],"locationId":453},{"id":27413,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27414],"locationId":2},{"id":27414,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27415],"locationId":3},{"id":27415,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27416],"locationId":452},{"id":27416,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27417],"locationId":453},{"id":27417,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27418],"locationId":2},{"id":27418,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27419],"locationId":3},{"id":27419,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27420],"locationId":452},{"id":27420,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27421],"locationId":453},{"id":27421,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27422],"locationId":2},{"id":27422,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27423],"locationId":3},{"id":27423,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27424],"locationId":452},{"id":27424,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27425],"locationId":453},{"id":27425,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27426],"locationId":2},{"id":27426,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27427],"locationId":3},{"id":27427,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27428],"locationId":452},{"id":27428,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27429],"locationId":453},{"id":27429,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27430],"locationId":2},{"id":27430,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27431],"locationId":3},{"id":27431,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27432],"locationId":452},{"id":27432,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27433],"locationId":453},{"id":27433,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27434],"locationId":2},{"id":27434,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27435],"locationId":3},{"id":27435,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27436],"locationId":452},{"id":27436,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27437],"locationId":453},{"id":27437,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27438],"locationId":2},{"id":27438,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27439],"locationId":3},{"id":27439,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27440],"locationId":452},{"id":27440,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27441],"locationId":453},{"id":27441,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27442],"locationId":2},{"id":27442,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27443],"locationId":3},{"id":27443,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27444],"locationId":452},{"id":27444,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27445],"locationId":453},{"id":27445,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27446],"locationId":2},{"id":27446,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27447],"locationId":3},{"id":27447,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27448],"locationId":452},{"id":27448,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27449],"locationId":453},{"id":27449,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27450],"locationId":2},{"id":27450,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27451],"locationId":3},{"id":27451,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27452],"locationId":452},{"id":27452,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27453],"locationId":453},{"id":27453,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27454],"locationId":2},{"id":27454,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27455],"locationId":3},{"id":27455,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27456],"locationId":452},{"id":27456,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27457],"locationId":453},{"id":27457,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27458],"locationId":2},{"id":27458,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27459],"locationId":3},{"id":27459,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27460],"locationId":452},{"id":27460,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27461],"locationId":453},{"id":27461,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27462],"locationId":2},{"id":27462,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27463],"locationId":3},{"id":27463,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27464],"locationId":452},{"id":27464,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27465],"locationId":453},{"id":27465,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27466],"locationId":2},{"id":27466,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27467],"locationId":3},{"id":27467,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27468],"locationId":452},{"id":27468,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27469],"locationId":453},{"id":27469,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27470],"locationId":2},{"id":27470,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27471],"locationId":3},{"id":27471,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27472],"locationId":452},{"id":27472,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27473],"locationId":453},{"id":27473,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27474],"locationId":2},{"id":27474,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27475],"locationId":3},{"id":27475,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27476],"locationId":452},{"id":27476,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27477],"locationId":453},{"id":27477,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27478],"locationId":2},{"id":27478,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27479],"locationId":3},{"id":27479,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27480],"locationId":452},{"id":27480,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27481],"locationId":453},{"id":27481,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27482],"locationId":2},{"id":27482,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27483],"locationId":3},{"id":27483,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27484],"locationId":452},{"id":27484,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27485],"locationId":453},{"id":27485,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27486],"locationId":2},{"id":27486,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27487],"locationId":3},{"id":27487,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27488],"locationId":452},{"id":27488,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27489],"locationId":453},{"id":27489,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27490],"locationId":2},{"id":27490,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27491],"locationId":3},{"id":27491,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27492],"locationId":452},{"id":27492,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27493],"locationId":453},{"id":27493,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27494],"locationId":2},{"id":27494,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27495],"locationId":3},{"id":27495,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27496],"locationId":452},{"id":27496,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27497],"locationId":453},{"id":27497,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27498],"locationId":2},{"id":27498,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27499],"locationId":3},{"id":27499,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27500],"locationId":452},{"id":27500,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27501],"locationId":453},{"id":27501,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27502],"locationId":2},{"id":27502,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27503],"locationId":3},{"id":27503,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27504],"locationId":452},{"id":27504,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27505],"locationId":453},{"id":27505,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27506],"locationId":2},{"id":27506,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27507],"locationId":3},{"id":27507,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27508],"locationId":452},{"id":27508,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27509],"locationId":453},{"id":27509,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27510],"locationId":2},{"id":27510,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27511],"locationId":3},{"id":27511,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27512],"locationId":452},{"id":27512,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27513],"locationId":453},{"id":27513,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27514],"locationId":2},{"id":27514,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27515],"locationId":3},{"id":27515,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27516],"locationId":452},{"id":27516,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27517],"locationId":453},{"id":27517,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27518],"locationId":2},{"id":27518,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27519],"locationId":3},{"id":27519,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27520],"locationId":452},{"id":27520,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27521],"locationId":453},{"id":27521,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27522],"locationId":2},{"id":27522,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27523],"locationId":3},{"id":27523,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27524],"locationId":452},{"id":27524,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27525],"locationId":453},{"id":27525,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27526],"locationId":2},{"id":27526,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27527],"locationId":3},{"id":27527,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27528],"locationId":452},{"id":27528,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27529],"locationId":453},{"id":27529,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27530],"locationId":2},{"id":27530,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27531],"locationId":3},{"id":27531,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27532],"locationId":452},{"id":27532,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27533],"locationId":453},{"id":27533,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27534],"locationId":2},{"id":27534,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27535],"locationId":3},{"id":27535,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27536],"locationId":452},{"id":27536,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27537],"locationId":453},{"id":27537,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27538],"locationId":2},{"id":27538,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27539],"locationId":3},{"id":27539,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27540],"locationId":452},{"id":27540,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27541],"locationId":453},{"id":27541,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27542],"locationId":2},{"id":27542,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27543],"locationId":3},{"id":27543,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27544],"locationId":452},{"id":27544,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27545],"locationId":453},{"id":27545,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27546],"locationId":2},{"id":27546,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27547],"locationId":3},{"id":27547,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27548],"locationId":452},{"id":27548,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27549],"locationId":453},{"id":27549,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27550],"locationId":2},{"id":27550,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27551],"locationId":3},{"id":27551,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27552],"locationId":452},{"id":27552,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27553],"locationId":453},{"id":27553,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27554],"locationId":2},{"id":27554,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27555],"locationId":3},{"id":27555,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27556],"locationId":452},{"id":27556,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27557],"locationId":453},{"id":27557,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27558],"locationId":2},{"id":27558,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27559],"locationId":3},{"id":27559,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27560],"locationId":452},{"id":27560,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27561],"locationId":453},{"id":27561,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27562],"locationId":2},{"id":27562,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27563],"locationId":3},{"id":27563,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27564],"locationId":452},{"id":27564,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27565],"locationId":453},{"id":27565,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27566],"locationId":2},{"id":27566,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27567],"locationId":3},{"id":27567,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27568],"locationId":452},{"id":27568,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27569],"locationId":453},{"id":27569,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27570],"locationId":2},{"id":27570,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27571],"locationId":3},{"id":27571,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27572],"locationId":452},{"id":27572,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27573],"locationId":453},{"id":27573,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27574],"locationId":2},{"id":27574,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27575],"locationId":3},{"id":27575,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27576],"locationId":452},{"id":27576,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27577],"locationId":453},{"id":27577,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27578],"locationId":2},{"id":27578,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27579],"locationId":3},{"id":27579,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27580],"locationId":452},{"id":27580,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27581],"locationId":453},{"id":27581,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27582],"locationId":2},{"id":27582,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27583],"locationId":3},{"id":27583,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27584],"locationId":452},{"id":27584,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27585],"locationId":453},{"id":27585,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27586],"locationId":2},{"id":27586,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27587],"locationId":3},{"id":27587,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27588],"locationId":452},{"id":27588,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27589],"locationId":453},{"id":27589,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27590],"locationId":2},{"id":27590,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27591],"locationId":3},{"id":27591,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27592],"locationId":452},{"id":27592,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27593],"locationId":453},{"id":27593,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27594],"locationId":2},{"id":27594,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27595],"locationId":3},{"id":27595,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27596],"locationId":452},{"id":27596,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27597],"locationId":453},{"id":27597,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27598],"locationId":2},{"id":27598,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27599],"locationId":3},{"id":27599,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27600],"locationId":452},{"id":27600,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27601],"locationId":453},{"id":27601,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27602],"locationId":2},{"id":27602,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27603],"locationId":3},{"id":27603,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27604],"locationId":452},{"id":27604,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27605],"locationId":453},{"id":27605,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27606],"locationId":2},{"id":27606,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27607],"locationId":3},{"id":27607,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27608],"locationId":452},{"id":27608,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27609],"locationId":453},{"id":27609,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27610],"locationId":2},{"id":27610,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27611],"locationId":3},{"id":27611,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27612],"locationId":452},{"id":27612,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27613],"locationId":453},{"id":27613,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27614],"locationId":2},{"id":27614,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27615],"locationId":3},{"id":27615,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27616],"locationId":452},{"id":27616,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27617],"locationId":453},{"id":27617,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27618],"locationId":2},{"id":27618,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27619],"locationId":3},{"id":27619,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27620],"locationId":452},{"id":27620,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27621],"locationId":453},{"id":27621,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27622],"locationId":2},{"id":27622,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27623],"locationId":3},{"id":27623,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27624],"locationId":452},{"id":27624,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27625],"locationId":453},{"id":27625,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27626],"locationId":2},{"id":27626,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27627],"locationId":3},{"id":27627,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27628],"locationId":452},{"id":27628,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27629],"locationId":453},{"id":27629,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27630],"locationId":2},{"id":27630,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27631],"locationId":3},{"id":27631,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27632],"locationId":452},{"id":27632,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27633],"locationId":453},{"id":27633,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27634],"locationId":2},{"id":27634,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27635],"locationId":3},{"id":27635,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27636],"locationId":452},{"id":27636,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27637],"locationId":453},{"id":27637,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27638],"locationId":2},{"id":27638,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27639],"locationId":3},{"id":27639,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27640],"locationId":452},{"id":27640,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27641],"locationId":453},{"id":27641,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27642,30558],"locationId":2},{"id":27642,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27643],"locationId":3},{"id":27643,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27644],"locationId":452},{"id":27644,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27645],"locationId":453},{"id":27645,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27646,30762],"locationId":2},{"id":27646,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27647],"locationId":3},{"id":27647,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27648],"locationId":452},{"id":27648,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27649],"locationId":453},{"id":27649,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27650,30667],"locationId":2},{"id":27650,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27651],"locationId":3},{"id":27651,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27652],"locationId":452},{"id":27652,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27653],"locationId":453},{"id":27653,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27654,29488],"locationId":2},{"id":27654,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27655],"locationId":3},{"id":27655,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27656],"locationId":452},{"id":27656,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27657],"locationId":453},{"id":27657,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27658,30331],"locationId":2},{"id":27658,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27659],"locationId":3},{"id":27659,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27660],"locationId":452},{"id":27660,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27661],"locationId":453},{"id":27661,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27662,30264],"locationId":2},{"id":27662,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27663],"locationId":3},{"id":27663,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27664],"locationId":452},{"id":27664,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27665],"locationId":453},{"id":27665,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27666,29652],"locationId":2},{"id":27666,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27667],"locationId":3},{"id":27667,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27668],"locationId":452},{"id":27668,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27669],"locationId":453},{"id":27669,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27670,30016],"locationId":2},{"id":27670,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27671],"locationId":3},{"id":27671,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27672],"locationId":452},{"id":27672,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27673],"locationId":453},{"id":27673,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27674,29268],"locationId":2},{"id":27674,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27675],"locationId":3},{"id":27675,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27676],"locationId":452},{"id":27676,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27677],"locationId":453},{"id":27677,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27678,29168],"locationId":2},{"id":27678,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27679],"locationId":3},{"id":27679,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27680],"locationId":452},{"id":27680,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27681],"locationId":453},{"id":27681,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27682,28870],"locationId":2},{"id":27682,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[27683],"locationId":5},{"id":27683,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27684],"locationId":6},{"id":27684,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[27685,29956],"locationId":7},{"id":27685,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27686],"locationId":6},{"id":27686,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[27687],"locationId":8},{"id":27687,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[27688],"locationId":9},{"id":27688,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27689],"locationId":6},{"id":27689,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[27690,29804,29821],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":27690,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[27691],"locationId":84},{"id":27691,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27692],"locationId":6},{"id":27692,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[27693],"locationId":85},{"id":27693,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[27694],"locationId":86},{"id":27694,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[27695],"locationId":87},{"id":27695,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[27696],"locationId":88},{"id":27696,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[27697],"locationId":74},{"id":27697,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[27698],"locationId":89},{"id":27698,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[27699,29746,29805],"locationId":90},{"id":27699,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[27700],"locationId":109},{"id":27700,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[27701,29381],"locationId":109},{"id":27701,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[27702],"locationId":114},{"id":27702,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[27703],"locationId":114},{"id":27703,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[27704],"locationId":114},{"id":27704,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[27705],"locationId":114},{"id":27705,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[29133],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29133,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29381,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29382],"locationId":109},{"id":29382,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29383],"locationId":109},{"id":29383,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29384],"locationId":109},{"id":29384,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29385],"locationId":109},{"id":29385,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29386],"locationId":109},{"id":29386,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29746,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29747],"locationId":40},{"id":29747,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29748],"locationId":29},{"id":29748,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29805,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[29806],"locationId":117},{"id":29806,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[29807],"locationId":118},{"id":29807,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[29808],"locationId":123},{"id":29808,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29809],"locationId":29},{"id":29809,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29804,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":29821,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29822],"locationId":11},{"id":29822,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29823],"locationId":12},{"id":29823,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29824],"locationId":13},{"id":29824,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[29825],"locationId":14},{"id":29825,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":682,"ticks":1,"startLocationId":454,"endLocationId":455}],"locationId":64},{"id":29956,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[29957],"locationId":196},{"id":29957,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[29958],"locationId":197},{"id":29958,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[29959],"locationId":198},{"id":29959,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29960],"locationId":29},{"id":29960,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":28870,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28871],"locationId":3},{"id":28871,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28872],"locationId":452},{"id":28872,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28873],"locationId":453},{"id":28873,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28874,29138],"locationId":2},{"id":28874,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28875],"locationId":3},{"id":28875,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28876],"locationId":452},{"id":28876,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28877],"locationId":453},{"id":28877,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28878,28932],"locationId":2},{"id":28878,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28879],"locationId":5},{"id":28879,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28880],"locationId":6},{"id":28880,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28881,29741,29756],"locationId":7},{"id":28881,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28882],"locationId":6},{"id":28882,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28883,29122],"locationId":8},{"id":28883,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28884],"locationId":9},{"id":28884,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28885],"locationId":6},{"id":28885,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[28886,28897,28927],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":28886,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":28897,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28898],"locationId":84},{"id":28898,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28899],"locationId":6},{"id":28899,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28900],"locationId":85},{"id":28900,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28901],"locationId":86},{"id":28901,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28902],"locationId":87},{"id":28902,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28903],"locationId":88},{"id":28903,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28904],"locationId":74},{"id":28904,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[28905,29132],"locationId":89},{"id":28905,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":8,"children":[28906,28909,28922,29072,29119],"positionTicks":[{"line":77,"ticks":1,"startLocationId":94,"endLocationId":96},{"line":83,"ticks":3,"startLocationId":92,"endLocationId":95},{"line":82,"ticks":4,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":28906,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[28907],"locationId":40},{"id":28907,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":3,"children":[28908],"positionTicks":[{"line":13,"ticks":3,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":28908,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":9,"positionTicks":[{"line":26,"ticks":9,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":28909,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[28910,29248],"locationId":109},{"id":28910,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":5,"children":[29266],"positionTicks":[{"line":29,"ticks":5,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29266,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":29248,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":3,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":28922,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[28923],"locationId":117},{"id":28923,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":4,"children":[28924,29131],"positionTicks":[{"line":108,"ticks":3,"startLocationId":294,"endLocationId":295},{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":28924,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[28925],"locationId":123},{"id":28925,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[28926],"locationId":29},{"id":28926,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":26,"positionTicks":[{"line":26,"ticks":26,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29131,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":4,"positionTicks":[{"line":791,"ticks":4,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":29072,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":9,"children":[29130],"positionTicks":[{"line":48,"ticks":8,"startLocationId":98,"endLocationId":99},{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":29130,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":4,"positionTicks":[{"line":48,"ticks":4,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":29119,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[29120,29314],"locationId":102},{"id":29120,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":1,"children":[29121],"positionTicks":[{"line":399,"ticks":1,"startLocationId":297,"endLocationId":298}],"locationId":217},{"id":29121,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":2,"positionTicks":[{"line":483,"ticks":2,"startLocationId":299,"endLocationId":300}],"locationId":218},{"id":29314,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29315],"locationId":29},{"id":29315,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":245,"columnNumber":145},"hitCount":1,"positionTicks":[{"line":375,"ticks":1,"startLocationId":457,"endLocationId":458}],"locationId":456},{"id":29132,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":8,"children":[29327],"positionTicks":[{"line":181,"ticks":2,"startLocationId":134,"endLocationId":135},{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139},{"line":185,"ticks":3,"startLocationId":304,"endLocationId":305},{"line":187,"ticks":1,"startLocationId":306,"endLocationId":307},{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":29327,"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"hitCount":0,"children":[29328],"locationId":308},{"id":29328,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":269,"ticks":1,"startLocationId":311,"endLocationId":312}],"locationId":69},{"id":28927,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[28928],"locationId":11},{"id":28928,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[28929,29249],"locationId":12},{"id":28929,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[28930],"locationId":13},{"id":28930,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[28931,29025,29162,29265,29321],"locationId":14},{"id":28931,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":2,"children":[29329],"positionTicks":[{"line":664,"ticks":1,"startLocationId":313,"endLocationId":314},{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":29329,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[29330],"locationId":54},{"id":29330,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[29331],"locationId":55},{"id":29331,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[29332],"locationId":56},{"id":29332,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[29333],"locationId":28},{"id":29333,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29334],"locationId":29},{"id":29334,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29025,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":2,"children":[29026],"positionTicks":[{"line":648,"ticks":2,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":29026,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29027],"locationId":40},{"id":29027,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29028],"locationId":29},{"id":29028,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":7,"positionTicks":[{"line":26,"ticks":7,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29162,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":3,"children":[29163],"positionTicks":[{"line":764,"ticks":2,"startLocationId":23,"endLocationId":24},{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":29163,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[29164],"locationId":25},{"id":29164,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":6,"positionTicks":[{"line":338,"ticks":6,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":29265,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":726,"ticks":2,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":29321,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[29322],"locationId":64},{"id":29322,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[29323],"locationId":65},{"id":29323,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":2,"positionTicks":[{"line":370,"ticks":2,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":29249,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[29250],"locationId":72},{"id":29250,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[29251],"locationId":73},{"id":29251,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29252],"locationId":74},{"id":29252,"callFrame":{"functionName":"isXmlFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[29253],"locationId":153},{"id":29253,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":23,"ticks":1,"startLocationId":154,"endLocationId":155}],"locationId":69},{"id":29122,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[29123],"locationId":157},{"id":29123,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[29124],"locationId":164},{"id":29124,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29125],"locationId":29},{"id":29125,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[29126],"locationId":165},{"id":29126,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[29127],"locationId":166},{"id":29127,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29128],"locationId":29},{"id":29128,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[29129],"locationId":167},{"id":29129,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":29741,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29742],"locationId":84},{"id":29742,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29743],"locationId":6},{"id":29743,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29744],"locationId":85},{"id":29744,"callFrame":{"functionName":"afterProgramValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":38,"columnNumber":24},"hitCount":0,"children":[29745],"locationId":289},{"id":29745,"callFrame":{"functionName":"reset","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":30,"columnNumber":9},"hitCount":1,"positionTicks":[{"line":32,"ticks":1,"startLocationId":460,"endLocationId":461}],"locationId":459},{"id":29756,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":1,"positionTicks":[{"line":513,"ticks":1,"startLocationId":284,"endLocationId":285}],"locationId":283},{"id":28932,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28933,29604],"locationId":3},{"id":28933,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28934],"locationId":452},{"id":28934,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28935],"locationId":453},{"id":28935,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":1,"children":[28936,29335],"positionTicks":[{"line":22,"ticks":1,"startLocationId":462,"endLocationId":463}],"locationId":2},{"id":28936,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28937],"locationId":5},{"id":28937,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28938],"locationId":6},{"id":28938,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28939,29644],"locationId":7},{"id":28939,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28940],"locationId":6},{"id":28940,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28941,29236],"locationId":8},{"id":28941,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28942],"locationId":9},{"id":28942,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28943],"locationId":6},{"id":28943,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":23,"children":[28944,28958,29029,29080],"positionTicks":[{"line":542,"ticks":23,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":28944,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"children":[29457],"positionTicks":[{"line":384,"ticks":1,"startLocationId":435,"endLocationId":436}],"locationId":151},{"id":29457,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":328,"ticks":1,"startLocationId":464,"endLocationId":465}],"locationId":151},{"id":28958,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":3,"children":[28959,29242],"positionTicks":[{"line":353,"ticks":2,"startLocationId":149,"endLocationId":150},{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":28959,"callFrame":{"functionName":"getName","scriptId":"689","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/globalCallables.js","lineNumber":995,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":997,"ticks":1,"startLocationId":428,"endLocationId":466},{"line":996,"ticks":1,"startLocationId":427,"endLocationId":428}],"locationId":426},{"id":29242,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":29029,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":7,"positionTicks":[{"line":545,"ticks":6,"startLocationId":146,"endLocationId":147},{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":143},{"id":29080,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":1,"children":[29081,29592,29595],"positionTicks":[{"line":40,"ticks":1,"startLocationId":467,"endLocationId":468}],"locationId":11},{"id":29081,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":801,"ticks":1,"startLocationId":469,"endLocationId":470}],"locationId":256},{"id":29592,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":410,"ticks":1,"startLocationId":337,"endLocationId":338}],"locationId":13},{"id":29595,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":471,"endLocationId":472}],"locationId":339},{"id":29236,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[29237],"locationId":157},{"id":29237,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[29238],"locationId":158},{"id":29238,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29239],"locationId":29},{"id":29239,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[29240],"locationId":159},{"id":29240,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[29241],"locationId":160},{"id":29241,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":5,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162},{"line":81,"ticks":2,"startLocationId":473,"endLocationId":474},{"line":79,"ticks":2,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":29644,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[29645],"locationId":196},{"id":29645,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[29646],"locationId":197},{"id":29646,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[29647],"locationId":198},{"id":29647,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29648],"locationId":29},{"id":29648,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29335,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[29336],"locationId":3},{"id":29336,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[29337],"locationId":452},{"id":29337,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[29338],"locationId":453},{"id":29338,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[29339],"locationId":2},{"id":29339,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29340],"locationId":5},{"id":29340,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29341],"locationId":6},{"id":29341,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29342],"locationId":7},{"id":29342,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":2,"positionTicks":[{"line":534,"ticks":2,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":29604,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29605],"locationId":7},{"id":29605,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29606],"locationId":6},{"id":29606,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29607],"locationId":8},{"id":29607,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29608],"locationId":9},{"id":29608,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29609],"locationId":6},{"id":29609,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29610],"locationId":10},{"id":29610,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29611],"locationId":84},{"id":29611,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29612],"locationId":6},{"id":29612,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29613],"locationId":85},{"id":29613,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29614],"locationId":86},{"id":29614,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29615],"locationId":87},{"id":29615,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29616],"locationId":88},{"id":29616,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29617],"locationId":74},{"id":29617,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29618],"locationId":89},{"id":29618,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139}],"locationId":129},{"id":29138,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29139],"locationId":5},{"id":29139,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29140],"locationId":6},{"id":29140,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29141],"locationId":7},{"id":29141,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29142],"locationId":6},{"id":29142,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29143],"locationId":8},{"id":29143,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29144],"locationId":9},{"id":29144,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29145],"locationId":6},{"id":29145,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29146,29689,29772],"locationId":10},{"id":29146,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29147],"locationId":84},{"id":29147,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29148],"locationId":6},{"id":29148,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29149],"locationId":85},{"id":29149,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29150],"locationId":86},{"id":29150,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29151],"locationId":87},{"id":29151,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29152],"locationId":88},{"id":29152,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29153],"locationId":74},{"id":29153,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29154],"locationId":89},{"id":29154,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[29155,29651],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":29155,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"children":[29156,29695],"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29156,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29157,29390],"locationId":109},{"id":29157,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29158,29245],"locationId":109},{"id":29158,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29159],"locationId":114},{"id":29159,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29245,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29246,29300],"locationId":109},{"id":29246,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29300,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29390,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29391],"locationId":114},{"id":29391,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29392],"locationId":114},{"id":29392,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29393],"locationId":114},{"id":29393,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29695,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29651,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":29689,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29690],"locationId":11},{"id":29690,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29691,29751],"locationId":12},{"id":29691,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29692],"locationId":13},{"id":29692,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[29693],"locationId":14},{"id":29693,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[29694],"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":29694,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":2,"positionTicks":[{"line":338,"ticks":2,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":29751,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":809,"ticks":1,"startLocationId":258,"endLocationId":379}],"locationId":256},{"id":29772,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":29168,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29169],"locationId":5},{"id":29169,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29170],"locationId":6},{"id":29170,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29171],"locationId":7},{"id":29171,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29172],"locationId":6},{"id":29172,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29173],"locationId":8},{"id":29173,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29174],"locationId":9},{"id":29174,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29175],"locationId":6},{"id":29175,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29176,29943,29966],"locationId":10},{"id":29176,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29177],"locationId":84},{"id":29177,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29178],"locationId":6},{"id":29178,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29179],"locationId":85},{"id":29179,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29180],"locationId":86},{"id":29180,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29181],"locationId":87},{"id":29181,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29182],"locationId":88},{"id":29182,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29183],"locationId":74},{"id":29183,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[29184],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":29184,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[29185,29862],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":29185,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29186,29304],"locationId":109},{"id":29186,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29187],"locationId":109},{"id":29187,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29188],"locationId":109},{"id":29188,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[29189],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29189,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29190],"locationId":109},{"id":29190,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29191],"locationId":109},{"id":29191,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29192],"locationId":109},{"id":29192,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29193],"locationId":109},{"id":29193,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29194],"locationId":109},{"id":29194,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29195],"locationId":109},{"id":29195,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29304,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[29305],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29305,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29306],"locationId":114},{"id":29306,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29307],"locationId":114},{"id":29307,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29308],"locationId":114},{"id":29308,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29309],"locationId":114},{"id":29309,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29310],"locationId":114},{"id":29310,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29311],"locationId":114},{"id":29311,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29312],"locationId":114},{"id":29312,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29313],"locationId":114},{"id":29313,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29862,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":29943,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29944],"locationId":11},{"id":29944,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29945],"locationId":12},{"id":29945,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29946],"locationId":13},{"id":29946,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[29955],"positionTicks":[{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":29955,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":29966,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":29268,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29269],"locationId":5},{"id":29269,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29270],"locationId":6},{"id":29270,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29271,30209],"locationId":7},{"id":29271,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29272],"locationId":6},{"id":29272,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29273],"locationId":8},{"id":29273,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29274],"locationId":9},{"id":29274,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29275],"locationId":6},{"id":29275,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[29276,29997],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":29276,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29277],"locationId":84},{"id":29277,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29278],"locationId":6},{"id":29278,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29279],"locationId":85},{"id":29279,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29280],"locationId":86},{"id":29280,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29281],"locationId":87},{"id":29281,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29282],"locationId":88},{"id":29282,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29283],"locationId":74},{"id":29283,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29284],"locationId":89},{"id":29284,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[29285,29947,29989],"locationId":90},{"id":29285,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29286],"locationId":109},{"id":29286,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29287],"locationId":109},{"id":29287,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29288],"locationId":109},{"id":29288,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29289],"locationId":109},{"id":29289,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29290],"locationId":109},{"id":29290,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29291],"locationId":109},{"id":29291,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29292],"locationId":109},{"id":29292,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29293],"locationId":109},{"id":29293,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29294],"locationId":109},{"id":29294,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29295],"locationId":109},{"id":29295,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29296],"locationId":109},{"id":29296,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29297],"locationId":109},{"id":29297,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29298],"locationId":109},{"id":29298,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29947,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29948],"locationId":40},{"id":29948,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29949],"locationId":29},{"id":29949,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29989,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[29990],"locationId":117},{"id":29990,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[29991],"locationId":118},{"id":29991,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[29992],"locationId":123},{"id":29992,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[29993],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":29993,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29997,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30209,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":30016,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30017],"locationId":5},{"id":30017,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30018],"locationId":6},{"id":30018,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30019],"locationId":7},{"id":30019,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30020],"locationId":6},{"id":30020,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30021],"locationId":8},{"id":30021,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30022],"locationId":9},{"id":30022,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30023],"locationId":6},{"id":30023,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[30024,30043],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":30024,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30025],"locationId":84},{"id":30025,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30026],"locationId":6},{"id":30026,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30027],"locationId":85},{"id":30027,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30028],"locationId":86},{"id":30028,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30029],"locationId":87},{"id":30029,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30030],"locationId":88},{"id":30030,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30031],"locationId":74},{"id":30031,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[30032,30199],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":30032,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[30033,30095],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94},{"line":221,"ticks":1,"startLocationId":475,"endLocationId":476}],"locationId":90},{"id":30033,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30034],"locationId":109},{"id":30034,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30035],"locationId":109},{"id":30035,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30036],"locationId":109},{"id":30036,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30037],"locationId":109},{"id":30037,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":30095,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30096],"locationId":117},{"id":30096,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30097],"locationId":118},{"id":30097,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30098],"locationId":123},{"id":30098,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30099],"locationId":29},{"id":30099,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30199,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":30043,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30044],"locationId":11},{"id":30044,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30045],"locationId":12},{"id":30045,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30046],"locationId":13},{"id":30046,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30047],"locationId":14},{"id":30047,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[30048],"positionTicks":[{"line":790,"ticks":1,"startLocationId":16,"endLocationId":17}],"locationId":15},{"id":30048,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[30049],"locationId":28},{"id":30049,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30050],"locationId":29},{"id":30050,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":47},"hitCount":0,"children":[30051],"locationId":30},{"id":30051,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30052],"locationId":13},{"id":30052,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[30053],"locationId":68},{"id":30053,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":29652,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29653],"locationId":5},{"id":29653,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29654],"locationId":6},{"id":29654,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29655],"locationId":7},{"id":29655,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29656],"locationId":6},{"id":29656,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29657],"locationId":8},{"id":29657,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29658],"locationId":9},{"id":29658,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29659],"locationId":6},{"id":29659,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[29660,30210,30235,30243],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":29660,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29661],"locationId":84},{"id":29661,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29662],"locationId":6},{"id":29662,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29663],"locationId":85},{"id":29663,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29664],"locationId":86},{"id":29664,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29665],"locationId":87},{"id":29665,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29666],"locationId":88},{"id":29666,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29667],"locationId":74},{"id":29667,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29668],"locationId":89},{"id":29668,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[29669,30223],"locationId":90},{"id":29669,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29670],"locationId":109},{"id":29670,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[29671],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29671,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29672],"locationId":109},{"id":29672,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29673],"locationId":109},{"id":29673,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29674],"locationId":109},{"id":29674,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29675],"locationId":109},{"id":29675,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29676],"locationId":109},{"id":29676,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29677],"locationId":109},{"id":29677,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29678],"locationId":109},{"id":29678,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29679],"locationId":109},{"id":29679,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29680],"locationId":109},{"id":29680,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29681],"locationId":109},{"id":29681,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29682],"locationId":109},{"id":29682,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29683],"locationId":109},{"id":29683,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29684],"locationId":109},{"id":29684,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29685],"locationId":109},{"id":29685,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30223,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":30210,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30211],"locationId":11},{"id":30211,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30212],"locationId":12},{"id":30212,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30213],"locationId":13},{"id":30213,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30214,30224,30262],"locationId":14},{"id":30214,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[30215],"locationId":64},{"id":30215,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[30216],"locationId":65},{"id":30216,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":30224,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[30225],"locationId":15},{"id":30225,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[30226],"locationId":25},{"id":30226,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":30262,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":30235,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30243,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30244],"locationId":12},{"id":30244,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30245],"locationId":13},{"id":30245,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30246],"locationId":14},{"id":30246,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":30264,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30265],"locationId":5},{"id":30265,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30266],"locationId":6},{"id":30266,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30267],"locationId":7},{"id":30267,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30268],"locationId":6},{"id":30268,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30269],"locationId":8},{"id":30269,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30270],"locationId":9},{"id":30270,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30271],"locationId":6},{"id":30271,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30272,30282,30307],"locationId":10},{"id":30272,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30273],"locationId":11},{"id":30273,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30274],"locationId":12},{"id":30274,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30275],"locationId":13},{"id":30275,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30276,30309],"locationId":14},{"id":30276,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[30277],"locationId":64},{"id":30277,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[30278],"locationId":65},{"id":30278,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":30309,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":30282,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30283],"locationId":84},{"id":30283,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30284],"locationId":6},{"id":30284,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30285],"locationId":85},{"id":30285,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30286],"locationId":86},{"id":30286,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30287],"locationId":87},{"id":30287,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30288],"locationId":88},{"id":30288,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30289],"locationId":74},{"id":30289,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[30290],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":30290,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[30291],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":30291,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30292],"locationId":117},{"id":30292,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[30293],"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":30293,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30294],"locationId":123},{"id":30294,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30295],"locationId":29},{"id":30295,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30307,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30331,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30332],"locationId":5},{"id":30332,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30333],"locationId":6},{"id":30333,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30334],"locationId":7},{"id":30334,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30335],"locationId":6},{"id":30335,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30336],"locationId":8},{"id":30336,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30337],"locationId":9},{"id":30337,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30338],"locationId":6},{"id":30338,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30339],"locationId":10},{"id":30339,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30340],"locationId":84},{"id":30340,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30341],"locationId":6},{"id":30341,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30342],"locationId":85},{"id":30342,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30343],"locationId":86},{"id":30343,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30344],"locationId":87},{"id":30344,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30345],"locationId":88},{"id":30345,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30346],"locationId":74},{"id":30346,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[30347],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":30347,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[30348,30352],"positionTicks":[{"line":27,"ticks":2,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":30348,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30349],"locationId":109},{"id":30349,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30350],"locationId":109},{"id":30350,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30351],"locationId":109},{"id":30351,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30352,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30353],"locationId":40},{"id":30353,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30354],"locationId":29},{"id":30354,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29488,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29489],"locationId":5},{"id":29489,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29490],"locationId":6},{"id":29490,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29491],"locationId":7},{"id":29491,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29492],"locationId":6},{"id":29492,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29493],"locationId":8},{"id":29493,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29494],"locationId":9},{"id":29494,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29495],"locationId":6},{"id":29495,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[29496,30639,30666,30706],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":29496,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29497],"locationId":84},{"id":29497,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29498],"locationId":6},{"id":29498,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29499],"locationId":85},{"id":29499,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29500],"locationId":86},{"id":29500,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29501],"locationId":87},{"id":29501,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29502],"locationId":88},{"id":29502,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29503],"locationId":74},{"id":29503,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[29504],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":29504,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[29505],"locationId":90},{"id":29505,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29506],"locationId":109},{"id":29506,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29507],"locationId":109},{"id":29507,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29508],"locationId":109},{"id":29508,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29509],"locationId":109},{"id":29509,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29510,30217],"locationId":109},{"id":29510,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29511],"locationId":109},{"id":29511,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29512],"locationId":109},{"id":29512,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29513],"locationId":109},{"id":29513,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29514],"locationId":109},{"id":29514,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29515],"locationId":109},{"id":29515,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29516],"locationId":109},{"id":29516,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29517],"locationId":109},{"id":29517,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29518],"locationId":109},{"id":29518,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29519],"locationId":109},{"id":29519,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29520],"locationId":109},{"id":29520,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29521],"locationId":109},{"id":29521,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29522],"locationId":109},{"id":29522,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29523],"locationId":109},{"id":29523,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29524],"locationId":109},{"id":29524,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29525],"locationId":109},{"id":29525,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29526],"locationId":109},{"id":29526,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29527],"locationId":109},{"id":29527,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29528],"locationId":109},{"id":29528,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29529],"locationId":109},{"id":29529,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29530],"locationId":109},{"id":29530,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29531],"locationId":109},{"id":29531,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29532],"locationId":109},{"id":29532,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29533],"locationId":109},{"id":29533,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30217,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30218],"locationId":114},{"id":30218,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30219],"locationId":114},{"id":30219,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30220],"locationId":114},{"id":30220,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30221],"locationId":114},{"id":30221,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30222],"locationId":114},{"id":30222,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30639,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30640],"locationId":11},{"id":30640,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30641],"locationId":12},{"id":30641,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30642],"locationId":13},{"id":30642,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30643],"locationId":14},{"id":30643,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[30644],"locationId":64},{"id":30644,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[30645],"locationId":65},{"id":30645,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":30666,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":30706,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[30707],"locationId":151},{"id":30707,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[30708],"locationId":152},{"id":30708,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":426,"ticks":1,"startLocationId":478,"endLocationId":479}],"locationId":74},{"id":30667,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30668],"locationId":5},{"id":30668,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30669],"locationId":6},{"id":30669,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30670],"locationId":7},{"id":30670,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30671],"locationId":6},{"id":30671,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30672,30855],"locationId":8},{"id":30672,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30673],"locationId":9},{"id":30673,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30674],"locationId":6},{"id":30674,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30675,30833],"locationId":10},{"id":30675,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30676],"locationId":84},{"id":30676,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30677],"locationId":6},{"id":30677,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30678],"locationId":85},{"id":30678,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30679],"locationId":86},{"id":30679,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30680],"locationId":87},{"id":30680,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30681],"locationId":88},{"id":30681,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30682],"locationId":74},{"id":30682,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30683],"locationId":89},{"id":30683,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[30684,30698,30702,30737],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":30684,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[30685],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30685,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30686],"locationId":109},{"id":30686,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30687],"locationId":109},{"id":30687,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30688],"locationId":109},{"id":30688,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":30698,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30699],"locationId":40},{"id":30699,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30700],"locationId":29},{"id":30700,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30702,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[30703],"locationId":97},{"id":30703,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[30704],"locationId":97},{"id":30704,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":30737,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30738],"locationId":117},{"id":30738,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30739],"locationId":118},{"id":30739,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30740],"locationId":123},{"id":30740,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30741],"locationId":29},{"id":30741,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30833,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30834],"locationId":11},{"id":30834,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30835],"locationId":12},{"id":30835,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30836],"locationId":13},{"id":30836,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":30855,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[30856],"locationId":157},{"id":30856,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[30857],"locationId":158},{"id":30857,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30858],"locationId":29},{"id":30858,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[30859],"locationId":159},{"id":30859,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":95,"ticks":1,"startLocationId":348,"endLocationId":349}],"locationId":160},{"id":30762,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30763],"locationId":5},{"id":30763,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30764],"locationId":6},{"id":30764,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30765],"locationId":7},{"id":30765,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30766],"locationId":6},{"id":30766,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30767],"locationId":8},{"id":30767,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30768],"locationId":9},{"id":30768,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30769],"locationId":6},{"id":30769,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30770],"locationId":10},{"id":30770,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30771],"locationId":84},{"id":30771,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30772],"locationId":6},{"id":30772,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30773],"locationId":85},{"id":30773,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30774],"locationId":86},{"id":30774,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30775],"locationId":87},{"id":30775,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30776],"locationId":88},{"id":30776,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30777],"locationId":74},{"id":30777,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30778],"locationId":89},{"id":30778,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[30779,30815,30854,30860],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":84,"ticks":1,"startLocationId":95,"endLocationId":480}],"locationId":90},{"id":30779,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30780,30842],"locationId":109},{"id":30780,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[30781],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30781,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30782],"locationId":114},{"id":30782,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30783],"locationId":114},{"id":30783,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":30842,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30815,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30816],"locationId":40},{"id":30816,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30817],"locationId":29},{"id":30817,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30854,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":60,"ticks":1,"startLocationId":481,"endLocationId":482}],"locationId":250},{"id":30860,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":30558,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30559],"locationId":5},{"id":30559,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30560],"locationId":6},{"id":30560,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30561],"locationId":7},{"id":30561,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30562],"locationId":6},{"id":30562,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30563],"locationId":8},{"id":30563,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30564],"locationId":9},{"id":30564,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30565],"locationId":6},{"id":30565,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30566],"locationId":10},{"id":30566,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30567],"locationId":84},{"id":30567,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30568],"locationId":6},{"id":30568,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30569],"locationId":85},{"id":30569,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30570],"locationId":86},{"id":30570,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30571],"locationId":87},{"id":30571,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30572],"locationId":88},{"id":30572,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30573],"locationId":74},{"id":30573,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30574],"locationId":89},{"id":30574,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[30575,30923],"locationId":90},{"id":30575,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30576],"locationId":109},{"id":30576,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30577],"locationId":109},{"id":30577,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[30578],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30578,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[30579],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30579,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30580],"locationId":114},{"id":30580,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30581],"locationId":114},{"id":30581,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30582],"locationId":114},{"id":30582,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30583],"locationId":114},{"id":30583,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30584],"locationId":114},{"id":30584,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30585],"locationId":114},{"id":30585,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30586],"locationId":114},{"id":30586,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30923,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30924],"locationId":40},{"id":30924,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30925],"locationId":29},{"id":30925,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":524,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[525],"locationId":4},{"id":525,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[526],"locationId":1},{"id":526,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[527],"locationId":2},{"id":527,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[528],"locationId":3},{"id":528,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[529],"locationId":4},{"id":529,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[530],"locationId":1},{"id":530,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[531],"locationId":2},{"id":531,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[532],"locationId":3},{"id":532,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[533],"locationId":4},{"id":533,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[534],"locationId":1},{"id":534,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[535],"locationId":2},{"id":535,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[536],"locationId":3},{"id":536,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[537],"locationId":4},{"id":537,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[538],"locationId":1},{"id":538,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[539],"locationId":2},{"id":539,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[540],"locationId":3},{"id":540,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[541],"locationId":4},{"id":541,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[542],"locationId":1},{"id":542,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[543],"locationId":2},{"id":543,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[544],"locationId":3},{"id":544,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[545],"locationId":4},{"id":545,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[546],"locationId":1},{"id":546,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[547],"locationId":2},{"id":547,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[548],"locationId":3},{"id":548,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[549],"locationId":4},{"id":549,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[550],"locationId":1},{"id":550,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[551],"locationId":2},{"id":551,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[552],"locationId":3},{"id":552,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[553],"locationId":4},{"id":553,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[554],"locationId":1},{"id":554,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[555],"locationId":2},{"id":555,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[556],"locationId":3},{"id":556,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[557],"locationId":4},{"id":557,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[558],"locationId":1},{"id":558,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[559],"locationId":2},{"id":559,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[560],"locationId":3},{"id":560,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[561],"locationId":4},{"id":561,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[562],"locationId":1},{"id":562,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[563],"locationId":2},{"id":563,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[564],"locationId":3},{"id":564,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[565],"locationId":4},{"id":565,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[566],"locationId":1},{"id":566,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[567],"locationId":2},{"id":567,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[568],"locationId":3},{"id":568,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[569],"locationId":4},{"id":569,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[570],"locationId":1},{"id":570,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[571],"locationId":2},{"id":571,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[572],"locationId":3},{"id":572,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[573],"locationId":4},{"id":573,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[574],"locationId":1},{"id":574,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[575],"locationId":2},{"id":575,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[576],"locationId":3},{"id":576,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[577],"locationId":4},{"id":577,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[578],"locationId":1},{"id":578,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[579],"locationId":2},{"id":579,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[580],"locationId":3},{"id":580,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[581],"locationId":4},{"id":581,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[582],"locationId":1},{"id":582,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[583],"locationId":2},{"id":583,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[584],"locationId":3},{"id":584,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[585],"locationId":4},{"id":585,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[586],"locationId":1},{"id":586,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[587],"locationId":2},{"id":587,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[588],"locationId":3},{"id":588,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[589],"locationId":4},{"id":589,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[590],"locationId":1},{"id":590,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[591],"locationId":2},{"id":591,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[592],"locationId":3},{"id":592,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[593],"locationId":4},{"id":593,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[594],"locationId":1},{"id":594,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[595],"locationId":2},{"id":595,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[596],"locationId":3},{"id":596,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[597],"locationId":4},{"id":597,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[598],"locationId":1},{"id":598,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[599,3837],"locationId":2},{"id":599,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[600],"locationId":3},{"id":600,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[601],"locationId":4},{"id":601,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[602],"locationId":1},{"id":602,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[603],"locationId":2},{"id":603,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[604],"locationId":3},{"id":604,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[605],"locationId":4},{"id":605,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[606],"locationId":1},{"id":606,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[607],"locationId":2},{"id":607,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[608],"locationId":3},{"id":608,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[609],"locationId":4},{"id":609,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[610],"locationId":1},{"id":610,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[611,4539],"locationId":2},{"id":611,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[612],"locationId":3},{"id":612,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[613],"locationId":4},{"id":613,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[614],"locationId":1},{"id":614,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[615],"locationId":2},{"id":615,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[616],"locationId":3},{"id":616,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[617],"locationId":4},{"id":617,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[618],"locationId":1},{"id":618,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[619],"locationId":2},{"id":619,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[620],"locationId":3},{"id":620,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[621],"locationId":4},{"id":621,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[622],"locationId":1},{"id":622,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[623,5193],"locationId":2},{"id":623,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[624],"locationId":3},{"id":624,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[625],"locationId":4},{"id":625,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[626],"locationId":1},{"id":626,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[627],"locationId":2},{"id":627,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[628],"locationId":3},{"id":628,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[629],"locationId":4},{"id":629,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[630],"locationId":1},{"id":630,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[631],"locationId":2},{"id":631,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[632],"locationId":3},{"id":632,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[633],"locationId":4},{"id":633,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[634],"locationId":1},{"id":634,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[635,5799],"locationId":2},{"id":635,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[636],"locationId":3},{"id":636,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[637],"locationId":4},{"id":637,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[638],"locationId":1},{"id":638,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[639],"locationId":2},{"id":639,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[640],"locationId":3},{"id":640,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[641],"locationId":4},{"id":641,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[642],"locationId":1},{"id":642,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[643],"locationId":2},{"id":643,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[644],"locationId":3},{"id":644,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[645],"locationId":4},{"id":645,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[646],"locationId":1},{"id":646,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[647,6493],"locationId":2},{"id":647,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[648],"locationId":3},{"id":648,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[649],"locationId":4},{"id":649,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[650],"locationId":1},{"id":650,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[651],"locationId":2},{"id":651,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[652],"locationId":3},{"id":652,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[653],"locationId":4},{"id":653,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[654],"locationId":1},{"id":654,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[655],"locationId":2},{"id":655,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[656],"locationId":3},{"id":656,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[657],"locationId":4},{"id":657,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[658],"locationId":1},{"id":658,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[659,7003],"locationId":2},{"id":659,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[660],"locationId":3},{"id":660,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[661],"locationId":4},{"id":661,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[662],"locationId":1},{"id":662,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[663],"locationId":2},{"id":663,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[664],"locationId":3},{"id":664,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[665],"locationId":4},{"id":665,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[666],"locationId":1},{"id":666,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[667],"locationId":2},{"id":667,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[668],"locationId":3},{"id":668,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[669],"locationId":4},{"id":669,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[670],"locationId":1},{"id":670,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[671,7465],"locationId":2},{"id":671,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[672],"locationId":3},{"id":672,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[673],"locationId":4},{"id":673,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[674],"locationId":1},{"id":674,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[675],"locationId":2},{"id":675,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[676],"locationId":3},{"id":676,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[677],"locationId":4},{"id":677,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[678],"locationId":1},{"id":678,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[679],"locationId":2},{"id":679,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[680],"locationId":3},{"id":680,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[681],"locationId":4},{"id":681,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[682],"locationId":1},{"id":682,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[683,7879],"locationId":2},{"id":683,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[684],"locationId":3},{"id":684,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[685],"locationId":4},{"id":685,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[686],"locationId":1},{"id":686,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[687],"locationId":2},{"id":687,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[688],"locationId":3},{"id":688,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[689],"locationId":4},{"id":689,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[690],"locationId":1},{"id":690,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[691],"locationId":2},{"id":691,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[692],"locationId":3},{"id":692,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[693],"locationId":4},{"id":693,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[694],"locationId":1},{"id":694,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[695,8245],"locationId":2},{"id":695,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[696],"locationId":3},{"id":696,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[697],"locationId":4},{"id":697,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[698],"locationId":1},{"id":698,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[699],"locationId":2},{"id":699,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[700],"locationId":3},{"id":700,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[701],"locationId":4},{"id":701,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[702],"locationId":1},{"id":702,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[703],"locationId":2},{"id":703,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[704],"locationId":3},{"id":704,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[705],"locationId":4},{"id":705,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[706],"locationId":1},{"id":706,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[707,8563],"locationId":2},{"id":707,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[708],"locationId":3},{"id":708,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[709],"locationId":4},{"id":709,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[710],"locationId":1},{"id":710,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[711],"locationId":2},{"id":711,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[712],"locationId":3},{"id":712,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[713],"locationId":4},{"id":713,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[714],"locationId":1},{"id":714,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[715],"locationId":2},{"id":715,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[716],"locationId":3},{"id":716,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[717],"locationId":4},{"id":717,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[718],"locationId":1},{"id":718,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[719,8833],"locationId":2},{"id":719,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[720],"locationId":3},{"id":720,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[721],"locationId":4},{"id":721,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[722],"locationId":1},{"id":722,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[723],"locationId":2},{"id":723,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[724],"locationId":3},{"id":724,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[725],"locationId":4},{"id":725,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[726],"locationId":1},{"id":726,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[727],"locationId":2},{"id":727,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[728],"locationId":3},{"id":728,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[729],"locationId":4},{"id":729,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[730],"locationId":1},{"id":730,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[731,9055,14346],"locationId":2},{"id":731,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[732],"locationId":3},{"id":732,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[733],"locationId":4},{"id":733,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[734],"locationId":1},{"id":734,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[735],"locationId":2},{"id":735,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[736],"locationId":3},{"id":736,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[737],"locationId":4},{"id":737,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[738],"locationId":1},{"id":738,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[739,13345],"locationId":2},{"id":739,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[740],"locationId":3},{"id":740,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[741],"locationId":4},{"id":741,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[742],"locationId":1},{"id":742,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[743,9229],"locationId":2},{"id":743,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[744],"locationId":3},{"id":744,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[745],"locationId":4},{"id":745,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[746],"locationId":1},{"id":746,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[747,13609],"locationId":2},{"id":747,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[748],"locationId":3},{"id":748,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[749],"locationId":4},{"id":749,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[750],"locationId":1},{"id":750,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[751],"locationId":2},{"id":751,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[752],"locationId":3},{"id":752,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[753],"locationId":4},{"id":753,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[754],"locationId":1},{"id":754,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[755,9355,14042],"locationId":2},{"id":755,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[756],"locationId":3},{"id":756,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[757],"locationId":4},{"id":757,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[758],"locationId":1},{"id":758,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[759,13661],"locationId":2},{"id":759,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[760],"locationId":3},{"id":760,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[761],"locationId":4},{"id":761,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[762],"locationId":1},{"id":762,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[763,11981],"locationId":2},{"id":763,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[764],"locationId":3},{"id":764,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[765],"locationId":4},{"id":765,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[766],"locationId":1},{"id":766,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[767,1220,9433],"locationId":2},{"id":767,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[768],"locationId":3},{"id":768,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[769],"locationId":4},{"id":769,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[770],"locationId":1},{"id":770,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[771,1118],"locationId":2},{"id":771,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[772],"locationId":5},{"id":772,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[773],"locationId":6},{"id":773,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[774],"locationId":7},{"id":774,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[775],"locationId":6},{"id":775,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[776,13110],"locationId":8},{"id":776,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[777],"locationId":9},{"id":777,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[778],"locationId":6},{"id":778,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[779,1067,13131,13418,13470,14182],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":779,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[780],"locationId":84},{"id":780,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[781],"locationId":6},{"id":781,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[782],"locationId":85},{"id":782,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[783],"locationId":86},{"id":783,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":2,"children":[784],"positionTicks":[{"line":29,"ticks":2,"startLocationId":483,"endLocationId":484}],"locationId":87},{"id":784,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[785],"locationId":88},{"id":785,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[786],"locationId":74},{"id":786,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":170,"children":[787,1045,13116,13690,13691,14177,14431],"positionTicks":[{"line":39,"ticks":154,"startLocationId":186,"endLocationId":187},{"line":40,"ticks":16,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":787,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":12,"positionTicks":[{"line":42,"ticks":12,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":1045,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":241,"children":[1259,1260,1457],"positionTicks":[{"line":108,"ticks":2,"startLocationId":485,"endLocationId":486},{"line":76,"ticks":67,"startLocationId":93,"endLocationId":94},{"line":81,"ticks":7,"startLocationId":381,"endLocationId":91},{"line":73,"ticks":46,"startLocationId":210,"endLocationId":188},{"line":74,"ticks":31,"startLocationId":188,"endLocationId":189},{"line":26,"ticks":8,"startLocationId":191,"endLocationId":370},{"line":27,"ticks":24,"startLocationId":370,"endLocationId":371},{"line":72,"ticks":11,"startLocationId":477,"endLocationId":210},{"line":112,"ticks":2,"startLocationId":487,"endLocationId":392},{"line":48,"ticks":6,"startLocationId":488,"endLocationId":489},{"line":50,"ticks":2,"startLocationId":388,"endLocationId":389},{"line":83,"ticks":12,"startLocationId":92,"endLocationId":95},{"line":110,"ticks":2,"startLocationId":490,"endLocationId":491},{"line":334,"ticks":4,"startLocationId":492,"endLocationId":493},{"line":82,"ticks":5,"startLocationId":91,"endLocationId":92},{"line":791,"ticks":3,"startLocationId":494,"endLocationId":495},{"line":113,"ticks":1,"startLocationId":392,"endLocationId":393},{"line":49,"ticks":2,"startLocationId":489,"endLocationId":388},{"line":84,"ticks":1,"startLocationId":95,"endLocationId":480},{"line":47,"ticks":1,"startLocationId":496,"endLocationId":488},{"line":86,"ticks":3,"startLocationId":382,"endLocationId":383},{"line":25,"ticks":1,"startLocationId":190,"endLocationId":191}],"locationId":90},{"id":1259,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[1264],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1264,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1260,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[1261],"locationId":117},{"id":1261,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":1457,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1458],"locationId":109},{"id":1458,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1459],"locationId":109},{"id":1459,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1460],"locationId":109},{"id":1460,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1461],"locationId":109},{"id":1461,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1462],"locationId":109},{"id":1462,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13116,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":28,"positionTicks":[{"line":179,"ticks":2,"startLocationId":497,"endLocationId":498},{"line":187,"ticks":2,"startLocationId":306,"endLocationId":307},{"line":123,"ticks":1,"startLocationId":499,"endLocationId":500},{"line":181,"ticks":11,"startLocationId":134,"endLocationId":135},{"line":190,"ticks":1,"startLocationId":501,"endLocationId":502},{"line":269,"ticks":2,"startLocationId":269,"endLocationId":270},{"line":185,"ticks":5,"startLocationId":304,"endLocationId":305},{"line":188,"ticks":1,"startLocationId":307,"endLocationId":503},{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139},{"line":195,"ticks":1,"startLocationId":132,"endLocationId":133},{"line":211,"ticks":1,"startLocationId":504,"endLocationId":505}],"locationId":129},{"id":13690,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":20,"ticks":1,"startLocationId":506,"endLocationId":507}],"locationId":239},{"id":13691,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":5,"positionTicks":[{"line":25,"ticks":5,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":14177,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":2,"positionTicks":[{"line":244,"ticks":2,"startLocationId":508,"endLocationId":509}],"locationId":102},{"id":14431,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":1067,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":1,"children":[1068],"positionTicks":[{"line":40,"ticks":1,"startLocationId":467,"endLocationId":468}],"locationId":11},{"id":1068,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":7,"children":[1113,1148,13430,13801,14211],"positionTicks":[{"line":570,"ticks":3,"startLocationId":510,"endLocationId":511},{"line":568,"ticks":4,"startLocationId":400,"endLocationId":401}],"locationId":12},{"id":1113,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":24,"positionTicks":[{"line":813,"ticks":2,"startLocationId":512,"endLocationId":513},{"line":805,"ticks":1,"startLocationId":514,"endLocationId":515},{"line":804,"ticks":1,"startLocationId":369,"endLocationId":514},{"line":803,"ticks":9,"startLocationId":368,"endLocationId":369},{"line":808,"ticks":3,"startLocationId":257,"endLocationId":258},{"line":809,"ticks":5,"startLocationId":258,"endLocationId":379},{"line":823,"ticks":1,"startLocationId":516,"endLocationId":517},{"line":810,"ticks":1,"startLocationId":379,"endLocationId":380},{"line":815,"ticks":1,"startLocationId":518,"endLocationId":519}],"locationId":256},{"id":1148,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1149],"locationId":13},{"id":1149,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":75,"children":[1150,1174,13210,13246,13344],"positionTicks":[{"line":576,"ticks":40,"startLocationId":212,"endLocationId":213},{"line":579,"ticks":4,"startLocationId":200,"endLocationId":201},{"line":578,"ticks":17,"startLocationId":206,"endLocationId":200},{"line":575,"ticks":8,"startLocationId":520,"endLocationId":212},{"line":577,"ticks":6,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":1150,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":5,"positionTicks":[{"line":664,"ticks":1,"startLocationId":313,"endLocationId":314},{"line":663,"ticks":2,"startLocationId":377,"endLocationId":313},{"line":412,"ticks":1,"startLocationId":521,"endLocationId":522},{"line":78,"ticks":1,"startLocationId":523,"endLocationId":524}],"locationId":46},{"id":1174,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":23,"positionTicks":[{"line":647,"ticks":6,"startLocationId":37,"endLocationId":38},{"line":26,"ticks":1,"startLocationId":525,"endLocationId":526},{"line":648,"ticks":2,"startLocationId":38,"endLocationId":39},{"line":634,"ticks":3,"startLocationId":255,"endLocationId":221},{"line":13,"ticks":1,"startLocationId":390,"endLocationId":391},{"line":635,"ticks":8,"startLocationId":221,"endLocationId":222},{"line":633,"ticks":2,"startLocationId":527,"endLocationId":255}],"locationId":36},{"id":13210,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":24,"positionTicks":[{"line":733,"ticks":7,"startLocationId":384,"endLocationId":385},{"line":725,"ticks":3,"startLocationId":528,"endLocationId":34},{"line":728,"ticks":3,"startLocationId":529,"endLocationId":530},{"line":726,"ticks":7,"startLocationId":34,"endLocationId":35},{"line":737,"ticks":1,"startLocationId":253,"endLocationId":254},{"line":729,"ticks":3,"startLocationId":530,"endLocationId":531}],"locationId":33},{"id":13246,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":29,"positionTicks":[{"line":762,"ticks":10,"startLocationId":238,"endLocationId":22},{"line":766,"ticks":4,"startLocationId":532,"endLocationId":533},{"line":768,"ticks":2,"startLocationId":534,"endLocationId":535},{"line":338,"ticks":2,"startLocationId":202,"endLocationId":203},{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24},{"line":763,"ticks":6,"startLocationId":22,"endLocationId":23},{"line":760,"ticks":1,"startLocationId":536,"endLocationId":537},{"line":790,"ticks":1,"startLocationId":16,"endLocationId":17},{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19},{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":13344,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":8,"positionTicks":[{"line":692,"ticks":2,"startLocationId":192,"endLocationId":193},{"line":683,"ticks":1,"startLocationId":455,"endLocationId":538},{"line":691,"ticks":2,"startLocationId":378,"endLocationId":192},{"line":370,"ticks":3,"startLocationId":539,"endLocationId":540}],"locationId":64},{"id":13430,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":869,"ticks":1,"startLocationId":541,"endLocationId":542},{"line":900,"ticks":1,"startLocationId":543,"endLocationId":544}],"locationId":72},{"id":13801,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[13802],"locationId":372},{"id":13802,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[13803],"locationId":373},{"id":13803,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":2,"positionTicks":[{"line":244,"ticks":1,"startLocationId":546,"endLocationId":547},{"line":245,"ticks":1,"startLocationId":547,"endLocationId":548}],"locationId":545},{"id":14211,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":69,"ticks":1,"startLocationId":549,"endLocationId":550}],"locationId":78},{"id":13131,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":23,"positionTicks":[{"line":348,"ticks":18,"startLocationId":208,"endLocationId":209},{"line":346,"ticks":5,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":13418,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[13419],"locationId":12},{"id":13419,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[13420],"locationId":13},{"id":13420,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[13421],"locationId":14},{"id":13421,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"children":[13422,13581],"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":13422,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[13423],"locationId":54},{"id":13423,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[13424],"locationId":55},{"id":13424,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[13425],"locationId":56},{"id":13425,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[13426],"locationId":28},{"id":13426,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13427],"locationId":29},{"id":13427,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":13581,"callFrame":{"functionName":"scopeFunctionShadowedByBuiltInFunction","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":553,"columnNumber":44},"hitCount":1,"children":[13582],"positionTicks":[{"line":554,"ticks":1,"startLocationId":551,"endLocationId":552}],"locationId":261},{"id":13582,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":263,"endLocationId":264}],"locationId":262},{"id":13470,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":12,"positionTicks":[{"line":547,"ticks":12,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":14182,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[14183,14412],"locationId":151},{"id":14183,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[14184],"locationId":152},{"id":14184,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14185],"locationId":74},{"id":14185,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":438,"columnNumber":31},"hitCount":2,"positionTicks":[{"line":440,"ticks":2,"startLocationId":553,"endLocationId":325}],"locationId":324},{"id":14412,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[14413],"locationId":224},{"id":14413,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14414],"locationId":29},{"id":14414,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":13110,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[13111,13147],"locationId":157},{"id":13111,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[13112],"locationId":158},{"id":13112,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13113],"locationId":29},{"id":13113,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"children":[13114],"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":13114,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[13115],"locationId":160},{"id":13115,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":22,"positionTicks":[{"line":78,"ticks":10,"startLocationId":207,"endLocationId":162},{"line":77,"ticks":12,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":13147,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[13148],"locationId":164},{"id":13148,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13149],"locationId":29},{"id":13149,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[13150],"locationId":165},{"id":13150,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[13151],"locationId":166},{"id":13151,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":3,"children":[13152],"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345},{"line":14,"ticks":2,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":13152,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":4,"positionTicks":[{"line":147,"ticks":2,"startLocationId":554,"endLocationId":555},{"line":256,"ticks":1,"startLocationId":556,"endLocationId":557},{"line":150,"ticks":1,"startLocationId":558,"endLocationId":559}],"locationId":167},{"id":1118,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1119],"locationId":3},{"id":1119,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1120],"locationId":4},{"id":1120,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1121],"locationId":1},{"id":1121,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1122,1345],"locationId":2},{"id":1122,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1123],"locationId":3},{"id":1123,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1124],"locationId":4},{"id":1124,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":1,"children":[1432],"positionTicks":[{"line":4,"ticks":1,"startLocationId":396,"endLocationId":397}],"locationId":1},{"id":1432,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":1,"children":[1433,1672],"positionTicks":[{"line":19,"ticks":1,"startLocationId":364,"endLocationId":365}],"locationId":2},{"id":1433,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1434],"locationId":5},{"id":1434,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1435],"locationId":6},{"id":1435,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1436],"locationId":7},{"id":1436,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1437],"locationId":6},{"id":1437,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1438],"locationId":8},{"id":1438,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1439],"locationId":9},{"id":1439,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1440],"locationId":6},{"id":1440,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[1441,1474,1502,1512],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":1441,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"children":[1487],"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":1487,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":1474,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":1502,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1503],"locationId":11},{"id":1503,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1504,1604],"locationId":12},{"id":1504,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1505],"locationId":13},{"id":1505,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1506,1561,1620],"locationId":14},{"id":1506,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":634,"ticks":1,"startLocationId":255,"endLocationId":221}],"locationId":36},{"id":1561,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[1562],"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":1562,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":1620,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[1621],"locationId":46},{"id":1621,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[1622],"locationId":54},{"id":1622,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[1623],"locationId":55},{"id":1623,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[1624],"locationId":56},{"id":1624,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":1604,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[1605],"locationId":72},{"id":1605,"callFrame":{"functionName":"getFileByRelativePath","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":894,"columnNumber":25},"hitCount":0,"children":[1606],"locationId":321},{"id":1606,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[1607],"locationId":164},{"id":1607,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1608],"locationId":29},{"id":1608,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1512,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1513],"locationId":84},{"id":1513,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1514],"locationId":6},{"id":1514,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1515],"locationId":85},{"id":1515,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1516],"locationId":86},{"id":1516,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1517],"locationId":87},{"id":1517,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1518],"locationId":88},{"id":1518,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1519],"locationId":74},{"id":1519,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1520],"locationId":89},{"id":1520,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[1609,1914],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":1609,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":1914,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1915],"locationId":109},{"id":1915,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1916],"locationId":109},{"id":1916,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1917],"locationId":109},{"id":1917,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1918],"locationId":114},{"id":1918,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1919],"locationId":114},{"id":1919,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1920],"locationId":114},{"id":1920,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1921],"locationId":114},{"id":1921,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1922],"locationId":114},{"id":1922,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1923],"locationId":114},{"id":1923,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1924],"locationId":114},{"id":1924,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":1672,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1673],"locationId":3},{"id":1673,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1674],"locationId":4},{"id":1674,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1675],"locationId":1},{"id":1675,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1676,1789],"locationId":2},{"id":1676,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1677],"locationId":5},{"id":1677,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1678],"locationId":6},{"id":1678,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1679],"locationId":7},{"id":1679,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1680],"locationId":6},{"id":1680,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1681],"locationId":8},{"id":1681,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1682],"locationId":9},{"id":1682,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1683],"locationId":6},{"id":1683,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1684,1703,1704],"locationId":10},{"id":1684,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1685],"locationId":11},{"id":1685,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1686],"locationId":12},{"id":1686,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1687],"locationId":13},{"id":1687,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1688,1772],"locationId":14},{"id":1688,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":665,"ticks":1,"startLocationId":314,"endLocationId":560}],"locationId":46},{"id":1772,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":1703,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1704,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1705],"locationId":84},{"id":1705,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1706],"locationId":6},{"id":1706,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1707],"locationId":85},{"id":1707,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1708],"locationId":86},{"id":1708,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1709],"locationId":87},{"id":1709,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1710],"locationId":88},{"id":1710,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1711],"locationId":74},{"id":1711,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1712,1713],"locationId":89},{"id":1712,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":1713,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[1742,1786,1925],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":1742,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1786,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1787],"locationId":40},{"id":1787,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1788],"locationId":29},{"id":1788,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1925,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1926],"locationId":109},{"id":1926,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1927],"locationId":109},{"id":1927,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1928],"locationId":109},{"id":1928,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1929],"locationId":109},{"id":1929,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1930],"locationId":109},{"id":1930,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1789,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1790],"locationId":3},{"id":1790,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1791],"locationId":4},{"id":1791,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1792],"locationId":1},{"id":1792,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1793,1992],"locationId":2},{"id":1793,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1794],"locationId":5},{"id":1794,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1795],"locationId":6},{"id":1795,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1796],"locationId":7},{"id":1796,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1797],"locationId":6},{"id":1797,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1798],"locationId":8},{"id":1798,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1799],"locationId":9},{"id":1799,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1800],"locationId":6},{"id":1800,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[1801,1802,1834,1881],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":1801,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":1802,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":3,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":1834,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1835],"locationId":84},{"id":1835,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1836],"locationId":6},{"id":1836,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1837],"locationId":85},{"id":1837,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1838],"locationId":86},{"id":1838,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1839],"locationId":87},{"id":1839,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1840],"locationId":88},{"id":1840,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1841],"locationId":74},{"id":1841,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1842,1851],"locationId":89},{"id":1842,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[1931,1943,1945],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":1931,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1932],"locationId":40},{"id":1932,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1933],"locationId":29},{"id":1933,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1943,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1944,2407],"locationId":109},{"id":1944,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2407,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2408],"locationId":109},{"id":2408,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2409],"locationId":109},{"id":2409,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2410],"locationId":109},{"id":2410,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2411],"locationId":109},{"id":2411,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2412],"locationId":109},{"id":2412,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2413],"locationId":109},{"id":2413,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2414],"locationId":109},{"id":2414,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2415],"locationId":109},{"id":2415,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2416],"locationId":109},{"id":2416,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2417],"locationId":109},{"id":2417,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2418],"locationId":109},{"id":2418,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2419],"locationId":109},{"id":2419,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1945,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[1987],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":1987,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[1988],"locationId":97},{"id":1988,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":1851,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":2,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135},{"line":190,"ticks":1,"startLocationId":501,"endLocationId":502}],"locationId":129},{"id":1881,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1882],"locationId":11},{"id":1882,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1883],"locationId":12},{"id":1883,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1884],"locationId":13},{"id":1884,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1885],"locationId":14},{"id":1885,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":1992,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1993],"locationId":3},{"id":1993,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1994],"locationId":4},{"id":1994,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1995],"locationId":1},{"id":1995,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1996,2089],"locationId":2},{"id":1996,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1997],"locationId":5},{"id":1997,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1998],"locationId":6},{"id":1998,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1999],"locationId":7},{"id":1999,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2000],"locationId":6},{"id":2000,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2001],"locationId":8},{"id":2001,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2002],"locationId":9},{"id":2002,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2003],"locationId":6},{"id":2003,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2004,2029,2032],"locationId":10},{"id":2004,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2005],"locationId":84},{"id":2005,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2006],"locationId":6},{"id":2006,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2007],"locationId":85},{"id":2007,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2008],"locationId":86},{"id":2008,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2009],"locationId":87},{"id":2009,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2010],"locationId":88},{"id":2010,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2011],"locationId":74},{"id":2011,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2012],"locationId":89},{"id":2012,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2044,2075,2086],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":2044,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2045],"locationId":117},{"id":2045,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[2046],"positionTicks":[{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":2046,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2047],"locationId":123},{"id":2047,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2048],"locationId":29},{"id":2048,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2075,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"children":[2158],"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2158,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2159],"locationId":97},{"id":2159,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2160],"locationId":97},{"id":2160,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2086,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"children":[2087],"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":2087,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2088],"locationId":29},{"id":2088,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2029,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2030],"locationId":11},{"id":2030,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2031,2033],"locationId":12},{"id":2031,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369}],"locationId":256},{"id":2033,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2034],"locationId":13},{"id":2034,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2035,2049],"locationId":14},{"id":2035,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":2049,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":726,"ticks":2,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":2032,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":2089,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2090],"locationId":3},{"id":2090,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2091],"locationId":4},{"id":2091,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2092],"locationId":1},{"id":2092,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2093,2244],"locationId":2},{"id":2093,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2094],"locationId":5},{"id":2094,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2095],"locationId":6},{"id":2095,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2096],"locationId":7},{"id":2096,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2097],"locationId":6},{"id":2097,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2098,2177],"locationId":8},{"id":2098,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2099],"locationId":157},{"id":2099,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2100],"locationId":158},{"id":2100,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2101],"locationId":29},{"id":2101,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[2102],"locationId":159},{"id":2102,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[2103],"locationId":160},{"id":2103,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":2177,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2178],"locationId":9},{"id":2178,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2179],"locationId":6},{"id":2179,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2180,2189,2221],"locationId":10},{"id":2180,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2181],"locationId":84},{"id":2181,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2182],"locationId":6},{"id":2182,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2183],"locationId":85},{"id":2183,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2184],"locationId":86},{"id":2184,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2185],"locationId":87},{"id":2185,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2186],"locationId":88},{"id":2186,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2187],"locationId":74},{"id":2187,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2188],"locationId":89},{"id":2188,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2223,2230],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":2223,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2224],"locationId":117},{"id":2224,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2225],"locationId":118},{"id":2225,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2226],"locationId":123},{"id":2226,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[2242],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":2242,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2230,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2231],"locationId":40},{"id":2231,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[2233],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":2233,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2189,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2190],"locationId":11},{"id":2190,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2191],"locationId":12},{"id":2191,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2192],"locationId":13},{"id":2192,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2193],"locationId":14},{"id":2193,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":634,"ticks":1,"startLocationId":255,"endLocationId":221}],"locationId":36},{"id":2221,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2244,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2245],"locationId":3},{"id":2245,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2246],"locationId":4},{"id":2246,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2247],"locationId":1},{"id":2247,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2248,2489],"locationId":2},{"id":2248,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2249],"locationId":5},{"id":2249,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2250],"locationId":6},{"id":2250,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2251],"locationId":7},{"id":2251,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2252],"locationId":6},{"id":2252,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2253,2270],"locationId":8},{"id":2253,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2254],"locationId":157},{"id":2254,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2255],"locationId":158},{"id":2255,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2256],"locationId":29},{"id":2256,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[2257],"locationId":159},{"id":2257,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":82,"ticks":1,"startLocationId":355,"endLocationId":441}],"locationId":160},{"id":2270,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2271],"locationId":9},{"id":2271,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2272],"locationId":6},{"id":2272,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2273,2312,2323],"locationId":10},{"id":2273,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":384,"ticks":1,"startLocationId":435,"endLocationId":436}],"locationId":151},{"id":2312,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2313],"locationId":11},{"id":2313,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2314,2334],"locationId":12},{"id":2314,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[2315],"locationId":372},{"id":2315,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[2316],"locationId":373},{"id":2316,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":1,"positionTicks":[{"line":245,"ticks":1,"startLocationId":547,"endLocationId":548}],"locationId":545},{"id":2334,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2335],"locationId":13},{"id":2335,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2336,2337],"locationId":14},{"id":2336,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":634,"ticks":1,"startLocationId":255,"endLocationId":221}],"locationId":36},{"id":2337,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":2323,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2324],"locationId":84},{"id":2324,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2325],"locationId":6},{"id":2325,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2326],"locationId":85},{"id":2326,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2327],"locationId":86},{"id":2327,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2328],"locationId":87},{"id":2328,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2329],"locationId":88},{"id":2329,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2330],"locationId":74},{"id":2330,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2331],"locationId":89},{"id":2331,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[2343,2390,2405],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":2343,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"children":[2432],"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2432,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2390,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2391],"locationId":117},{"id":2391,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2392],"locationId":118},{"id":2392,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2393],"locationId":123},{"id":2393,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2394],"locationId":29},{"id":2394,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2405,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[2406],"locationId":102},{"id":2406,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":2489,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2490],"locationId":3},{"id":2490,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2491],"locationId":4},{"id":2491,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2492],"locationId":1},{"id":2492,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2493,2653],"locationId":2},{"id":2493,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2494],"locationId":5},{"id":2494,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2495],"locationId":6},{"id":2495,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2496],"locationId":7},{"id":2496,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2497],"locationId":6},{"id":2497,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2498],"locationId":8},{"id":2498,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2499],"locationId":9},{"id":2499,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2500],"locationId":6},{"id":2500,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2501,2551,2573],"locationId":10},{"id":2501,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2502],"locationId":84},{"id":2502,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2503],"locationId":6},{"id":2503,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2504],"locationId":85},{"id":2504,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2505],"locationId":86},{"id":2505,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2506],"locationId":87},{"id":2506,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2507],"locationId":88},{"id":2507,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2508],"locationId":74},{"id":2508,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2509],"locationId":89},{"id":2509,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[2568,2586,2589,2613],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":2568,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2586,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2587],"locationId":40},{"id":2587,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2588],"locationId":29},{"id":2588,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2589,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2590],"locationId":117},{"id":2590,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2591],"locationId":118},{"id":2591,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2592],"locationId":123},{"id":2592,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2593],"locationId":29},{"id":2593,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2613,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2614],"locationId":97},{"id":2614,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2551,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2573,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2574],"locationId":11},{"id":2574,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2575],"locationId":12},{"id":2575,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2576],"locationId":13},{"id":2576,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2577],"locationId":14},{"id":2577,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[2578],"locationId":46},{"id":2578,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":2653,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2654],"locationId":3},{"id":2654,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2655],"locationId":4},{"id":2655,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2656],"locationId":1},{"id":2656,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2657,2836],"locationId":2},{"id":2657,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2658],"locationId":5},{"id":2658,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2659],"locationId":6},{"id":2659,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2660],"locationId":7},{"id":2660,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2661],"locationId":6},{"id":2661,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2662],"locationId":8},{"id":2662,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2663],"locationId":9},{"id":2663,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2664],"locationId":6},{"id":2664,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2665,2698,2744],"locationId":10},{"id":2665,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2698,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2699],"locationId":84},{"id":2699,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2700],"locationId":6},{"id":2700,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2701],"locationId":85},{"id":2701,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2702],"locationId":86},{"id":2702,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2703],"locationId":87},{"id":2703,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2704],"locationId":88},{"id":2704,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2705],"locationId":74},{"id":2705,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[2758],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2758,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2805],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":2805,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2806],"locationId":40},{"id":2806,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2807],"locationId":29},{"id":2807,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2744,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2745],"locationId":11},{"id":2745,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2746],"locationId":12},{"id":2746,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2747],"locationId":13},{"id":2747,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2748,2781],"locationId":14},{"id":2748,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":2781,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[2782],"locationId":64},{"id":2782,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[2783],"locationId":65},{"id":2783,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":2836,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2837],"locationId":3},{"id":2837,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2838],"locationId":4},{"id":2838,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2839],"locationId":1},{"id":2839,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2840,2889],"locationId":2},{"id":2840,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2841],"locationId":3},{"id":2841,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2842],"locationId":4},{"id":2842,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2843],"locationId":1},{"id":2843,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2844,3119],"locationId":2},{"id":2844,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2845],"locationId":5},{"id":2845,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2846],"locationId":6},{"id":2846,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2847,2998],"locationId":7},{"id":2847,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":2998,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2999],"locationId":6},{"id":2999,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3000],"locationId":8},{"id":3000,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3001],"locationId":9},{"id":3001,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3002],"locationId":6},{"id":3002,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3003],"locationId":10},{"id":3003,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3004],"locationId":84},{"id":3004,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3005],"locationId":6},{"id":3005,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3006],"locationId":85},{"id":3006,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3007],"locationId":86},{"id":3007,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3008],"locationId":87},{"id":3008,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3009],"locationId":88},{"id":3009,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3010],"locationId":74},{"id":3010,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3011,3013],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3011,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":3013,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[3015,3047,3094,3132],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":3015,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[3137],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3137,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3138],"locationId":114},{"id":3138,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3047,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":3,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99},{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":3094,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[3095],"locationId":117},{"id":3095,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[3096],"locationId":118},{"id":3096,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[3097],"locationId":123},{"id":3097,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3098],"locationId":29},{"id":3098,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3132,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3133],"locationId":40},{"id":3133,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3134],"locationId":29},{"id":3134,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3119,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3120],"locationId":3},{"id":3120,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3121],"locationId":4},{"id":3121,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3122],"locationId":1},{"id":3122,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3123,3275],"locationId":2},{"id":3123,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3124],"locationId":5},{"id":3124,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3125],"locationId":6},{"id":3125,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3126],"locationId":7},{"id":3126,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3127],"locationId":6},{"id":3127,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3128],"locationId":8},{"id":3128,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3129],"locationId":9},{"id":3129,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3130],"locationId":6},{"id":3130,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[3206,3237,3268],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":3206,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3207],"locationId":84},{"id":3207,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3208],"locationId":6},{"id":3208,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3209],"locationId":85},{"id":3209,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3210],"locationId":86},{"id":3210,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3211],"locationId":87},{"id":3211,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3212],"locationId":88},{"id":3212,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3213],"locationId":74},{"id":3213,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[3214],"locationId":89},{"id":3214,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[3260,3265,3303],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":3260,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[3369],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3369,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3370],"locationId":109},{"id":3370,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3371],"locationId":109},{"id":3371,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3265,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3266],"locationId":40},{"id":3266,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3267,3309],"locationId":29},{"id":3267,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":54},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":562,"endLocationId":563}],"locationId":561},{"id":3309,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3303,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3237,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3268,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3269],"locationId":11},{"id":3269,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3270,3297],"locationId":12},{"id":3270,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":883,"ticks":1,"startLocationId":564,"endLocationId":565}],"locationId":72},{"id":3297,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3298],"locationId":13},{"id":3298,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3299],"locationId":14},{"id":3299,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":3275,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3276],"locationId":3},{"id":3276,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3277],"locationId":4},{"id":3277,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3278],"locationId":1},{"id":3278,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3279,3335],"locationId":2},{"id":3279,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3280],"locationId":5},{"id":3280,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3281],"locationId":6},{"id":3281,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3282],"locationId":7},{"id":3282,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3283],"locationId":6},{"id":3283,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3284,3359],"locationId":8},{"id":3284,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[3285],"locationId":157},{"id":3285,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[3286],"locationId":158},{"id":3286,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3287],"locationId":29},{"id":3287,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":3359,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3360],"locationId":9},{"id":3360,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3361],"locationId":6},{"id":3361,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3362,3377,3396],"locationId":10},{"id":3362,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":6,"positionTicks":[{"line":547,"ticks":4,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":3377,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3378],"locationId":11},{"id":3378,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3379],"locationId":12},{"id":3379,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3380],"locationId":13},{"id":3380,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3381],"locationId":14},{"id":3381,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[3382],"locationId":15},{"id":3382,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":3396,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3397],"locationId":84},{"id":3397,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3398],"locationId":6},{"id":3398,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3399],"locationId":85},{"id":3399,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3400],"locationId":86},{"id":3400,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3401],"locationId":87},{"id":3401,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3402],"locationId":88},{"id":3402,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3403],"locationId":74},{"id":3403,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[3404],"locationId":89},{"id":3404,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[3486],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":3486,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3487],"locationId":40},{"id":3487,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3488],"locationId":29},{"id":3488,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3335,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3336],"locationId":3},{"id":3336,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3337],"locationId":4},{"id":3337,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3338],"locationId":1},{"id":3338,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3339,3494],"locationId":2},{"id":3339,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3340],"locationId":5},{"id":3340,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3341],"locationId":6},{"id":3341,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3342,3426],"locationId":7},{"id":3342,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":3426,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3427],"locationId":6},{"id":3427,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3428],"locationId":8},{"id":3428,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3429],"locationId":9},{"id":3429,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3430],"locationId":6},{"id":3430,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[3493,3517],"positionTicks":[{"line":562,"ticks":1,"startLocationId":566,"endLocationId":567}],"locationId":10},{"id":3493,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":1,"children":[3502],"positionTicks":[{"line":40,"ticks":1,"startLocationId":467,"endLocationId":468}],"locationId":11},{"id":3502,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3503],"locationId":12},{"id":3503,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3504],"locationId":13},{"id":3504,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":3517,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3518],"locationId":84},{"id":3518,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3519],"locationId":6},{"id":3519,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3520],"locationId":85},{"id":3520,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3521],"locationId":86},{"id":3521,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3522],"locationId":87},{"id":3522,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3523],"locationId":88},{"id":3523,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3524],"locationId":74},{"id":3524,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[3575],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3575,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[3576,3609],"locationId":90},{"id":3576,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3609,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[3610],"locationId":117},{"id":3610,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[3611],"locationId":118},{"id":3611,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[3612],"locationId":123},{"id":3612,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3613],"locationId":29},{"id":3613,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3494,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3495],"locationId":3},{"id":3495,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3496],"locationId":4},{"id":3496,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3497],"locationId":1},{"id":3497,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3498,3766],"locationId":2},{"id":3498,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3499],"locationId":5},{"id":3499,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3500],"locationId":6},{"id":3500,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3501,3650],"locationId":7},{"id":3501,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":3650,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3651],"locationId":6},{"id":3651,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3652],"locationId":8},{"id":3652,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3653],"locationId":9},{"id":3653,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3654],"locationId":6},{"id":3654,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3655,3670,3685],"locationId":10},{"id":3655,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":3670,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3671],"locationId":84},{"id":3671,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3672],"locationId":6},{"id":3672,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3673],"locationId":85},{"id":3673,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3674],"locationId":86},{"id":3674,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3675],"locationId":87},{"id":3675,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3676],"locationId":88},{"id":3676,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3677],"locationId":74},{"id":3677,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3678],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3678,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[3801,3823],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":3801,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3802],"locationId":109},{"id":3802,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3823,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3824],"locationId":40},{"id":3824,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3825],"locationId":29},{"id":3825,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3685,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3686],"locationId":11},{"id":3686,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3687],"locationId":12},{"id":3687,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3688],"locationId":13},{"id":3688,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3689,3733],"locationId":14},{"id":3689,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":647,"ticks":2,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":3733,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[3734],"locationId":15},{"id":3734,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":3766,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3767],"locationId":3},{"id":3767,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3768],"locationId":4},{"id":3768,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3769],"locationId":1},{"id":3769,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3770],"locationId":2},{"id":3770,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3771],"locationId":5},{"id":3771,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3772],"locationId":6},{"id":3772,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3773],"locationId":7},{"id":3773,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3774],"locationId":6},{"id":3774,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3775],"locationId":8},{"id":3775,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[3776],"locationId":157},{"id":3776,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[3777],"locationId":158},{"id":3777,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3778],"locationId":29},{"id":3778,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[3779],"locationId":159},{"id":3779,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":93,"ticks":1,"startLocationId":352,"endLocationId":353}],"locationId":160},{"id":2889,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2890],"locationId":5},{"id":2890,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2891],"locationId":6},{"id":2891,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2892],"locationId":7},{"id":2892,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2893],"locationId":6},{"id":2893,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2894],"locationId":8},{"id":2894,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2895],"locationId":9},{"id":2895,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2896],"locationId":6},{"id":2896,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2897,2919],"locationId":10},{"id":2897,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2898],"locationId":84},{"id":2898,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2899],"locationId":6},{"id":2899,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2900],"locationId":85},{"id":2900,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2901],"locationId":86},{"id":2901,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2902],"locationId":87},{"id":2902,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2903],"locationId":88},{"id":2903,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2904],"locationId":74},{"id":2904,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2905,2910],"locationId":89},{"id":2905,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[2909,2964],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":2909,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2964,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2965],"locationId":109},{"id":2965,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2966],"locationId":109},{"id":2966,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2910,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":2919,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1345,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1346],"locationId":5},{"id":1346,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1347],"locationId":6},{"id":1347,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":1,"children":[1348,13211,14404],"positionTicks":[{"line":465,"ticks":1,"startLocationId":568,"endLocationId":569}],"locationId":7},{"id":1348,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":1,"children":[1349,14178,14180],"positionTicks":[{"line":139,"ticks":1,"startLocationId":570,"endLocationId":571}],"locationId":6},{"id":1349,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1350],"locationId":8},{"id":1350,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1351],"locationId":9},{"id":1351,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1352],"locationId":6},{"id":1352,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1353,1368,1475],"locationId":10},{"id":1353,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1354],"locationId":11},{"id":1354,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1355],"locationId":12},{"id":1355,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1356],"locationId":13},{"id":1356,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1357,1369],"locationId":14},{"id":1357,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":1369,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":1368,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1475,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1476],"locationId":84},{"id":1476,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1477],"locationId":6},{"id":1477,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1478],"locationId":85},{"id":1478,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1479],"locationId":86},{"id":1479,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1480],"locationId":87},{"id":1480,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1481],"locationId":88},{"id":1481,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1482],"locationId":74},{"id":1482,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1483],"locationId":89},{"id":1483,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1484],"locationId":90},{"id":1484,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1485],"locationId":40},{"id":1485,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1486],"locationId":29},{"id":1486,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14178,"callFrame":{"functionName":"get parser","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":169,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":170,"ticks":1,"startLocationId":572,"endLocationId":443}],"locationId":442},{"id":14180,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":525,"ticks":1,"startLocationId":573,"endLocationId":574}],"locationId":9},{"id":13211,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":5,"children":[13212],"positionTicks":[{"line":534,"ticks":5,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":13212,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[13213],"locationId":197},{"id":13213,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[13214],"locationId":198},{"id":13214,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13215,13417],"locationId":29},{"id":13215,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[13216],"locationId":199},{"id":13216,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":4,"positionTicks":[{"line":403,"ticks":4,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":13417,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":7,"positionTicks":[{"line":26,"ticks":7,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14404,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":0,"children":[14405],"locationId":283},{"id":14405,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":3,"positionTicks":[{"line":507,"ticks":1,"startLocationId":287,"endLocationId":288},{"line":502,"ticks":1,"startLocationId":575,"endLocationId":576},{"line":506,"ticks":1,"startLocationId":577,"endLocationId":287}],"locationId":286},{"id":1220,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1221],"locationId":5},{"id":1221,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1222],"locationId":6},{"id":1222,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1223],"locationId":7},{"id":1223,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1224],"locationId":6},{"id":1224,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1225],"locationId":8},{"id":1225,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1226],"locationId":9},{"id":1226,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1227],"locationId":6},{"id":1227,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1228,13586],"locationId":10},{"id":1228,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1229],"locationId":84},{"id":1229,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1230],"locationId":6},{"id":1230,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1231],"locationId":85},{"id":1231,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1232],"locationId":86},{"id":1232,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1233],"locationId":87},{"id":1233,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1234],"locationId":88},{"id":1234,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1235],"locationId":74},{"id":1235,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1236,13844],"locationId":89},{"id":1236,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1237,13200,13650,14330],"locationId":90},{"id":1237,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1238,13467],"locationId":109},{"id":1238,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1239,13170],"locationId":109},{"id":1239,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1240],"locationId":114},{"id":1240,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":8,"children":[1241],"positionTicks":[{"line":29,"ticks":8,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1241,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[1242],"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1242,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13170,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13171,13546],"locationId":109},{"id":13171,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":11,"positionTicks":[{"line":27,"ticks":11,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13546,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[13547,14192],"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13547,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":145,"ticks":2,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":14192,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":13467,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13468],"locationId":114},{"id":13468,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13469],"locationId":114},{"id":13469,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":10,"children":[13693,13804],"positionTicks":[{"line":29,"ticks":10,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13693,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":145,"ticks":2,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":13804,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":2,"startLocationId":245,"endLocationId":246},{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13200,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[13201],"locationId":97},{"id":13201,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[13202],"locationId":97},{"id":13202,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[13598],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":13598,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":6,"positionTicks":[{"line":48,"ticks":6,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":13650,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[13651],"locationId":102},{"id":13651,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"children":[13652],"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579}],"locationId":247},{"id":13652,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[13653],"locationId":248},{"id":13653,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[13654],"locationId":249},{"id":13654,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":4,"positionTicks":[{"line":82,"ticks":4,"startLocationId":251,"endLocationId":252}],"locationId":250},{"id":14330,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[14331],"locationId":239},{"id":14331,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":0,"children":[14332],"locationId":240},{"id":14332,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":0,"children":[14333],"locationId":262},{"id":14333,"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":418,"endLocationId":419}],"locationId":417},{"id":13844,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":0,"children":[13845],"locationId":129},{"id":13845,"callFrame":{"functionName":"addDiagnosticOnce","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":231,"columnNumber":21},"hitCount":0,"children":[13846],"locationId":580},{"id":13846,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13847],"locationId":29},{"id":13847,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":232,"columnNumber":126},"hitCount":1,"positionTicks":[{"line":234,"ticks":1,"startLocationId":582,"endLocationId":583}],"locationId":581},{"id":13586,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[13587],"locationId":11},{"id":13587,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[13588],"locationId":12},{"id":13588,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[13589],"locationId":13},{"id":13589,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[13590],"locationId":14},{"id":13590,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[13591],"locationId":15},{"id":13591,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[13592],"locationId":28},{"id":13592,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13593],"locationId":29},{"id":13593,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":47},"hitCount":0,"children":[13594],"locationId":30},{"id":13594,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[13595],"locationId":13},{"id":13595,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[13596],"locationId":164},{"id":13596,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13597],"locationId":29},{"id":13597,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9433,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9434],"locationId":4},{"id":9434,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9435],"locationId":1},{"id":9435,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9436],"locationId":2},{"id":9436,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9437],"locationId":4},{"id":9437,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9438],"locationId":1},{"id":9438,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9439],"locationId":2},{"id":9439,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9440],"locationId":4},{"id":9440,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9441],"locationId":1},{"id":9441,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9442],"locationId":2},{"id":9442,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9443],"locationId":4},{"id":9443,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9444],"locationId":1},{"id":9444,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":11981,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11982],"locationId":5},{"id":11982,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11983],"locationId":6},{"id":11983,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11984],"locationId":7},{"id":11984,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11985],"locationId":6},{"id":11985,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11986],"locationId":8},{"id":11986,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11987],"locationId":9},{"id":11987,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11988],"locationId":6},{"id":11988,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11989],"locationId":10},{"id":11989,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11990],"locationId":84},{"id":11990,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11991],"locationId":6},{"id":11991,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11992],"locationId":85},{"id":11992,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11993],"locationId":86},{"id":11993,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11994],"locationId":87},{"id":11994,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11995],"locationId":88},{"id":11995,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11996],"locationId":74},{"id":11996,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11997],"locationId":89},{"id":11997,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11998],"locationId":90},{"id":11998,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11999,13558],"locationId":109},{"id":11999,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[12000,13551],"locationId":109},{"id":12000,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[12001],"locationId":109},{"id":12001,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[12002,13123],"locationId":109},{"id":12002,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[12003,14274],"locationId":109},{"id":12003,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[12004],"locationId":114},{"id":12004,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[12005],"locationId":114},{"id":12005,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[12006],"locationId":114},{"id":12006,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14274,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14275],"locationId":109},{"id":14275,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14276],"locationId":109},{"id":14276,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13123,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13124],"locationId":114},{"id":13124,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13125],"locationId":114},{"id":13125,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13126],"locationId":114},{"id":13126,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13551,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13552],"locationId":114},{"id":13552,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13553],"locationId":114},{"id":13553,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13554],"locationId":114},{"id":13554,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13555],"locationId":114},{"id":13555,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13556],"locationId":114},{"id":13556,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[13557,13848],"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13557,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":13848,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13558,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13559],"locationId":114},{"id":13559,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13560],"locationId":114},{"id":13560,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13561],"locationId":114},{"id":13561,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13562],"locationId":114},{"id":13562,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13563],"locationId":114},{"id":13563,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13564],"locationId":114},{"id":13564,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":29,"ticks":4,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13661,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13662],"locationId":5},{"id":13662,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13663],"locationId":6},{"id":13663,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13664],"locationId":7},{"id":13664,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13665],"locationId":6},{"id":13665,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13666],"locationId":8},{"id":13666,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13667],"locationId":9},{"id":13667,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13668],"locationId":6},{"id":13668,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13669],"locationId":10},{"id":13669,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13670],"locationId":84},{"id":13670,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13671],"locationId":6},{"id":13671,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13672],"locationId":85},{"id":13672,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13673],"locationId":86},{"id":13673,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13674],"locationId":87},{"id":13674,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13675],"locationId":88},{"id":13675,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13676],"locationId":74},{"id":13676,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13677],"locationId":89},{"id":13677,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13678],"locationId":90},{"id":13678,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13679,14026],"locationId":109},{"id":13679,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13680],"locationId":114},{"id":13680,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13681],"locationId":114},{"id":13681,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13682],"locationId":114},{"id":13682,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13683],"locationId":114},{"id":13683,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13684],"locationId":114},{"id":13684,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13685],"locationId":114},{"id":13685,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13686],"locationId":114},{"id":13686,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13687],"locationId":114},{"id":13687,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13688],"locationId":114},{"id":13688,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13689],"locationId":114},{"id":13689,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14026,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14027],"locationId":109},{"id":14027,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14028],"locationId":109},{"id":14028,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14029,14432],"locationId":109},{"id":14029,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14030],"locationId":114},{"id":14030,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14031],"locationId":114},{"id":14031,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14032],"locationId":114},{"id":14032,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14033],"locationId":114},{"id":14033,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14034],"locationId":114},{"id":14034,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14035],"locationId":114},{"id":14035,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14036],"locationId":114},{"id":14036,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14432,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14433],"locationId":109},{"id":14433,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14434],"locationId":114},{"id":14434,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14435],"locationId":114},{"id":14435,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14436],"locationId":114},{"id":14436,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14437],"locationId":114},{"id":14437,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14438],"locationId":114},{"id":14438,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14439],"locationId":114},{"id":14439,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9355,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9356],"locationId":4},{"id":9356,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9357],"locationId":1},{"id":9357,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9358],"locationId":2},{"id":9358,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9359],"locationId":4},{"id":9359,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9360],"locationId":1},{"id":9360,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9361],"locationId":2},{"id":9361,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9362],"locationId":4},{"id":9362,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9363],"locationId":1},{"id":9363,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9364],"locationId":2},{"id":9364,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9365],"locationId":4},{"id":9365,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9366],"locationId":1},{"id":9366,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9367],"locationId":2},{"id":9367,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9368],"locationId":4},{"id":9368,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9369],"locationId":1},{"id":9369,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9370],"locationId":2},{"id":9370,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9371],"locationId":4},{"id":9371,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9372],"locationId":1},{"id":9372,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9373],"locationId":2},{"id":9373,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9374],"locationId":4},{"id":9374,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9375],"locationId":1},{"id":9375,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9376],"locationId":2},{"id":9376,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9377],"locationId":4},{"id":9377,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9378],"locationId":1},{"id":9378,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":14042,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14043],"locationId":5},{"id":14043,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14044],"locationId":6},{"id":14044,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14045],"locationId":7},{"id":14045,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14046],"locationId":6},{"id":14046,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14047],"locationId":8},{"id":14047,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14048],"locationId":9},{"id":14048,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14049],"locationId":6},{"id":14049,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14050],"locationId":10},{"id":14050,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14051],"locationId":84},{"id":14051,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14052],"locationId":6},{"id":14052,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14053],"locationId":85},{"id":14053,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14054],"locationId":86},{"id":14054,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14055],"locationId":87},{"id":14055,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14056],"locationId":88},{"id":14056,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14057],"locationId":74},{"id":14057,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14058],"locationId":89},{"id":14058,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[14059],"locationId":90},{"id":14059,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14060],"locationId":109},{"id":14060,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14061],"locationId":109},{"id":14061,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14062],"locationId":109},{"id":14062,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14063],"locationId":109},{"id":14063,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14064],"locationId":109},{"id":14064,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14065],"locationId":109},{"id":14065,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14066],"locationId":109},{"id":14066,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14067],"locationId":109},{"id":14067,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14068],"locationId":109},{"id":14068,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14069],"locationId":109},{"id":14069,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14070],"locationId":109},{"id":14070,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14071],"locationId":109},{"id":14071,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14072],"locationId":109},{"id":14072,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14073],"locationId":109},{"id":14073,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14074],"locationId":109},{"id":14074,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13609,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13610],"locationId":5},{"id":13610,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13611],"locationId":6},{"id":13611,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13612],"locationId":7},{"id":13612,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13613],"locationId":6},{"id":13613,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13614],"locationId":8},{"id":13614,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13615],"locationId":9},{"id":13615,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13616],"locationId":6},{"id":13616,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13617],"locationId":10},{"id":13617,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13618],"locationId":84},{"id":13618,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13619],"locationId":6},{"id":13619,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13620],"locationId":85},{"id":13620,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13621],"locationId":86},{"id":13621,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13622],"locationId":87},{"id":13622,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13623],"locationId":88},{"id":13623,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13624],"locationId":74},{"id":13624,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13625],"locationId":89},{"id":13625,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13626],"locationId":90},{"id":13626,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13627],"locationId":109},{"id":13627,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13628],"locationId":109},{"id":13628,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13629],"locationId":109},{"id":13629,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13630],"locationId":109},{"id":13630,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13631],"locationId":109},{"id":13631,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13632],"locationId":109},{"id":13632,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13633],"locationId":109},{"id":13633,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13634],"locationId":109},{"id":13634,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13635],"locationId":109},{"id":13635,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13636],"locationId":109},{"id":13636,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13637],"locationId":109},{"id":13637,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13638],"locationId":109},{"id":13638,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13639],"locationId":109},{"id":13639,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13640],"locationId":109},{"id":13640,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13641],"locationId":109},{"id":13641,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13642],"locationId":109},{"id":13642,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13643],"locationId":109},{"id":13643,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13644],"locationId":109},{"id":13644,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13645],"locationId":109},{"id":13645,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13646],"locationId":109},{"id":13646,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13647],"locationId":109},{"id":13647,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13648],"locationId":109},{"id":13648,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13649],"locationId":109},{"id":13649,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9229,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9230],"locationId":4},{"id":9230,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9231],"locationId":1},{"id":9231,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9232],"locationId":2},{"id":9232,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9233],"locationId":4},{"id":9233,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9234],"locationId":1},{"id":9234,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9235],"locationId":2},{"id":9235,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9236],"locationId":4},{"id":9236,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9237],"locationId":1},{"id":9237,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9238],"locationId":2},{"id":9238,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9239],"locationId":4},{"id":9239,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9240],"locationId":1},{"id":9240,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9241],"locationId":2},{"id":9241,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9242],"locationId":4},{"id":9242,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9243],"locationId":1},{"id":9243,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9244],"locationId":2},{"id":9244,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9245],"locationId":4},{"id":9245,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9246],"locationId":1},{"id":9246,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9247],"locationId":2},{"id":9247,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9248],"locationId":4},{"id":9248,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9249],"locationId":1},{"id":9249,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9250],"locationId":2},{"id":9250,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9251],"locationId":4},{"id":9251,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9252],"locationId":1},{"id":9252,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9253],"locationId":2},{"id":9253,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9254],"locationId":4},{"id":9254,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9255],"locationId":1},{"id":9255,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9256],"locationId":2},{"id":9256,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9257],"locationId":4},{"id":9257,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9258],"locationId":1},{"id":9258,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9259],"locationId":2},{"id":9259,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9260],"locationId":4},{"id":9260,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9261],"locationId":1},{"id":9261,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9262],"locationId":2},{"id":9262,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9263],"locationId":4},{"id":9263,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9264],"locationId":1},{"id":9264,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":13345,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13346],"locationId":5},{"id":13346,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13347],"locationId":6},{"id":13347,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13348],"locationId":7},{"id":13348,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13349],"locationId":6},{"id":13349,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13350],"locationId":8},{"id":13350,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13351],"locationId":9},{"id":13351,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13352],"locationId":6},{"id":13352,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13353],"locationId":10},{"id":13353,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13354],"locationId":84},{"id":13354,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13355],"locationId":6},{"id":13355,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13356],"locationId":85},{"id":13356,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13357],"locationId":86},{"id":13357,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13358],"locationId":87},{"id":13358,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13359],"locationId":88},{"id":13359,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13360],"locationId":74},{"id":13360,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13361],"locationId":89},{"id":13361,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13362],"locationId":90},{"id":13362,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13363],"locationId":109},{"id":13363,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13364],"locationId":109},{"id":13364,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13365],"locationId":109},{"id":13365,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13366],"locationId":109},{"id":13366,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13367],"locationId":109},{"id":13367,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13368],"locationId":109},{"id":13368,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13369],"locationId":109},{"id":13369,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13370],"locationId":109},{"id":13370,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13371],"locationId":109},{"id":13371,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13372],"locationId":109},{"id":13372,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13373],"locationId":109},{"id":13373,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13374],"locationId":109},{"id":13374,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13375],"locationId":109},{"id":13375,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13376],"locationId":109},{"id":13376,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13377],"locationId":109},{"id":13377,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13378],"locationId":109},{"id":13378,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13379],"locationId":109},{"id":13379,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13380],"locationId":109},{"id":13380,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13381],"locationId":109},{"id":13381,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13382],"locationId":109},{"id":13382,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13383],"locationId":109},{"id":13383,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13384],"locationId":109},{"id":13384,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13385],"locationId":109},{"id":13385,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13386],"locationId":109},{"id":13386,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13387],"locationId":109},{"id":13387,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13388],"locationId":109},{"id":13388,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13389],"locationId":109},{"id":13389,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13390],"locationId":109},{"id":13390,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13391],"locationId":109},{"id":13391,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13392],"locationId":109},{"id":13392,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13393],"locationId":109},{"id":13393,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13394],"locationId":109},{"id":13394,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111},{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":9055,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9056],"locationId":4},{"id":9056,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9057],"locationId":1},{"id":9057,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9058],"locationId":2},{"id":9058,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9059],"locationId":4},{"id":9059,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9060],"locationId":1},{"id":9060,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9061],"locationId":2},{"id":9061,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9062],"locationId":4},{"id":9062,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9063],"locationId":1},{"id":9063,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9064],"locationId":2},{"id":9064,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9065],"locationId":4},{"id":9065,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9066],"locationId":1},{"id":9066,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9067],"locationId":2},{"id":9067,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9068],"locationId":4},{"id":9068,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9069],"locationId":1},{"id":9069,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9070],"locationId":2},{"id":9070,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9071],"locationId":4},{"id":9071,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9072],"locationId":1},{"id":9072,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9073],"locationId":2},{"id":9073,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9074],"locationId":4},{"id":9074,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9075],"locationId":1},{"id":9075,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9076],"locationId":2},{"id":9076,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9077],"locationId":4},{"id":9077,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9078],"locationId":1},{"id":9078,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9079],"locationId":2},{"id":9079,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9080],"locationId":4},{"id":9080,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9081],"locationId":1},{"id":9081,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9082],"locationId":2},{"id":9082,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9083],"locationId":4},{"id":9083,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9084],"locationId":1},{"id":9084,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9085],"locationId":2},{"id":9085,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9086],"locationId":4},{"id":9086,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9087],"locationId":1},{"id":9087,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9088],"locationId":2},{"id":9088,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9089],"locationId":4},{"id":9089,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9090],"locationId":1},{"id":9090,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9091],"locationId":2},{"id":9091,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9092],"locationId":4},{"id":9092,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9093],"locationId":1},{"id":9093,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9094],"locationId":2},{"id":9094,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9095],"locationId":4},{"id":9095,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9096],"locationId":1},{"id":9096,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9097],"locationId":2},{"id":9097,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9098],"locationId":4},{"id":9098,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9099],"locationId":1},{"id":9099,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9100],"locationId":2},{"id":9100,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9101],"locationId":4},{"id":9101,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9102],"locationId":1},{"id":9102,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":14346,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14347],"locationId":5},{"id":14347,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14348],"locationId":6},{"id":14348,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14349],"locationId":7},{"id":14349,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14350],"locationId":6},{"id":14350,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14351],"locationId":8},{"id":14351,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14352],"locationId":9},{"id":14352,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14353],"locationId":6},{"id":14353,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14354],"locationId":10},{"id":14354,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14355],"locationId":84},{"id":14355,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14356],"locationId":6},{"id":14356,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14357],"locationId":85},{"id":14357,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14358],"locationId":86},{"id":14358,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14359],"locationId":87},{"id":14359,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14360],"locationId":88},{"id":14360,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14361],"locationId":74},{"id":14361,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14362],"locationId":89},{"id":14362,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[14363],"locationId":90},{"id":14363,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14364],"locationId":109},{"id":14364,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14365],"locationId":109},{"id":14365,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14366],"locationId":109},{"id":14366,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14367],"locationId":109},{"id":14367,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14368],"locationId":109},{"id":14368,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14369],"locationId":109},{"id":14369,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14370],"locationId":109},{"id":14370,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14371],"locationId":109},{"id":14371,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14372],"locationId":109},{"id":14372,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14373],"locationId":109},{"id":14373,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14374],"locationId":109},{"id":14374,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14375],"locationId":109},{"id":14375,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14376],"locationId":109},{"id":14376,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14377],"locationId":109},{"id":14377,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14378],"locationId":109},{"id":14378,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14379],"locationId":109},{"id":14379,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14380],"locationId":109},{"id":14380,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14381],"locationId":109},{"id":14381,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14382],"locationId":109},{"id":14382,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14383],"locationId":109},{"id":14383,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14384],"locationId":109},{"id":14384,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14385],"locationId":109},{"id":14385,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14386],"locationId":109},{"id":14386,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14387],"locationId":109},{"id":14387,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14388],"locationId":109},{"id":14388,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14389],"locationId":109},{"id":14389,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14390],"locationId":109},{"id":14390,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14391],"locationId":109},{"id":14391,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14392],"locationId":109},{"id":14392,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14393],"locationId":109},{"id":14393,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14394],"locationId":109},{"id":14394,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14395],"locationId":109},{"id":14395,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14396],"locationId":109},{"id":14396,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14397],"locationId":109},{"id":14397,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14398],"locationId":109},{"id":14398,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14399],"locationId":109},{"id":14399,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14400],"locationId":109},{"id":14400,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14401],"locationId":109},{"id":14401,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14402],"locationId":109},{"id":14402,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":8833,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8834],"locationId":4},{"id":8834,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8835],"locationId":1},{"id":8835,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8836],"locationId":2},{"id":8836,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8837],"locationId":4},{"id":8837,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8838],"locationId":1},{"id":8838,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8839],"locationId":2},{"id":8839,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8840],"locationId":4},{"id":8840,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8841],"locationId":1},{"id":8841,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8842],"locationId":2},{"id":8842,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8843],"locationId":4},{"id":8843,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8844],"locationId":1},{"id":8844,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8845],"locationId":2},{"id":8845,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8846],"locationId":4},{"id":8846,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8847],"locationId":1},{"id":8847,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8848],"locationId":2},{"id":8848,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8849],"locationId":4},{"id":8849,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8850],"locationId":1},{"id":8850,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8851],"locationId":2},{"id":8851,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8852],"locationId":4},{"id":8852,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8853],"locationId":1},{"id":8853,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8854],"locationId":2},{"id":8854,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8855],"locationId":4},{"id":8855,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8856],"locationId":1},{"id":8856,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8857],"locationId":2},{"id":8857,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8858],"locationId":4},{"id":8858,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8859],"locationId":1},{"id":8859,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8860],"locationId":2},{"id":8860,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8861],"locationId":4},{"id":8861,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8862],"locationId":1},{"id":8862,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8863],"locationId":2},{"id":8863,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8864],"locationId":4},{"id":8864,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8865],"locationId":1},{"id":8865,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8866],"locationId":2},{"id":8866,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8867],"locationId":4},{"id":8867,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8868],"locationId":1},{"id":8868,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8869],"locationId":2},{"id":8869,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8870],"locationId":4},{"id":8870,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8871],"locationId":1},{"id":8871,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8872],"locationId":2},{"id":8872,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8873],"locationId":4},{"id":8873,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8874],"locationId":1},{"id":8874,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8875],"locationId":2},{"id":8875,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8876],"locationId":4},{"id":8876,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8877],"locationId":1},{"id":8877,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8878],"locationId":2},{"id":8878,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8879],"locationId":4},{"id":8879,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8880],"locationId":1},{"id":8880,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8881],"locationId":2},{"id":8881,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8882],"locationId":4},{"id":8882,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8883],"locationId":1},{"id":8883,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8884],"locationId":2},{"id":8884,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8885],"locationId":4},{"id":8885,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8886],"locationId":1},{"id":8886,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8887],"locationId":2},{"id":8887,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8888],"locationId":4},{"id":8888,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8889],"locationId":1},{"id":8889,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8890],"locationId":2},{"id":8890,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8891],"locationId":4},{"id":8891,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8892],"locationId":1},{"id":8892,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8563,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8564],"locationId":4},{"id":8564,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8565],"locationId":1},{"id":8565,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8566],"locationId":2},{"id":8566,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8567],"locationId":4},{"id":8567,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8568],"locationId":1},{"id":8568,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8569],"locationId":2},{"id":8569,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8570],"locationId":4},{"id":8570,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8571],"locationId":1},{"id":8571,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8572],"locationId":2},{"id":8572,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8573],"locationId":4},{"id":8573,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8574],"locationId":1},{"id":8574,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8575],"locationId":2},{"id":8575,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8576],"locationId":4},{"id":8576,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8577],"locationId":1},{"id":8577,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8578],"locationId":2},{"id":8578,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8579],"locationId":4},{"id":8579,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8580],"locationId":1},{"id":8580,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8581],"locationId":2},{"id":8581,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8582],"locationId":4},{"id":8582,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8583],"locationId":1},{"id":8583,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8584],"locationId":2},{"id":8584,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8585],"locationId":4},{"id":8585,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8586],"locationId":1},{"id":8586,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8587],"locationId":2},{"id":8587,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8588],"locationId":4},{"id":8588,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8589],"locationId":1},{"id":8589,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8590],"locationId":2},{"id":8590,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8591],"locationId":4},{"id":8591,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8592],"locationId":1},{"id":8592,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8593],"locationId":2},{"id":8593,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8594],"locationId":4},{"id":8594,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8595],"locationId":1},{"id":8595,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8596],"locationId":2},{"id":8596,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8597],"locationId":4},{"id":8597,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8598],"locationId":1},{"id":8598,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8599],"locationId":2},{"id":8599,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8600],"locationId":4},{"id":8600,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8601],"locationId":1},{"id":8601,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8602],"locationId":2},{"id":8602,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8603],"locationId":4},{"id":8603,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8604],"locationId":1},{"id":8604,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8605],"locationId":2},{"id":8605,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8606],"locationId":4},{"id":8606,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8607],"locationId":1},{"id":8607,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8608],"locationId":2},{"id":8608,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8609],"locationId":4},{"id":8609,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8610],"locationId":1},{"id":8610,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8611],"locationId":2},{"id":8611,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8612],"locationId":4},{"id":8612,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8613],"locationId":1},{"id":8613,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8614],"locationId":2},{"id":8614,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8615],"locationId":4},{"id":8615,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8616],"locationId":1},{"id":8616,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8617],"locationId":2},{"id":8617,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8618],"locationId":4},{"id":8618,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8619],"locationId":1},{"id":8619,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8620],"locationId":2},{"id":8620,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8621],"locationId":4},{"id":8621,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8622],"locationId":1},{"id":8622,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8623],"locationId":2},{"id":8623,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8624],"locationId":4},{"id":8624,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8625],"locationId":1},{"id":8625,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8626],"locationId":2},{"id":8626,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8627],"locationId":4},{"id":8627,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8628],"locationId":1},{"id":8628,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8629],"locationId":2},{"id":8629,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8630],"locationId":4},{"id":8630,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8631],"locationId":1},{"id":8631,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8632],"locationId":2},{"id":8632,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8633],"locationId":4},{"id":8633,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8634],"locationId":1},{"id":8634,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8245,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8246],"locationId":4},{"id":8246,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8247],"locationId":1},{"id":8247,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8248],"locationId":2},{"id":8248,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8249],"locationId":4},{"id":8249,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8250],"locationId":1},{"id":8250,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8251],"locationId":2},{"id":8251,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8252],"locationId":4},{"id":8252,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8253],"locationId":1},{"id":8253,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8254],"locationId":2},{"id":8254,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8255],"locationId":4},{"id":8255,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8256],"locationId":1},{"id":8256,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8257],"locationId":2},{"id":8257,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8258],"locationId":4},{"id":8258,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8259],"locationId":1},{"id":8259,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8260],"locationId":2},{"id":8260,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8261],"locationId":4},{"id":8261,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8262],"locationId":1},{"id":8262,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8263],"locationId":2},{"id":8263,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8264],"locationId":4},{"id":8264,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8265],"locationId":1},{"id":8265,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8266],"locationId":2},{"id":8266,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8267],"locationId":4},{"id":8267,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8268],"locationId":1},{"id":8268,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8269],"locationId":2},{"id":8269,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8270],"locationId":4},{"id":8270,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8271],"locationId":1},{"id":8271,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8272],"locationId":2},{"id":8272,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8273],"locationId":4},{"id":8273,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8274],"locationId":1},{"id":8274,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8275],"locationId":2},{"id":8275,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8276],"locationId":4},{"id":8276,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8277],"locationId":1},{"id":8277,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8278],"locationId":2},{"id":8278,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8279],"locationId":4},{"id":8279,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8280],"locationId":1},{"id":8280,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8281],"locationId":2},{"id":8281,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8282],"locationId":4},{"id":8282,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8283],"locationId":1},{"id":8283,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8284],"locationId":2},{"id":8284,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8285],"locationId":4},{"id":8285,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8286],"locationId":1},{"id":8286,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8287],"locationId":2},{"id":8287,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8288],"locationId":4},{"id":8288,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8289],"locationId":1},{"id":8289,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8290],"locationId":2},{"id":8290,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8291],"locationId":4},{"id":8291,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8292],"locationId":1},{"id":8292,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8293],"locationId":2},{"id":8293,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8294],"locationId":4},{"id":8294,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8295],"locationId":1},{"id":8295,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8296],"locationId":2},{"id":8296,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8297],"locationId":4},{"id":8297,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8298],"locationId":1},{"id":8298,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8299],"locationId":2},{"id":8299,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8300],"locationId":4},{"id":8300,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8301],"locationId":1},{"id":8301,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8302],"locationId":2},{"id":8302,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8303],"locationId":4},{"id":8303,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8304],"locationId":1},{"id":8304,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8305],"locationId":2},{"id":8305,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8306],"locationId":4},{"id":8306,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8307],"locationId":1},{"id":8307,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8308],"locationId":2},{"id":8308,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8309],"locationId":4},{"id":8309,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8310],"locationId":1},{"id":8310,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8311],"locationId":2},{"id":8311,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8312],"locationId":4},{"id":8312,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8313],"locationId":1},{"id":8313,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8314],"locationId":2},{"id":8314,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8315],"locationId":4},{"id":8315,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8316],"locationId":1},{"id":8316,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8317],"locationId":2},{"id":8317,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8318],"locationId":4},{"id":8318,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8319],"locationId":1},{"id":8319,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8320],"locationId":2},{"id":8320,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8321],"locationId":4},{"id":8321,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8322],"locationId":1},{"id":8322,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8323],"locationId":2},{"id":8323,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8324],"locationId":4},{"id":8324,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8325],"locationId":1},{"id":8325,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8326],"locationId":2},{"id":8326,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8327],"locationId":4},{"id":8327,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8328],"locationId":1},{"id":8328,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7879,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7880],"locationId":4},{"id":7880,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7881],"locationId":1},{"id":7881,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7882],"locationId":2},{"id":7882,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7883],"locationId":4},{"id":7883,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7884],"locationId":1},{"id":7884,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7885],"locationId":2},{"id":7885,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7886],"locationId":4},{"id":7886,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7887],"locationId":1},{"id":7887,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7888],"locationId":2},{"id":7888,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7889],"locationId":4},{"id":7889,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7890],"locationId":1},{"id":7890,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7891],"locationId":2},{"id":7891,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7892],"locationId":4},{"id":7892,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7893],"locationId":1},{"id":7893,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7894],"locationId":2},{"id":7894,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7895],"locationId":4},{"id":7895,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7896],"locationId":1},{"id":7896,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7897],"locationId":2},{"id":7897,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7898],"locationId":4},{"id":7898,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7899],"locationId":1},{"id":7899,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7900],"locationId":2},{"id":7900,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7901],"locationId":4},{"id":7901,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7902],"locationId":1},{"id":7902,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7903],"locationId":2},{"id":7903,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7904],"locationId":4},{"id":7904,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7905],"locationId":1},{"id":7905,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7906],"locationId":2},{"id":7906,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7907],"locationId":4},{"id":7907,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7908],"locationId":1},{"id":7908,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7909],"locationId":2},{"id":7909,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7910],"locationId":4},{"id":7910,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7911],"locationId":1},{"id":7911,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7912],"locationId":2},{"id":7912,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7913],"locationId":4},{"id":7913,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7914],"locationId":1},{"id":7914,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7915],"locationId":2},{"id":7915,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7916],"locationId":4},{"id":7916,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7917],"locationId":1},{"id":7917,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7918],"locationId":2},{"id":7918,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7919],"locationId":4},{"id":7919,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7920],"locationId":1},{"id":7920,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7921],"locationId":2},{"id":7921,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7922],"locationId":4},{"id":7922,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7923],"locationId":1},{"id":7923,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7924],"locationId":2},{"id":7924,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7925],"locationId":4},{"id":7925,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7926],"locationId":1},{"id":7926,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7927],"locationId":2},{"id":7927,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7928],"locationId":4},{"id":7928,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7929],"locationId":1},{"id":7929,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7930],"locationId":2},{"id":7930,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7931],"locationId":4},{"id":7931,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7932],"locationId":1},{"id":7932,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7933],"locationId":2},{"id":7933,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7934],"locationId":4},{"id":7934,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7935],"locationId":1},{"id":7935,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7936],"locationId":2},{"id":7936,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7937],"locationId":4},{"id":7937,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7938],"locationId":1},{"id":7938,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7939],"locationId":2},{"id":7939,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7940],"locationId":4},{"id":7940,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7941],"locationId":1},{"id":7941,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7942],"locationId":2},{"id":7942,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7943],"locationId":4},{"id":7943,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7944],"locationId":1},{"id":7944,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7945],"locationId":2},{"id":7945,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7946],"locationId":4},{"id":7946,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7947],"locationId":1},{"id":7947,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7948],"locationId":2},{"id":7948,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7949],"locationId":4},{"id":7949,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7950],"locationId":1},{"id":7950,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7951],"locationId":2},{"id":7951,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7952],"locationId":4},{"id":7952,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7953],"locationId":1},{"id":7953,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7954],"locationId":2},{"id":7954,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7955],"locationId":4},{"id":7955,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7956],"locationId":1},{"id":7956,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7957],"locationId":2},{"id":7957,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7958],"locationId":4},{"id":7958,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7959],"locationId":1},{"id":7959,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7960],"locationId":2},{"id":7960,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7961],"locationId":4},{"id":7961,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7962],"locationId":1},{"id":7962,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7963],"locationId":2},{"id":7963,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7964],"locationId":4},{"id":7964,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7965],"locationId":1},{"id":7965,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7966],"locationId":2},{"id":7966,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7967],"locationId":4},{"id":7967,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7968],"locationId":1},{"id":7968,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7969],"locationId":2},{"id":7969,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7970],"locationId":4},{"id":7970,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7971],"locationId":1},{"id":7971,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7972],"locationId":2},{"id":7972,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7973],"locationId":4},{"id":7973,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7974],"locationId":1},{"id":7974,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7465,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7466],"locationId":4},{"id":7466,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7467],"locationId":1},{"id":7467,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7468],"locationId":2},{"id":7468,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7469],"locationId":4},{"id":7469,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7470],"locationId":1},{"id":7470,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7471],"locationId":2},{"id":7471,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7472],"locationId":4},{"id":7472,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7473],"locationId":1},{"id":7473,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7474],"locationId":2},{"id":7474,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7475],"locationId":4},{"id":7475,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7476],"locationId":1},{"id":7476,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7477],"locationId":2},{"id":7477,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7478],"locationId":4},{"id":7478,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7479],"locationId":1},{"id":7479,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7480],"locationId":2},{"id":7480,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7481],"locationId":4},{"id":7481,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7482],"locationId":1},{"id":7482,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7483],"locationId":2},{"id":7483,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7484],"locationId":4},{"id":7484,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7485],"locationId":1},{"id":7485,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7486],"locationId":2},{"id":7486,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7487],"locationId":4},{"id":7487,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7488],"locationId":1},{"id":7488,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7489],"locationId":2},{"id":7489,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7490],"locationId":4},{"id":7490,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7491],"locationId":1},{"id":7491,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7492],"locationId":2},{"id":7492,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7493],"locationId":4},{"id":7493,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7494],"locationId":1},{"id":7494,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7495],"locationId":2},{"id":7495,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7496],"locationId":4},{"id":7496,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7497],"locationId":1},{"id":7497,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7498],"locationId":2},{"id":7498,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7499],"locationId":4},{"id":7499,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7500],"locationId":1},{"id":7500,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7501],"locationId":2},{"id":7501,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7502],"locationId":4},{"id":7502,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7503],"locationId":1},{"id":7503,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7504],"locationId":2},{"id":7504,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7505],"locationId":4},{"id":7505,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7506],"locationId":1},{"id":7506,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7507],"locationId":2},{"id":7507,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7508],"locationId":4},{"id":7508,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7509],"locationId":1},{"id":7509,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7510],"locationId":2},{"id":7510,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7511],"locationId":4},{"id":7511,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7512],"locationId":1},{"id":7512,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7513],"locationId":2},{"id":7513,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7514],"locationId":4},{"id":7514,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7515],"locationId":1},{"id":7515,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7516],"locationId":2},{"id":7516,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7517],"locationId":4},{"id":7517,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7518],"locationId":1},{"id":7518,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7519],"locationId":2},{"id":7519,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7520],"locationId":4},{"id":7520,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7521],"locationId":1},{"id":7521,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7522],"locationId":2},{"id":7522,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7523],"locationId":4},{"id":7523,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7524],"locationId":1},{"id":7524,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7525],"locationId":2},{"id":7525,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7526],"locationId":4},{"id":7526,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7527],"locationId":1},{"id":7527,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7528],"locationId":2},{"id":7528,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7529],"locationId":4},{"id":7529,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7530],"locationId":1},{"id":7530,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7531],"locationId":2},{"id":7531,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7532],"locationId":4},{"id":7532,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7533],"locationId":1},{"id":7533,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7534],"locationId":2},{"id":7534,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7535],"locationId":4},{"id":7535,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7536],"locationId":1},{"id":7536,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7537],"locationId":2},{"id":7537,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7538],"locationId":4},{"id":7538,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7539],"locationId":1},{"id":7539,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7540],"locationId":2},{"id":7540,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7541],"locationId":4},{"id":7541,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7542],"locationId":1},{"id":7542,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7543],"locationId":2},{"id":7543,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7544],"locationId":4},{"id":7544,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7545],"locationId":1},{"id":7545,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7546],"locationId":2},{"id":7546,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7547],"locationId":4},{"id":7547,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7548],"locationId":1},{"id":7548,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7549],"locationId":2},{"id":7549,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7550],"locationId":4},{"id":7550,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7551],"locationId":1},{"id":7551,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7552],"locationId":2},{"id":7552,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7553],"locationId":4},{"id":7553,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7554],"locationId":1},{"id":7554,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7555],"locationId":2},{"id":7555,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7556],"locationId":4},{"id":7556,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7557],"locationId":1},{"id":7557,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7558],"locationId":2},{"id":7558,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7559],"locationId":4},{"id":7559,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7560],"locationId":1},{"id":7560,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7561],"locationId":2},{"id":7561,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7562],"locationId":4},{"id":7562,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7563],"locationId":1},{"id":7563,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7564],"locationId":2},{"id":7564,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7565],"locationId":4},{"id":7565,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7566],"locationId":1},{"id":7566,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7567],"locationId":2},{"id":7567,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7568],"locationId":4},{"id":7568,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7569],"locationId":1},{"id":7569,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7570],"locationId":2},{"id":7570,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7571],"locationId":4},{"id":7571,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7572],"locationId":1},{"id":7572,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7003,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7004],"locationId":4},{"id":7004,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7005],"locationId":1},{"id":7005,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7006],"locationId":2},{"id":7006,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7007],"locationId":4},{"id":7007,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7008],"locationId":1},{"id":7008,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7009],"locationId":2},{"id":7009,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7010],"locationId":4},{"id":7010,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7011],"locationId":1},{"id":7011,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7012],"locationId":2},{"id":7012,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7013],"locationId":4},{"id":7013,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7014],"locationId":1},{"id":7014,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7015],"locationId":2},{"id":7015,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7016],"locationId":4},{"id":7016,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7017],"locationId":1},{"id":7017,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7018],"locationId":2},{"id":7018,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7019],"locationId":4},{"id":7019,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7020],"locationId":1},{"id":7020,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7021],"locationId":2},{"id":7021,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7022],"locationId":4},{"id":7022,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7023],"locationId":1},{"id":7023,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7024],"locationId":2},{"id":7024,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7025],"locationId":4},{"id":7025,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7026],"locationId":1},{"id":7026,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7027],"locationId":2},{"id":7027,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7028],"locationId":4},{"id":7028,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7029],"locationId":1},{"id":7029,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7030],"locationId":2},{"id":7030,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7031],"locationId":4},{"id":7031,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7032],"locationId":1},{"id":7032,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7033],"locationId":2},{"id":7033,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7034],"locationId":4},{"id":7034,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7035],"locationId":1},{"id":7035,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7036],"locationId":2},{"id":7036,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7037],"locationId":4},{"id":7037,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7038],"locationId":1},{"id":7038,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7039],"locationId":2},{"id":7039,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7040],"locationId":4},{"id":7040,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7041],"locationId":1},{"id":7041,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7042],"locationId":2},{"id":7042,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7043],"locationId":4},{"id":7043,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7044],"locationId":1},{"id":7044,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7045],"locationId":2},{"id":7045,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7046],"locationId":4},{"id":7046,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7047],"locationId":1},{"id":7047,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7048],"locationId":2},{"id":7048,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7049],"locationId":4},{"id":7049,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7050],"locationId":1},{"id":7050,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7051],"locationId":2},{"id":7051,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7052],"locationId":4},{"id":7052,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7053],"locationId":1},{"id":7053,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7054],"locationId":2},{"id":7054,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7055],"locationId":4},{"id":7055,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7056],"locationId":1},{"id":7056,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7057],"locationId":2},{"id":7057,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7058],"locationId":4},{"id":7058,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7059],"locationId":1},{"id":7059,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7060],"locationId":2},{"id":7060,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7061],"locationId":4},{"id":7061,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7062],"locationId":1},{"id":7062,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7063],"locationId":2},{"id":7063,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7064],"locationId":4},{"id":7064,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7065],"locationId":1},{"id":7065,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7066],"locationId":2},{"id":7066,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7067],"locationId":4},{"id":7067,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7068],"locationId":1},{"id":7068,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7069],"locationId":2},{"id":7069,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7070],"locationId":4},{"id":7070,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7071],"locationId":1},{"id":7071,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7072],"locationId":2},{"id":7072,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7073],"locationId":4},{"id":7073,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7074],"locationId":1},{"id":7074,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7075],"locationId":2},{"id":7075,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7076],"locationId":4},{"id":7076,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7077],"locationId":1},{"id":7077,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7078],"locationId":2},{"id":7078,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7079],"locationId":4},{"id":7079,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7080],"locationId":1},{"id":7080,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7081],"locationId":2},{"id":7081,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7082],"locationId":4},{"id":7082,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7083],"locationId":1},{"id":7083,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7084],"locationId":2},{"id":7084,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7085],"locationId":4},{"id":7085,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7086],"locationId":1},{"id":7086,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7087],"locationId":2},{"id":7087,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7088],"locationId":4},{"id":7088,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7089],"locationId":1},{"id":7089,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7090],"locationId":2},{"id":7090,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7091],"locationId":4},{"id":7091,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7092],"locationId":1},{"id":7092,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7093],"locationId":2},{"id":7093,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7094],"locationId":4},{"id":7094,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7095],"locationId":1},{"id":7095,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7096],"locationId":2},{"id":7096,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7097],"locationId":4},{"id":7097,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7098],"locationId":1},{"id":7098,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7099],"locationId":2},{"id":7099,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7100],"locationId":4},{"id":7100,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7101],"locationId":1},{"id":7101,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7102],"locationId":2},{"id":7102,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7103],"locationId":4},{"id":7103,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7104],"locationId":1},{"id":7104,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7105],"locationId":2},{"id":7105,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7106],"locationId":4},{"id":7106,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7107],"locationId":1},{"id":7107,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7108],"locationId":2},{"id":7108,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7109],"locationId":4},{"id":7109,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7110],"locationId":1},{"id":7110,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7111],"locationId":2},{"id":7111,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7112],"locationId":4},{"id":7112,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7113],"locationId":1},{"id":7113,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7114],"locationId":2},{"id":7114,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7115],"locationId":4},{"id":7115,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7116],"locationId":1},{"id":7116,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7117],"locationId":2},{"id":7117,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7118],"locationId":4},{"id":7118,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7119],"locationId":1},{"id":7119,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7120],"locationId":2},{"id":7120,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7121],"locationId":4},{"id":7121,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7122],"locationId":1},{"id":7122,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":6493,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6494],"locationId":4},{"id":6494,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6495],"locationId":1},{"id":6495,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6496],"locationId":2},{"id":6496,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6497],"locationId":4},{"id":6497,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6498],"locationId":1},{"id":6498,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6499],"locationId":2},{"id":6499,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6500],"locationId":4},{"id":6500,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6501],"locationId":1},{"id":6501,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6502],"locationId":2},{"id":6502,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6503],"locationId":4},{"id":6503,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6504],"locationId":1},{"id":6504,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6505],"locationId":2},{"id":6505,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6506],"locationId":4},{"id":6506,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6507],"locationId":1},{"id":6507,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6508],"locationId":2},{"id":6508,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6509],"locationId":4},{"id":6509,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6510],"locationId":1},{"id":6510,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6511],"locationId":2},{"id":6511,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6512],"locationId":4},{"id":6512,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6513],"locationId":1},{"id":6513,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6514],"locationId":2},{"id":6514,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6515],"locationId":4},{"id":6515,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6516],"locationId":1},{"id":6516,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6517],"locationId":2},{"id":6517,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6518],"locationId":4},{"id":6518,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6519],"locationId":1},{"id":6519,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6520],"locationId":2},{"id":6520,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6521],"locationId":4},{"id":6521,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6522],"locationId":1},{"id":6522,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6523],"locationId":2},{"id":6523,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6524],"locationId":4},{"id":6524,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6525],"locationId":1},{"id":6525,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6526],"locationId":2},{"id":6526,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6527],"locationId":4},{"id":6527,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6528],"locationId":1},{"id":6528,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6529],"locationId":2},{"id":6529,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6530],"locationId":4},{"id":6530,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6531],"locationId":1},{"id":6531,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6532],"locationId":2},{"id":6532,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6533],"locationId":4},{"id":6533,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6534],"locationId":1},{"id":6534,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6535],"locationId":2},{"id":6535,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6536],"locationId":4},{"id":6536,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6537],"locationId":1},{"id":6537,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6538],"locationId":2},{"id":6538,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6539],"locationId":4},{"id":6539,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6540],"locationId":1},{"id":6540,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6541],"locationId":2},{"id":6541,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6542],"locationId":4},{"id":6542,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6543],"locationId":1},{"id":6543,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6544],"locationId":2},{"id":6544,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6545],"locationId":4},{"id":6545,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6546],"locationId":1},{"id":6546,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6547],"locationId":2},{"id":6547,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6548],"locationId":4},{"id":6548,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6549],"locationId":1},{"id":6549,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6550],"locationId":2},{"id":6550,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6551],"locationId":4},{"id":6551,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6552],"locationId":1},{"id":6552,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6553],"locationId":2},{"id":6553,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6554],"locationId":4},{"id":6554,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6555],"locationId":1},{"id":6555,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6556],"locationId":2},{"id":6556,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6557],"locationId":4},{"id":6557,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6558],"locationId":1},{"id":6558,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6559],"locationId":2},{"id":6559,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6560],"locationId":4},{"id":6560,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6561],"locationId":1},{"id":6561,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6562],"locationId":2},{"id":6562,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6563],"locationId":4},{"id":6563,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6564],"locationId":1},{"id":6564,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6565],"locationId":2},{"id":6565,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6566],"locationId":4},{"id":6566,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6567],"locationId":1},{"id":6567,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6568],"locationId":2},{"id":6568,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6569],"locationId":4},{"id":6569,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6570],"locationId":1},{"id":6570,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6571],"locationId":2},{"id":6571,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6572],"locationId":4},{"id":6572,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6573],"locationId":1},{"id":6573,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6574],"locationId":2},{"id":6574,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6575],"locationId":4},{"id":6575,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6576],"locationId":1},{"id":6576,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6577],"locationId":2},{"id":6577,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6578],"locationId":4},{"id":6578,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6579],"locationId":1},{"id":6579,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6580],"locationId":2},{"id":6580,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6581],"locationId":4},{"id":6581,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6582],"locationId":1},{"id":6582,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6583],"locationId":2},{"id":6583,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6584],"locationId":4},{"id":6584,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6585],"locationId":1},{"id":6585,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6586],"locationId":2},{"id":6586,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6587],"locationId":4},{"id":6587,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6588],"locationId":1},{"id":6588,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6589],"locationId":2},{"id":6589,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6590],"locationId":4},{"id":6590,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6591],"locationId":1},{"id":6591,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6592],"locationId":2},{"id":6592,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6593],"locationId":4},{"id":6593,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6594],"locationId":1},{"id":6594,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6595],"locationId":2},{"id":6595,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6596],"locationId":4},{"id":6596,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6597],"locationId":1},{"id":6597,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6598],"locationId":2},{"id":6598,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6599],"locationId":4},{"id":6599,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6600],"locationId":1},{"id":6600,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6601],"locationId":2},{"id":6601,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6602],"locationId":4},{"id":6602,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6603],"locationId":1},{"id":6603,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6604],"locationId":2},{"id":6604,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6605],"locationId":4},{"id":6605,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6606],"locationId":1},{"id":6606,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6607],"locationId":2},{"id":6607,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6608],"locationId":4},{"id":6608,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6609],"locationId":1},{"id":6609,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6610],"locationId":2},{"id":6610,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6611],"locationId":4},{"id":6611,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6612],"locationId":1},{"id":6612,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6613],"locationId":2},{"id":6613,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6614],"locationId":4},{"id":6614,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6615],"locationId":1},{"id":6615,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6616],"locationId":2},{"id":6616,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6617],"locationId":4},{"id":6617,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6618],"locationId":1},{"id":6618,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6619],"locationId":2},{"id":6619,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6620],"locationId":4},{"id":6620,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6621],"locationId":1},{"id":6621,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6622],"locationId":2},{"id":6622,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6623],"locationId":4},{"id":6623,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6624],"locationId":1},{"id":6624,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":5799,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5800],"locationId":4},{"id":5800,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5801],"locationId":1},{"id":5801,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5802],"locationId":2},{"id":5802,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5803],"locationId":4},{"id":5803,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5804],"locationId":1},{"id":5804,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5805],"locationId":2},{"id":5805,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5806],"locationId":4},{"id":5806,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5807],"locationId":1},{"id":5807,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5808],"locationId":2},{"id":5808,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5809],"locationId":4},{"id":5809,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5810],"locationId":1},{"id":5810,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5811],"locationId":2},{"id":5811,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5812],"locationId":4},{"id":5812,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5813],"locationId":1},{"id":5813,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5814],"locationId":2},{"id":5814,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5815],"locationId":4},{"id":5815,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5816],"locationId":1},{"id":5816,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5817],"locationId":2},{"id":5817,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5818],"locationId":4},{"id":5818,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5819],"locationId":1},{"id":5819,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5820],"locationId":2},{"id":5820,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5821],"locationId":4},{"id":5821,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5822],"locationId":1},{"id":5822,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5823],"locationId":2},{"id":5823,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5824],"locationId":4},{"id":5824,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5825],"locationId":1},{"id":5825,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5826],"locationId":2},{"id":5826,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5827],"locationId":4},{"id":5827,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5828],"locationId":1},{"id":5828,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5829],"locationId":2},{"id":5829,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5830],"locationId":4},{"id":5830,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5831],"locationId":1},{"id":5831,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5832],"locationId":2},{"id":5832,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5833],"locationId":4},{"id":5833,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5834],"locationId":1},{"id":5834,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5835],"locationId":2},{"id":5835,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5836],"locationId":4},{"id":5836,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5837],"locationId":1},{"id":5837,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5838],"locationId":2},{"id":5838,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5839],"locationId":4},{"id":5839,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5840],"locationId":1},{"id":5840,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5841],"locationId":2},{"id":5841,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5842],"locationId":4},{"id":5842,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5843],"locationId":1},{"id":5843,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5844],"locationId":2},{"id":5844,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5845],"locationId":4},{"id":5845,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5846],"locationId":1},{"id":5846,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5847],"locationId":2},{"id":5847,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5848],"locationId":4},{"id":5848,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5849],"locationId":1},{"id":5849,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5850],"locationId":2},{"id":5850,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5851],"locationId":4},{"id":5851,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5852],"locationId":1},{"id":5852,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5853],"locationId":2},{"id":5853,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5854],"locationId":4},{"id":5854,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5855],"locationId":1},{"id":5855,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5856],"locationId":2},{"id":5856,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5857],"locationId":4},{"id":5857,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5858],"locationId":1},{"id":5858,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5859],"locationId":2},{"id":5859,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5860],"locationId":4},{"id":5860,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5861],"locationId":1},{"id":5861,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5862],"locationId":2},{"id":5862,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5863],"locationId":4},{"id":5863,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5864],"locationId":1},{"id":5864,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5865],"locationId":2},{"id":5865,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5866],"locationId":4},{"id":5866,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5867],"locationId":1},{"id":5867,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5868],"locationId":2},{"id":5868,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5869],"locationId":4},{"id":5869,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5870],"locationId":1},{"id":5870,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5871],"locationId":2},{"id":5871,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5872],"locationId":4},{"id":5872,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5873],"locationId":1},{"id":5873,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5874],"locationId":2},{"id":5874,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5875],"locationId":4},{"id":5875,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5876],"locationId":1},{"id":5876,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5877],"locationId":2},{"id":5877,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5878],"locationId":4},{"id":5878,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5879],"locationId":1},{"id":5879,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5880],"locationId":2},{"id":5880,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5881],"locationId":4},{"id":5881,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5882],"locationId":1},{"id":5882,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5883],"locationId":2},{"id":5883,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5884],"locationId":4},{"id":5884,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5885],"locationId":1},{"id":5885,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5886],"locationId":2},{"id":5886,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5887],"locationId":4},{"id":5887,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5888],"locationId":1},{"id":5888,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5889],"locationId":2},{"id":5889,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5890],"locationId":4},{"id":5890,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5891],"locationId":1},{"id":5891,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5892],"locationId":2},{"id":5892,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5893],"locationId":4},{"id":5893,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5894],"locationId":1},{"id":5894,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5895],"locationId":2},{"id":5895,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5896],"locationId":4},{"id":5896,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5897],"locationId":1},{"id":5897,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5898],"locationId":2},{"id":5898,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5899],"locationId":4},{"id":5899,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5900],"locationId":1},{"id":5900,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5901],"locationId":2},{"id":5901,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5902],"locationId":4},{"id":5902,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5903],"locationId":1},{"id":5903,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5904],"locationId":2},{"id":5904,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5905],"locationId":4},{"id":5905,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5906],"locationId":1},{"id":5906,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5907],"locationId":2},{"id":5907,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5908],"locationId":4},{"id":5908,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5909],"locationId":1},{"id":5909,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5910],"locationId":2},{"id":5910,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5911],"locationId":4},{"id":5911,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5912],"locationId":1},{"id":5912,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5913],"locationId":2},{"id":5913,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5914],"locationId":4},{"id":5914,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5915],"locationId":1},{"id":5915,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5916],"locationId":2},{"id":5916,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5917],"locationId":4},{"id":5917,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5918],"locationId":1},{"id":5918,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5919],"locationId":2},{"id":5919,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5920],"locationId":4},{"id":5920,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5921],"locationId":1},{"id":5921,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5922],"locationId":2},{"id":5922,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5923],"locationId":4},{"id":5923,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5924],"locationId":1},{"id":5924,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5925],"locationId":2},{"id":5925,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5926],"locationId":4},{"id":5926,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5927],"locationId":1},{"id":5927,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5928],"locationId":2},{"id":5928,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5929],"locationId":4},{"id":5929,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5930],"locationId":1},{"id":5930,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5931],"locationId":2},{"id":5931,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5932],"locationId":4},{"id":5932,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5933],"locationId":1},{"id":5933,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5934],"locationId":2},{"id":5934,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5935],"locationId":4},{"id":5935,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5936],"locationId":1},{"id":5936,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5937],"locationId":2},{"id":5937,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5938],"locationId":4},{"id":5938,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5939],"locationId":1},{"id":5939,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5940],"locationId":2},{"id":5940,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5941],"locationId":4},{"id":5941,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5942],"locationId":1},{"id":5942,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":5193,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5194],"locationId":4},{"id":5194,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5195],"locationId":1},{"id":5195,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5196],"locationId":2},{"id":5196,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5197],"locationId":4},{"id":5197,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5198],"locationId":1},{"id":5198,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5199],"locationId":2},{"id":5199,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5200],"locationId":4},{"id":5200,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5201],"locationId":1},{"id":5201,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5202],"locationId":2},{"id":5202,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5203],"locationId":4},{"id":5203,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5204],"locationId":1},{"id":5204,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5205],"locationId":2},{"id":5205,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5206],"locationId":4},{"id":5206,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5207],"locationId":1},{"id":5207,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5208],"locationId":2},{"id":5208,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5209],"locationId":4},{"id":5209,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5210],"locationId":1},{"id":5210,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5211],"locationId":2},{"id":5211,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5212],"locationId":4},{"id":5212,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5213],"locationId":1},{"id":5213,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5214],"locationId":2},{"id":5214,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5215],"locationId":4},{"id":5215,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5216],"locationId":1},{"id":5216,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5217],"locationId":2},{"id":5217,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5218],"locationId":4},{"id":5218,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5219],"locationId":1},{"id":5219,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5220],"locationId":2},{"id":5220,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5221],"locationId":4},{"id":5221,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5222],"locationId":1},{"id":5222,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5223],"locationId":2},{"id":5223,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5224],"locationId":4},{"id":5224,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5225],"locationId":1},{"id":5225,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5226],"locationId":2},{"id":5226,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5227],"locationId":4},{"id":5227,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5228],"locationId":1},{"id":5228,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5229],"locationId":2},{"id":5229,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5230],"locationId":4},{"id":5230,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5231],"locationId":1},{"id":5231,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5232],"locationId":2},{"id":5232,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5233],"locationId":4},{"id":5233,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5234],"locationId":1},{"id":5234,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5235],"locationId":2},{"id":5235,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5236],"locationId":4},{"id":5236,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5237],"locationId":1},{"id":5237,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5238],"locationId":2},{"id":5238,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5239],"locationId":4},{"id":5239,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5240],"locationId":1},{"id":5240,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5241],"locationId":2},{"id":5241,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5242],"locationId":4},{"id":5242,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5243],"locationId":1},{"id":5243,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5244],"locationId":2},{"id":5244,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5245],"locationId":4},{"id":5245,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5246],"locationId":1},{"id":5246,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5247],"locationId":2},{"id":5247,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5248],"locationId":4},{"id":5248,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5249],"locationId":1},{"id":5249,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5250],"locationId":2},{"id":5250,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5251],"locationId":4},{"id":5251,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5252],"locationId":1},{"id":5252,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5253],"locationId":2},{"id":5253,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5254],"locationId":4},{"id":5254,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5255],"locationId":1},{"id":5255,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5256],"locationId":2},{"id":5256,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5257],"locationId":4},{"id":5257,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5258],"locationId":1},{"id":5258,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5259],"locationId":2},{"id":5259,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5260],"locationId":4},{"id":5260,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5261],"locationId":1},{"id":5261,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5262],"locationId":2},{"id":5262,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5263],"locationId":4},{"id":5263,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5264],"locationId":1},{"id":5264,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5265],"locationId":2},{"id":5265,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5266],"locationId":4},{"id":5266,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5267],"locationId":1},{"id":5267,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5268],"locationId":2},{"id":5268,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5269],"locationId":4},{"id":5269,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5270],"locationId":1},{"id":5270,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5271],"locationId":2},{"id":5271,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5272],"locationId":4},{"id":5272,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5273],"locationId":1},{"id":5273,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5274],"locationId":2},{"id":5274,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5275],"locationId":4},{"id":5275,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5276],"locationId":1},{"id":5276,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5277],"locationId":2},{"id":5277,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5278],"locationId":4},{"id":5278,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5279],"locationId":1},{"id":5279,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5280],"locationId":2},{"id":5280,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5281],"locationId":4},{"id":5281,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5282],"locationId":1},{"id":5282,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5283],"locationId":2},{"id":5283,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5284],"locationId":4},{"id":5284,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5285],"locationId":1},{"id":5285,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5286],"locationId":2},{"id":5286,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5287],"locationId":4},{"id":5287,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5288],"locationId":1},{"id":5288,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5289],"locationId":2},{"id":5289,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5290],"locationId":4},{"id":5290,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5291],"locationId":1},{"id":5291,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5292],"locationId":2},{"id":5292,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5293],"locationId":4},{"id":5293,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5294],"locationId":1},{"id":5294,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5295],"locationId":2},{"id":5295,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5296],"locationId":4},{"id":5296,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5297],"locationId":1},{"id":5297,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5298],"locationId":2},{"id":5298,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5299],"locationId":4},{"id":5299,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5300],"locationId":1},{"id":5300,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5301],"locationId":2},{"id":5301,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5302],"locationId":4},{"id":5302,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5303],"locationId":1},{"id":5303,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5304],"locationId":2},{"id":5304,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5305],"locationId":4},{"id":5305,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5306],"locationId":1},{"id":5306,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5307],"locationId":2},{"id":5307,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5308],"locationId":4},{"id":5308,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5309],"locationId":1},{"id":5309,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5310],"locationId":2},{"id":5310,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5311],"locationId":4},{"id":5311,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5312],"locationId":1},{"id":5312,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5313],"locationId":2},{"id":5313,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5314],"locationId":4},{"id":5314,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5315],"locationId":1},{"id":5315,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5316],"locationId":2},{"id":5316,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5317],"locationId":4},{"id":5317,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5318],"locationId":1},{"id":5318,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5319],"locationId":2},{"id":5319,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5320],"locationId":4},{"id":5320,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5321],"locationId":1},{"id":5321,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5322],"locationId":2},{"id":5322,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5323],"locationId":4},{"id":5323,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5324],"locationId":1},{"id":5324,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5325],"locationId":2},{"id":5325,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5326],"locationId":4},{"id":5326,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5327],"locationId":1},{"id":5327,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5328],"locationId":2},{"id":5328,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5329],"locationId":4},{"id":5329,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5330],"locationId":1},{"id":5330,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5331],"locationId":2},{"id":5331,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5332],"locationId":4},{"id":5332,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5333],"locationId":1},{"id":5333,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5334],"locationId":2},{"id":5334,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5335],"locationId":4},{"id":5335,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5336],"locationId":1},{"id":5336,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5337],"locationId":2},{"id":5337,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5338],"locationId":4},{"id":5338,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5339],"locationId":1},{"id":5339,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5340],"locationId":2},{"id":5340,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5341],"locationId":4},{"id":5341,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5342],"locationId":1},{"id":5342,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5343],"locationId":2},{"id":5343,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5344],"locationId":4},{"id":5344,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5345],"locationId":1},{"id":5345,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5346],"locationId":2},{"id":5346,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5347],"locationId":4},{"id":5347,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5348],"locationId":1},{"id":5348,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":4539,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4540],"locationId":4},{"id":4540,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4541],"locationId":1},{"id":4541,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4542],"locationId":2},{"id":4542,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4543],"locationId":4},{"id":4543,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4544],"locationId":1},{"id":4544,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4545],"locationId":2},{"id":4545,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4546],"locationId":4},{"id":4546,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4547],"locationId":1},{"id":4547,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4548],"locationId":2},{"id":4548,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4549],"locationId":4},{"id":4549,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4550],"locationId":1},{"id":4550,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4551],"locationId":2},{"id":4551,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4552],"locationId":4},{"id":4552,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4553],"locationId":1},{"id":4553,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4554],"locationId":2},{"id":4554,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4555],"locationId":4},{"id":4555,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4556],"locationId":1},{"id":4556,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4557],"locationId":2},{"id":4557,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4558],"locationId":4},{"id":4558,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4559],"locationId":1},{"id":4559,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4560],"locationId":2},{"id":4560,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4561],"locationId":4},{"id":4561,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4562],"locationId":1},{"id":4562,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4563],"locationId":2},{"id":4563,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4564],"locationId":4},{"id":4564,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4565],"locationId":1},{"id":4565,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4566],"locationId":2},{"id":4566,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4567],"locationId":4},{"id":4567,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4568],"locationId":1},{"id":4568,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4569],"locationId":2},{"id":4569,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4570],"locationId":4},{"id":4570,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4571],"locationId":1},{"id":4571,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4572],"locationId":2},{"id":4572,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4573],"locationId":4},{"id":4573,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4574],"locationId":1},{"id":4574,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4575],"locationId":2},{"id":4575,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4576],"locationId":4},{"id":4576,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4577],"locationId":1},{"id":4577,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4578],"locationId":2},{"id":4578,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4579],"locationId":4},{"id":4579,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4580],"locationId":1},{"id":4580,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4581],"locationId":2},{"id":4581,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4582],"locationId":4},{"id":4582,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4583],"locationId":1},{"id":4583,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4584],"locationId":2},{"id":4584,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4585],"locationId":4},{"id":4585,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4586],"locationId":1},{"id":4586,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4587],"locationId":2},{"id":4587,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4588],"locationId":4},{"id":4588,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4589],"locationId":1},{"id":4589,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4590],"locationId":2},{"id":4590,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4591],"locationId":4},{"id":4591,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4592],"locationId":1},{"id":4592,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4593],"locationId":2},{"id":4593,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4594],"locationId":4},{"id":4594,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4595],"locationId":1},{"id":4595,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4596],"locationId":2},{"id":4596,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4597],"locationId":4},{"id":4597,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4598],"locationId":1},{"id":4598,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4599],"locationId":2},{"id":4599,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4600],"locationId":4},{"id":4600,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4601],"locationId":1},{"id":4601,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4602],"locationId":2},{"id":4602,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4603],"locationId":4},{"id":4603,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4604],"locationId":1},{"id":4604,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4605],"locationId":2},{"id":4605,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4606],"locationId":4},{"id":4606,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4607],"locationId":1},{"id":4607,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4608],"locationId":2},{"id":4608,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4609],"locationId":4},{"id":4609,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4610],"locationId":1},{"id":4610,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4611],"locationId":2},{"id":4611,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4612],"locationId":4},{"id":4612,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4613],"locationId":1},{"id":4613,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4614],"locationId":2},{"id":4614,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4615],"locationId":4},{"id":4615,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4616],"locationId":1},{"id":4616,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4617],"locationId":2},{"id":4617,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4618],"locationId":4},{"id":4618,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4619],"locationId":1},{"id":4619,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4620],"locationId":2},{"id":4620,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4621],"locationId":4},{"id":4621,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4622],"locationId":1},{"id":4622,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4623],"locationId":2},{"id":4623,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4624],"locationId":4},{"id":4624,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4625],"locationId":1},{"id":4625,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4626],"locationId":2},{"id":4626,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4627],"locationId":4},{"id":4627,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4628],"locationId":1},{"id":4628,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4629],"locationId":2},{"id":4629,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4630],"locationId":4},{"id":4630,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4631],"locationId":1},{"id":4631,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4632],"locationId":2},{"id":4632,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4633],"locationId":4},{"id":4633,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4634],"locationId":1},{"id":4634,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4635],"locationId":2},{"id":4635,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4636],"locationId":4},{"id":4636,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4637],"locationId":1},{"id":4637,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4638],"locationId":2},{"id":4638,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4639],"locationId":4},{"id":4639,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4640],"locationId":1},{"id":4640,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4641],"locationId":2},{"id":4641,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4642],"locationId":4},{"id":4642,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4643],"locationId":1},{"id":4643,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4644],"locationId":2},{"id":4644,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4645],"locationId":4},{"id":4645,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4646],"locationId":1},{"id":4646,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4647],"locationId":2},{"id":4647,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4648],"locationId":4},{"id":4648,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4649],"locationId":1},{"id":4649,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4650],"locationId":2},{"id":4650,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4651],"locationId":4},{"id":4651,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4652],"locationId":1},{"id":4652,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4653],"locationId":2},{"id":4653,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4654],"locationId":4},{"id":4654,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4655],"locationId":1},{"id":4655,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4656],"locationId":2},{"id":4656,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4657],"locationId":4},{"id":4657,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4658],"locationId":1},{"id":4658,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4659],"locationId":2},{"id":4659,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4660],"locationId":4},{"id":4660,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4661],"locationId":1},{"id":4661,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4662],"locationId":2},{"id":4662,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4663],"locationId":4},{"id":4663,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4664],"locationId":1},{"id":4664,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4665],"locationId":2},{"id":4665,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4666],"locationId":4},{"id":4666,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4667],"locationId":1},{"id":4667,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4668],"locationId":2},{"id":4668,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4669],"locationId":4},{"id":4669,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4670],"locationId":1},{"id":4670,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4671],"locationId":2},{"id":4671,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4672],"locationId":4},{"id":4672,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4673],"locationId":1},{"id":4673,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4674],"locationId":2},{"id":4674,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4675],"locationId":4},{"id":4675,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4676],"locationId":1},{"id":4676,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4677],"locationId":2},{"id":4677,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4678],"locationId":4},{"id":4678,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4679],"locationId":1},{"id":4679,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4680],"locationId":2},{"id":4680,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4681],"locationId":4},{"id":4681,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4682],"locationId":1},{"id":4682,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4683],"locationId":2},{"id":4683,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4684],"locationId":4},{"id":4684,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4685],"locationId":1},{"id":4685,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4686],"locationId":2},{"id":4686,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4687],"locationId":4},{"id":4687,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4688],"locationId":1},{"id":4688,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4689],"locationId":2},{"id":4689,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4690],"locationId":4},{"id":4690,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4691],"locationId":1},{"id":4691,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4692],"locationId":2},{"id":4692,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4693],"locationId":4},{"id":4693,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4694],"locationId":1},{"id":4694,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4695],"locationId":2},{"id":4695,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4696],"locationId":4},{"id":4696,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4697],"locationId":1},{"id":4697,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4698],"locationId":2},{"id":4698,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4699],"locationId":4},{"id":4699,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4700],"locationId":1},{"id":4700,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4701],"locationId":2},{"id":4701,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4702],"locationId":4},{"id":4702,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4703],"locationId":1},{"id":4703,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4704],"locationId":2},{"id":4704,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4705],"locationId":4},{"id":4705,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4706],"locationId":1},{"id":4706,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":3837,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3838],"locationId":4},{"id":3838,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3839],"locationId":1},{"id":3839,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3840],"locationId":2},{"id":3840,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3841],"locationId":4},{"id":3841,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3842],"locationId":1},{"id":3842,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3843],"locationId":2},{"id":3843,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3844],"locationId":4},{"id":3844,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3845],"locationId":1},{"id":3845,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3846],"locationId":2},{"id":3846,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3847],"locationId":4},{"id":3847,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3848],"locationId":1},{"id":3848,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3849],"locationId":2},{"id":3849,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3850],"locationId":4},{"id":3850,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3851],"locationId":1},{"id":3851,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3852],"locationId":2},{"id":3852,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3853],"locationId":4},{"id":3853,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3854],"locationId":1},{"id":3854,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3855],"locationId":2},{"id":3855,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3856],"locationId":4},{"id":3856,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3857],"locationId":1},{"id":3857,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3858],"locationId":2},{"id":3858,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3859],"locationId":4},{"id":3859,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3860],"locationId":1},{"id":3860,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3861],"locationId":2},{"id":3861,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3862],"locationId":4},{"id":3862,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3863],"locationId":1},{"id":3863,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3864],"locationId":2},{"id":3864,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3865],"locationId":4},{"id":3865,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3866],"locationId":1},{"id":3866,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3867],"locationId":2},{"id":3867,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3868],"locationId":4},{"id":3868,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3869],"locationId":1},{"id":3869,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3870],"locationId":2},{"id":3870,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3871],"locationId":4},{"id":3871,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3872],"locationId":1},{"id":3872,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3873],"locationId":2},{"id":3873,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3874],"locationId":4},{"id":3874,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3875],"locationId":1},{"id":3875,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3876],"locationId":2},{"id":3876,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3877],"locationId":4},{"id":3877,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3878],"locationId":1},{"id":3878,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3879],"locationId":2},{"id":3879,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3880],"locationId":4},{"id":3880,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3881],"locationId":1},{"id":3881,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3882],"locationId":2},{"id":3882,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3883],"locationId":4},{"id":3883,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3884],"locationId":1},{"id":3884,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3885],"locationId":2},{"id":3885,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3886],"locationId":4},{"id":3886,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3887],"locationId":1},{"id":3887,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3888],"locationId":2},{"id":3888,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3889],"locationId":4},{"id":3889,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3890],"locationId":1},{"id":3890,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3891],"locationId":2},{"id":3891,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3892],"locationId":4},{"id":3892,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3893],"locationId":1},{"id":3893,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3894],"locationId":2},{"id":3894,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3895],"locationId":4},{"id":3895,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3896],"locationId":1},{"id":3896,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3897],"locationId":2},{"id":3897,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3898],"locationId":4},{"id":3898,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3899],"locationId":1},{"id":3899,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3900],"locationId":2},{"id":3900,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3901],"locationId":4},{"id":3901,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3902],"locationId":1},{"id":3902,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3903],"locationId":2},{"id":3903,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3904],"locationId":4},{"id":3904,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3905],"locationId":1},{"id":3905,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3906],"locationId":2},{"id":3906,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3907],"locationId":4},{"id":3907,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3908],"locationId":1},{"id":3908,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3909],"locationId":2},{"id":3909,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3910],"locationId":4},{"id":3910,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3911],"locationId":1},{"id":3911,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3912],"locationId":2},{"id":3912,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3913],"locationId":4},{"id":3913,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3914],"locationId":1},{"id":3914,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3915],"locationId":2},{"id":3915,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3916],"locationId":4},{"id":3916,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3917],"locationId":1},{"id":3917,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3918],"locationId":2},{"id":3918,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3919],"locationId":4},{"id":3919,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3920],"locationId":1},{"id":3920,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3921],"locationId":2},{"id":3921,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3922],"locationId":4},{"id":3922,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3923],"locationId":1},{"id":3923,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3924],"locationId":2},{"id":3924,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3925],"locationId":4},{"id":3925,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3926],"locationId":1},{"id":3926,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3927],"locationId":2},{"id":3927,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3928],"locationId":4},{"id":3928,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3929],"locationId":1},{"id":3929,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3930],"locationId":2},{"id":3930,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3931],"locationId":4},{"id":3931,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3932],"locationId":1},{"id":3932,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3933],"locationId":2},{"id":3933,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3934],"locationId":4},{"id":3934,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3935],"locationId":1},{"id":3935,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3936],"locationId":2},{"id":3936,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3937],"locationId":4},{"id":3937,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3938],"locationId":1},{"id":3938,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3939],"locationId":2},{"id":3939,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3940],"locationId":4},{"id":3940,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3941],"locationId":1},{"id":3941,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3942],"locationId":2},{"id":3942,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3943],"locationId":4},{"id":3943,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3944],"locationId":1},{"id":3944,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3945],"locationId":2},{"id":3945,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3946],"locationId":4},{"id":3946,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3947],"locationId":1},{"id":3947,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3948],"locationId":2},{"id":3948,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3949],"locationId":4},{"id":3949,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3950],"locationId":1},{"id":3950,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3951],"locationId":2},{"id":3951,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3952],"locationId":4},{"id":3952,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3953],"locationId":1},{"id":3953,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3954],"locationId":2},{"id":3954,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3955],"locationId":4},{"id":3955,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3956],"locationId":1},{"id":3956,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3957],"locationId":2},{"id":3957,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3958],"locationId":4},{"id":3958,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3959],"locationId":1},{"id":3959,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3960],"locationId":2},{"id":3960,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3961],"locationId":4},{"id":3961,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3962],"locationId":1},{"id":3962,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3963],"locationId":2},{"id":3963,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3964],"locationId":4},{"id":3964,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3965],"locationId":1},{"id":3965,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3966],"locationId":2},{"id":3966,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3967],"locationId":4},{"id":3967,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3968],"locationId":1},{"id":3968,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3969],"locationId":2},{"id":3969,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3970],"locationId":4},{"id":3970,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3971],"locationId":1},{"id":3971,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3972],"locationId":2},{"id":3972,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3973],"locationId":4},{"id":3973,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3974],"locationId":1},{"id":3974,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3975],"locationId":2},{"id":3975,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3976],"locationId":4},{"id":3976,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3977],"locationId":1},{"id":3977,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3978],"locationId":2},{"id":3978,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3979],"locationId":4},{"id":3979,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3980],"locationId":1},{"id":3980,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3981],"locationId":2},{"id":3981,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3982],"locationId":4},{"id":3982,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3983],"locationId":1},{"id":3983,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3984],"locationId":2},{"id":3984,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3985],"locationId":4},{"id":3985,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3986],"locationId":1},{"id":3986,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3987],"locationId":2},{"id":3987,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3988],"locationId":4},{"id":3988,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3989],"locationId":1},{"id":3989,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3990],"locationId":2},{"id":3990,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3991],"locationId":4},{"id":3991,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3992],"locationId":1},{"id":3992,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3993],"locationId":2},{"id":3993,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3994],"locationId":4},{"id":3994,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3995],"locationId":1},{"id":3995,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3996],"locationId":2},{"id":3996,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3997],"locationId":4},{"id":3997,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3998],"locationId":1},{"id":3998,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3999],"locationId":2},{"id":3999,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4000],"locationId":4},{"id":4000,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4001],"locationId":1},{"id":4001,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4002],"locationId":2},{"id":4002,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4003],"locationId":4},{"id":4003,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4004],"locationId":1},{"id":4004,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4005],"locationId":2},{"id":4005,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4006],"locationId":4},{"id":4006,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4007],"locationId":1},{"id":4007,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4008],"locationId":2},{"id":4008,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4009],"locationId":4},{"id":4009,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4010],"locationId":1},{"id":4010,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4011],"locationId":2},{"id":4011,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4012],"locationId":4},{"id":4012,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4013],"locationId":1},{"id":4013,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4014],"locationId":2},{"id":4014,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4015],"locationId":4},{"id":4015,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4016],"locationId":1},{"id":4016,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":788,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[789,19334,28130],"locationId":3},{"id":789,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[790],"locationId":4},{"id":790,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[791],"locationId":1},{"id":791,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[792],"locationId":2},{"id":792,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[793],"locationId":3},{"id":793,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[794],"locationId":4},{"id":794,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[795],"locationId":1},{"id":795,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[796],"locationId":2},{"id":796,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[797],"locationId":3},{"id":797,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[798],"locationId":4},{"id":798,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[799],"locationId":1},{"id":799,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[800],"locationId":2},{"id":800,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[801],"locationId":3},{"id":801,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[802],"locationId":4},{"id":802,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[803],"locationId":1},{"id":803,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[804],"locationId":2},{"id":804,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[805],"locationId":3},{"id":805,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[806],"locationId":4},{"id":806,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[807],"locationId":1},{"id":807,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[808],"locationId":2},{"id":808,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[809],"locationId":3},{"id":809,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[810],"locationId":4},{"id":810,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[811],"locationId":1},{"id":811,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[812],"locationId":2},{"id":812,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[813],"locationId":3},{"id":813,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[814],"locationId":4},{"id":814,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[815],"locationId":1},{"id":815,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[816],"locationId":2},{"id":816,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[817],"locationId":3},{"id":817,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[818],"locationId":4},{"id":818,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[819],"locationId":1},{"id":819,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[820],"locationId":2},{"id":820,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[821],"locationId":3},{"id":821,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[822],"locationId":4},{"id":822,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[823],"locationId":1},{"id":823,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[824],"locationId":2},{"id":824,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[825],"locationId":3},{"id":825,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[826],"locationId":4},{"id":826,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[827],"locationId":1},{"id":827,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[828],"locationId":2},{"id":828,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[829],"locationId":3},{"id":829,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[830],"locationId":4},{"id":830,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[831],"locationId":1},{"id":831,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[832],"locationId":2},{"id":832,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[833],"locationId":3},{"id":833,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[834],"locationId":4},{"id":834,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[835],"locationId":1},{"id":835,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[836],"locationId":2},{"id":836,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[837],"locationId":3},{"id":837,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[838],"locationId":4},{"id":838,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[839],"locationId":1},{"id":839,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[840],"locationId":2},{"id":840,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[841],"locationId":3},{"id":841,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[842],"locationId":4},{"id":842,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[843],"locationId":1},{"id":843,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[844],"locationId":2},{"id":844,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[845],"locationId":3},{"id":845,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[846],"locationId":4},{"id":846,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[847],"locationId":1},{"id":847,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[848],"locationId":2},{"id":848,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[849],"locationId":3},{"id":849,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[850],"locationId":4},{"id":850,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[851],"locationId":1},{"id":851,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[852],"locationId":2},{"id":852,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[853],"locationId":3},{"id":853,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[854],"locationId":4},{"id":854,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[855],"locationId":1},{"id":855,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[856],"locationId":2},{"id":856,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[857],"locationId":3},{"id":857,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[858],"locationId":4},{"id":858,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[859],"locationId":1},{"id":859,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[860],"locationId":2},{"id":860,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[861],"locationId":3},{"id":861,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[862],"locationId":4},{"id":862,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[863],"locationId":1},{"id":863,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[864],"locationId":2},{"id":864,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[865],"locationId":3},{"id":865,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[866],"locationId":4},{"id":866,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[867],"locationId":1},{"id":867,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[868],"locationId":2},{"id":868,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[869],"locationId":3},{"id":869,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[870],"locationId":4},{"id":870,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[871],"locationId":1},{"id":871,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[872,4368],"locationId":2},{"id":872,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[873],"locationId":3},{"id":873,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[874],"locationId":4},{"id":874,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[875],"locationId":1},{"id":875,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[876],"locationId":2},{"id":876,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[877],"locationId":3},{"id":877,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[878],"locationId":4},{"id":878,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[879],"locationId":1},{"id":879,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[880],"locationId":2},{"id":880,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[881],"locationId":3},{"id":881,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[882],"locationId":4},{"id":882,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[883],"locationId":1},{"id":883,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[884,5034],"locationId":2},{"id":884,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[885],"locationId":3},{"id":885,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[886],"locationId":4},{"id":886,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[887],"locationId":1},{"id":887,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[888],"locationId":2},{"id":888,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[889],"locationId":3},{"id":889,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[890],"locationId":4},{"id":890,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[891],"locationId":1},{"id":891,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[892],"locationId":2},{"id":892,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[893],"locationId":3},{"id":893,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[894],"locationId":4},{"id":894,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[895],"locationId":1},{"id":895,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[896,5652],"locationId":2},{"id":896,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[897],"locationId":3},{"id":897,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[898],"locationId":4},{"id":898,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[899],"locationId":1},{"id":899,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[900],"locationId":2},{"id":900,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[901],"locationId":3},{"id":901,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[902],"locationId":4},{"id":902,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[903],"locationId":1},{"id":903,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[904],"locationId":2},{"id":904,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[905],"locationId":3},{"id":905,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[906],"locationId":4},{"id":906,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[907],"locationId":1},{"id":907,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[908,6222],"locationId":2},{"id":908,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[909],"locationId":3},{"id":909,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[910],"locationId":4},{"id":910,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[911],"locationId":1},{"id":911,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[912],"locationId":2},{"id":912,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[913],"locationId":3},{"id":913,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[914],"locationId":4},{"id":914,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[915],"locationId":1},{"id":915,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[916],"locationId":2},{"id":916,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[917],"locationId":3},{"id":917,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[918],"locationId":4},{"id":918,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[919],"locationId":1},{"id":919,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[920,6880],"locationId":2},{"id":920,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[921],"locationId":3},{"id":921,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[922],"locationId":4},{"id":922,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[923],"locationId":1},{"id":923,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[924],"locationId":2},{"id":924,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[925],"locationId":3},{"id":925,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[926],"locationId":4},{"id":926,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[927],"locationId":1},{"id":927,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[928],"locationId":2},{"id":928,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[929],"locationId":3},{"id":929,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[930],"locationId":4},{"id":930,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[931],"locationId":1},{"id":931,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[932,7354],"locationId":2},{"id":932,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[933],"locationId":3},{"id":933,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[934],"locationId":4},{"id":934,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[935],"locationId":1},{"id":935,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[936],"locationId":2},{"id":936,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[937],"locationId":3},{"id":937,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[938],"locationId":4},{"id":938,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[939],"locationId":1},{"id":939,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[940],"locationId":2},{"id":940,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[941],"locationId":3},{"id":941,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[942],"locationId":4},{"id":942,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[943],"locationId":1},{"id":943,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[944,7780],"locationId":2},{"id":944,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[945],"locationId":3},{"id":945,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[946],"locationId":4},{"id":946,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[947],"locationId":1},{"id":947,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[948],"locationId":2},{"id":948,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[949],"locationId":3},{"id":949,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[950],"locationId":4},{"id":950,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[951],"locationId":1},{"id":951,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[952],"locationId":2},{"id":952,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[953],"locationId":3},{"id":953,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[954],"locationId":4},{"id":954,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[955],"locationId":1},{"id":955,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[956,8158],"locationId":2},{"id":956,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[957],"locationId":3},{"id":957,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[958],"locationId":4},{"id":958,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[959],"locationId":1},{"id":959,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[960],"locationId":2},{"id":960,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[961],"locationId":3},{"id":961,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[962],"locationId":4},{"id":962,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[963],"locationId":1},{"id":963,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[964],"locationId":2},{"id":964,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[965],"locationId":3},{"id":965,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[966],"locationId":4},{"id":966,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[967],"locationId":1},{"id":967,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[968,8488],"locationId":2},{"id":968,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[969],"locationId":3},{"id":969,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[970],"locationId":4},{"id":970,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[971],"locationId":1},{"id":971,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[972],"locationId":2},{"id":972,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[973],"locationId":3},{"id":973,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[974],"locationId":4},{"id":974,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[975],"locationId":1},{"id":975,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[976],"locationId":2},{"id":976,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[977],"locationId":3},{"id":977,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[978],"locationId":4},{"id":978,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[979],"locationId":1},{"id":979,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[980,8770],"locationId":2},{"id":980,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[981],"locationId":3},{"id":981,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[982],"locationId":4},{"id":982,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[983],"locationId":1},{"id":983,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[984],"locationId":2},{"id":984,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[985],"locationId":3},{"id":985,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[986],"locationId":4},{"id":986,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[987],"locationId":1},{"id":987,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[988,13482],"locationId":2},{"id":988,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[989],"locationId":3},{"id":989,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[990],"locationId":4},{"id":990,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[991],"locationId":1},{"id":991,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[992,9004,14075],"locationId":2},{"id":992,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[993],"locationId":3},{"id":993,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[994],"locationId":4},{"id":994,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[995],"locationId":1},{"id":995,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[996],"locationId":2},{"id":996,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[997],"locationId":3},{"id":997,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[998],"locationId":4},{"id":998,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[999],"locationId":1},{"id":999,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1000],"locationId":2},{"id":1000,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1001],"locationId":3},{"id":1001,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1002],"locationId":4},{"id":1002,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1003],"locationId":1},{"id":1003,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1004,9190],"locationId":2},{"id":1004,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1005],"locationId":3},{"id":1005,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1006],"locationId":4},{"id":1006,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1007],"locationId":1},{"id":1007,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1008],"locationId":2},{"id":1008,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1009],"locationId":3},{"id":1009,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1010],"locationId":4},{"id":1010,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1011],"locationId":1},{"id":1011,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1012],"locationId":2},{"id":1012,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1013],"locationId":3},{"id":1013,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1014],"locationId":4},{"id":1014,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1015],"locationId":1},{"id":1015,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1016,9328],"locationId":2},{"id":1016,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1017],"locationId":3},{"id":1017,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1018],"locationId":4},{"id":1018,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1019],"locationId":1},{"id":1019,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1020,1177],"locationId":2},{"id":1020,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1021],"locationId":3},{"id":1021,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1022],"locationId":4},{"id":1022,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1023],"locationId":1},{"id":1023,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1024,13314],"locationId":2},{"id":1024,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1025],"locationId":3},{"id":1025,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1026],"locationId":4},{"id":1026,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1027],"locationId":1},{"id":1027,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1028,1079,9418],"locationId":2},{"id":1028,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1029],"locationId":3},{"id":1029,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1030],"locationId":4},{"id":1030,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1031],"locationId":1},{"id":1031,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1032,1047],"locationId":2},{"id":1032,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1033],"locationId":3},{"id":1033,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1034],"locationId":4},{"id":1034,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1035],"locationId":1},{"id":1035,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1036,1370],"locationId":2},{"id":1036,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1037],"locationId":5},{"id":1037,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1038],"locationId":6},{"id":1038,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1039],"locationId":7},{"id":1039,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1040],"locationId":6},{"id":1040,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1041,13395],"locationId":8},{"id":1041,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1042],"locationId":9},{"id":1042,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1043],"locationId":6},{"id":1043,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":102,"children":[1044,1210,1262,1320,13428,13657,14186],"positionTicks":[{"line":542,"ticks":102,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":1044,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"children":[13550,13694,13859],"positionTicks":[{"line":384,"ticks":1,"startLocationId":435,"endLocationId":436}],"locationId":151},{"id":13550,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":5,"positionTicks":[{"line":441,"ticks":3,"startLocationId":584,"endLocationId":585},{"line":383,"ticks":1,"startLocationId":586,"endLocationId":435},{"line":442,"ticks":1,"startLocationId":585,"endLocationId":587}],"locationId":151},{"id":13694,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[13695],"locationId":224},{"id":13695,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":13859,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[13860],"locationId":152},{"id":13860,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":23,"ticks":1,"startLocationId":588,"endLocationId":589}],"locationId":74},{"id":1210,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":1,"children":[1211],"positionTicks":[{"line":14,"ticks":1,"startLocationId":590,"endLocationId":591}],"locationId":84},{"id":1211,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1212],"locationId":6},{"id":1212,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":1,"children":[1213,14268],"positionTicks":[{"line":17,"ticks":1,"startLocationId":592,"endLocationId":593}],"locationId":85},{"id":1213,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":3,"children":[1214],"positionTicks":[{"line":120,"ticks":1,"startLocationId":594,"endLocationId":595},{"line":40,"ticks":2,"startLocationId":596,"endLocationId":597}],"locationId":86},{"id":1214,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1215],"locationId":87},{"id":1215,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1216],"locationId":88},{"id":1216,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1217],"locationId":74},{"id":1217,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1218],"locationId":89},{"id":1218,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1219,1336],"locationId":90},{"id":1219,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[1341],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1341,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1342,1493],"locationId":109},{"id":1342,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1343],"locationId":109},{"id":1343,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1493,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1494],"locationId":114},{"id":1494,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1495],"locationId":114},{"id":1495,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1496],"locationId":114},{"id":1496,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1336,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1337],"locationId":40},{"id":1337,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1338],"locationId":29},{"id":1338,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14268,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":176,"ticks":1,"startLocationId":598,"endLocationId":599}],"locationId":129},{"id":1262,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":33,"positionTicks":[{"line":545,"ticks":22,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":9,"startLocationId":144,"endLocationId":145},{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":143},{"id":1320,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":2,"children":[1321,13133,13957,14269,14341],"positionTicks":[{"line":40,"ticks":1,"startLocationId":467,"endLocationId":468},{"line":44,"ticks":1,"startLocationId":600,"endLocationId":601}],"locationId":11},{"id":1321,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1322],"locationId":12},{"id":1322,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1323],"locationId":13},{"id":1323,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1324],"locationId":14},{"id":1324,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":13133,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":756,"ticks":1,"startLocationId":602,"endLocationId":603}],"locationId":15},{"id":13957,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":631,"ticks":1,"startLocationId":604,"endLocationId":605}],"locationId":36},{"id":14269,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":410,"ticks":1,"startLocationId":337,"endLocationId":338}],"locationId":13},{"id":14341,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":2,"positionTicks":[{"line":64,"ticks":1,"startLocationId":606,"endLocationId":607},{"line":21,"ticks":1,"startLocationId":608,"endLocationId":609}],"locationId":339},{"id":13428,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":14,"children":[13916],"positionTicks":[{"line":348,"ticks":7,"startLocationId":208,"endLocationId":209},{"line":353,"ticks":7,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":13916,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":3,"positionTicks":[{"line":280,"ticks":3,"startLocationId":52,"endLocationId":53}],"locationId":49},{"id":13657,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[13658,14272],"locationId":12},{"id":13658,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[13659],"locationId":13},{"id":13659,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[13660],"locationId":14},{"id":13660,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":2,"positionTicks":[{"line":663,"ticks":1,"startLocationId":377,"endLocationId":313},{"line":412,"ticks":1,"startLocationId":521,"endLocationId":522}],"locationId":46},{"id":14272,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":808,"ticks":1,"startLocationId":257,"endLocationId":258}],"locationId":256},{"id":14186,"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"hitCount":0,"children":[14187],"locationId":342},{"id":14187,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[14188],"locationId":198},{"id":14188,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":13395,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[13396,13403,13710],"locationId":157},{"id":13396,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[13397],"locationId":164},{"id":13397,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":13403,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[13404],"locationId":158},{"id":13404,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13405],"locationId":29},{"id":13405,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[13406,13958,14175],"locationId":159},{"id":13406,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[13407],"locationId":160},{"id":13407,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":8,"positionTicks":[{"line":79,"ticks":5,"startLocationId":162,"endLocationId":163},{"line":78,"ticks":2,"startLocationId":207,"endLocationId":162},{"line":81,"ticks":1,"startLocationId":473,"endLocationId":474}],"locationId":161},{"id":13958,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":19,"ticks":2,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":14175,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[14176],"locationId":224},{"id":14176,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":13710,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[13711],"locationId":68},{"id":13711,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":1370,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1371],"locationId":3},{"id":1371,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1372],"locationId":4},{"id":1372,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1373],"locationId":1},{"id":1373,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1374,1548,9460],"locationId":2},{"id":1374,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1375],"locationId":5},{"id":1375,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1376],"locationId":6},{"id":1376,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1377,13128],"locationId":7},{"id":1377,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1378],"locationId":6},{"id":1378,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1379],"locationId":8},{"id":1379,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1380],"locationId":9},{"id":1380,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1381],"locationId":6},{"id":1381,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1382,1392,1409],"locationId":10},{"id":1382,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1383],"locationId":11},{"id":1383,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1384],"locationId":12},{"id":1384,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1385],"locationId":13},{"id":1385,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[1386,1490],"positionTicks":[{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":1386,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":737,"ticks":1,"startLocationId":253,"endLocationId":254}],"locationId":33},{"id":1490,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[1491],"locationId":15},{"id":1491,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[1492],"locationId":25},{"id":1492,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":1392,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1393],"locationId":84},{"id":1393,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1394],"locationId":6},{"id":1394,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1395],"locationId":85},{"id":1395,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1396],"locationId":86},{"id":1396,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1397],"locationId":87},{"id":1397,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1398],"locationId":88},{"id":1398,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1399],"locationId":74},{"id":1399,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[1400],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":1400,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[1408,1531],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":1408,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[1507],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1507,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1508],"locationId":109},{"id":1508,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[1601],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1601,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1602],"locationId":114},{"id":1602,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1603],"locationId":114},{"id":1603,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1531,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1532],"locationId":40},{"id":1532,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1533],"locationId":29},{"id":1533,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1409,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":13128,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":3,"children":[13255],"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237},{"line":535,"ticks":2,"startLocationId":237,"endLocationId":610}],"locationId":196},{"id":13255,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[13256],"locationId":197},{"id":13256,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[13257],"locationId":198},{"id":13257,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":2,"children":[13258],"positionTicks":[{"line":13,"ticks":2,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":13258,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[13259],"locationId":199},{"id":13259,"callFrame":{"functionName":"getOwnDependencies","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":94,"columnNumber":22},"hitCount":0,"children":[13260],"locationId":611},{"id":13260,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13261],"locationId":29},{"id":13261,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1548,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1549],"locationId":3},{"id":1549,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1550],"locationId":4},{"id":1550,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":1,"children":[1551],"positionTicks":[{"line":4,"ticks":1,"startLocationId":396,"endLocationId":397}],"locationId":1},{"id":1551,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1552,1691],"locationId":2},{"id":1552,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1553],"locationId":5},{"id":1553,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1554],"locationId":6},{"id":1554,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1555],"locationId":7},{"id":1555,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1556],"locationId":6},{"id":1556,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1557],"locationId":8},{"id":1557,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1558],"locationId":9},{"id":1558,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1559],"locationId":6},{"id":1559,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1560,1566,1579,1617],"locationId":10},{"id":1560,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":1566,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1567],"locationId":84},{"id":1567,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1568],"locationId":6},{"id":1568,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1569],"locationId":85},{"id":1569,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1570],"locationId":86},{"id":1570,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1571],"locationId":87},{"id":1571,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1572],"locationId":88},{"id":1572,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1573],"locationId":74},{"id":1573,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1574,1578,1649],"locationId":89},{"id":1574,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":1578,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[1618,1647,1652],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":1618,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1619],"locationId":109},{"id":1619,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":1647,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1648],"locationId":40},{"id":1648,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":1652,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[1653],"locationId":117},{"id":1653,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[1654],"locationId":118},{"id":1654,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[1655],"locationId":123},{"id":1655,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1656],"locationId":29},{"id":1656,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1649,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":0,"children":[1650],"locationId":129},{"id":1650,"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"hitCount":0,"children":[1651],"locationId":308},{"id":1651,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":269,"ticks":1,"startLocationId":311,"endLocationId":312}],"locationId":69},{"id":1579,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1580],"locationId":11},{"id":1580,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1581],"locationId":12},{"id":1581,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1582],"locationId":13},{"id":1582,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[1583,1610],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":1583,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":766,"ticks":1,"startLocationId":532,"endLocationId":533}],"locationId":15},{"id":1610,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[1611],"locationId":46},{"id":1611,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[1612],"locationId":54},{"id":1612,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[1613],"locationId":55},{"id":1613,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[1614],"locationId":56},{"id":1614,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[1615],"locationId":28},{"id":1615,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1616],"locationId":29},{"id":1616,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1617,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1691,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1692],"locationId":3},{"id":1692,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1693],"locationId":4},{"id":1693,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1694],"locationId":1},{"id":1694,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1695,1852],"locationId":2},{"id":1695,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1696],"locationId":5},{"id":1696,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1697],"locationId":6},{"id":1697,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1698],"locationId":7},{"id":1698,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1699],"locationId":6},{"id":1699,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1700],"locationId":8},{"id":1700,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1701],"locationId":9},{"id":1701,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1702],"locationId":6},{"id":1702,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[1714,1717,1771],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":1714,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1715],"locationId":11},{"id":1715,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1716,1743],"locationId":12},{"id":1716,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":814,"ticks":1,"startLocationId":513,"endLocationId":518}],"locationId":256},{"id":1743,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1744,1745],"locationId":13},{"id":1744,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[1781,1817,1823],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":1781,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":1817,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":1823,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[1824],"locationId":64},{"id":1824,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[1825],"locationId":65},{"id":1825,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":1745,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":1717,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1718],"locationId":84},{"id":1718,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1719],"locationId":6},{"id":1719,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1720],"locationId":85},{"id":1720,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1721],"locationId":86},{"id":1721,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1722],"locationId":87},{"id":1722,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1723],"locationId":88},{"id":1723,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1724],"locationId":74},{"id":1724,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[1826],"positionTicks":[{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":1826,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1827,1846],"locationId":90},{"id":1827,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1828],"locationId":40},{"id":1828,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1829],"locationId":29},{"id":1829,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1846,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1847],"locationId":109},{"id":1847,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1848],"locationId":109},{"id":1848,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1771,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":1852,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1853],"locationId":3},{"id":1853,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1854],"locationId":4},{"id":1854,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1855],"locationId":1},{"id":1855,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1856,1866],"locationId":2},{"id":1856,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[1857],"locationId":3},{"id":1857,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[1858],"locationId":4},{"id":1858,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[1859],"locationId":1},{"id":1859,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[1860,2165],"locationId":2},{"id":1860,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1861],"locationId":5},{"id":1861,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1862],"locationId":6},{"id":1862,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":1,"children":[1956],"positionTicks":[{"line":492,"ticks":1,"startLocationId":612,"endLocationId":613}],"locationId":7},{"id":1956,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1957],"locationId":6},{"id":1957,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1958,2036],"locationId":8},{"id":1958,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[1959],"locationId":157},{"id":1959,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[1960],"locationId":158},{"id":1960,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1961],"locationId":29},{"id":1961,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[1962],"locationId":159},{"id":1962,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":94,"ticks":1,"startLocationId":353,"endLocationId":348}],"locationId":160},{"id":2036,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2037],"locationId":9},{"id":2037,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2038],"locationId":6},{"id":2038,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2039,2051,2060],"locationId":10},{"id":2039,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2040],"locationId":11},{"id":2040,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2041],"locationId":12},{"id":2041,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2042],"locationId":13},{"id":2042,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2043],"locationId":14},{"id":2043,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":2051,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2052],"locationId":84},{"id":2052,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2053],"locationId":6},{"id":2053,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2054],"locationId":85},{"id":2054,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2055],"locationId":86},{"id":2055,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2056],"locationId":87},{"id":2056,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2057],"locationId":88},{"id":2057,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2058],"locationId":74},{"id":2058,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2059],"locationId":89},{"id":2059,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[2106,2108],"positionTicks":[{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":2106,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2107],"locationId":109},{"id":2107,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2108,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2109],"locationId":117},{"id":2109,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2110],"locationId":118},{"id":2110,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2111],"locationId":123},{"id":2111,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2112],"locationId":29},{"id":2112,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2060,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":2165,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2166],"locationId":3},{"id":2166,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2167],"locationId":4},{"id":2167,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2168],"locationId":1},{"id":2168,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2169,2357],"locationId":2},{"id":2169,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2170],"locationId":5},{"id":2170,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2171],"locationId":6},{"id":2171,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2172],"locationId":7},{"id":2172,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2173],"locationId":6},{"id":2173,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2174],"locationId":8},{"id":2174,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2175],"locationId":9},{"id":2175,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2176],"locationId":6},{"id":2176,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[2194,2198],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":2194,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2195],"locationId":11},{"id":2195,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2196],"locationId":12},{"id":2196,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2197],"locationId":13},{"id":2197,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[2220,2222],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":2220,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":634,"ticks":1,"startLocationId":255,"endLocationId":221}],"locationId":36},{"id":2222,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":2198,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2199],"locationId":84},{"id":2199,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2200],"locationId":6},{"id":2200,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2201],"locationId":85},{"id":2201,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2202],"locationId":86},{"id":2202,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2203],"locationId":87},{"id":2203,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2204],"locationId":88},{"id":2204,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2205],"locationId":74},{"id":2205,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2206],"locationId":89},{"id":2206,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":4,"children":[2232,2243,2281],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":25,"ticks":1,"startLocationId":190,"endLocationId":191},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":791,"ticks":1,"startLocationId":494,"endLocationId":495}],"locationId":90},{"id":2232,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[2321],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2321,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2322,2511],"locationId":109},{"id":2322,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2511,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2512],"locationId":114},{"id":2512,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2513],"locationId":114},{"id":2513,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2514],"locationId":114},{"id":2514,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2515],"locationId":114},{"id":2515,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2516],"locationId":114},{"id":2516,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":2243,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":2281,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2282],"locationId":40},{"id":2282,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":2357,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2358],"locationId":3},{"id":2358,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2359],"locationId":4},{"id":2359,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2360],"locationId":1},{"id":2360,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2361,2520],"locationId":2},{"id":2361,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2362],"locationId":5},{"id":2362,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2363],"locationId":6},{"id":2363,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2364],"locationId":7},{"id":2364,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2365],"locationId":6},{"id":2365,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2366],"locationId":8},{"id":2366,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2367],"locationId":9},{"id":2367,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2368],"locationId":6},{"id":2368,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2369,2379],"locationId":10},{"id":2369,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2370],"locationId":84},{"id":2370,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2371],"locationId":6},{"id":2371,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2372],"locationId":85},{"id":2372,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2373],"locationId":86},{"id":2373,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2374],"locationId":87},{"id":2374,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2375],"locationId":88},{"id":2375,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2376],"locationId":74},{"id":2376,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[2377,2383,2384],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2377,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[2420,2479],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":2420,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[2537],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":2537,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2538],"locationId":109},{"id":2538,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2539],"locationId":114},{"id":2539,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":2479,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2480],"locationId":117},{"id":2480,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2481],"locationId":118},{"id":2481,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2482],"locationId":123},{"id":2482,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2483],"locationId":29},{"id":2483,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2383,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":2384,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":2379,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2380],"locationId":11},{"id":2380,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2381],"locationId":12},{"id":2381,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2382],"locationId":13},{"id":2382,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[2427,2433,2476],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":2427,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[2428],"locationId":46},{"id":2428,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[2429],"locationId":54},{"id":2429,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[2430],"locationId":55},{"id":2430,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[2431],"locationId":56},{"id":2431,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":2433,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":2476,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[2477],"locationId":15},{"id":2477,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[2478],"locationId":25},{"id":2478,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":2520,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2521],"locationId":3},{"id":2521,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2522],"locationId":4},{"id":2522,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2523],"locationId":1},{"id":2523,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2524,2671],"locationId":2},{"id":2524,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2525],"locationId":5},{"id":2525,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2526],"locationId":6},{"id":2526,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2527],"locationId":7},{"id":2527,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2528],"locationId":6},{"id":2528,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2529],"locationId":8},{"id":2529,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2530],"locationId":9},{"id":2530,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2531],"locationId":6},{"id":2531,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[2542,2569,2605],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":2542,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2543],"locationId":84},{"id":2543,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2544],"locationId":6},{"id":2544,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2545],"locationId":85},{"id":2545,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2546],"locationId":86},{"id":2546,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2547],"locationId":87},{"id":2547,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2548],"locationId":88},{"id":2548,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2549],"locationId":74},{"id":2549,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2550,2552],"locationId":89},{"id":2550,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":187,"ticks":1,"startLocationId":306,"endLocationId":307}],"locationId":129},{"id":2552,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":4,"children":[2606,2608],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":224,"ticks":1,"startLocationId":614,"endLocationId":615},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383}],"locationId":90},{"id":2606,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[2607],"locationId":97},{"id":2607,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":2608,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2609],"locationId":117},{"id":2609,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2610],"locationId":118},{"id":2610,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2611],"locationId":123},{"id":2611,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2612],"locationId":29},{"id":2612,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2569,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2570],"locationId":11},{"id":2570,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2571],"locationId":12},{"id":2571,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2572],"locationId":13},{"id":2572,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[2666],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":2666,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[2667],"locationId":46},{"id":2667,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[2668],"locationId":54},{"id":2668,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[2669],"locationId":55},{"id":2669,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[2670],"locationId":56},{"id":2670,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":2605,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":2671,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2672],"locationId":3},{"id":2672,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2673],"locationId":4},{"id":2673,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2674],"locationId":1},{"id":2674,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2675,2875],"locationId":2},{"id":2675,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2676],"locationId":5},{"id":2676,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2677],"locationId":6},{"id":2677,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2678],"locationId":7},{"id":2678,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2679],"locationId":6},{"id":2679,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2680,2685],"locationId":8},{"id":2680,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2681],"locationId":9},{"id":2681,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2682],"locationId":6},{"id":2682,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[2683,2752,2760,2808],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":2683,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":279,"ticks":1,"startLocationId":616,"endLocationId":52}],"locationId":49},{"id":2752,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":2760,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2761],"locationId":11},{"id":2761,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2762],"locationId":12},{"id":2762,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2763],"locationId":13},{"id":2763,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[2764],"locationId":14},{"id":2764,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[2765],"locationId":36},{"id":2765,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2766],"locationId":40},{"id":2766,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":2808,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2809],"locationId":84},{"id":2809,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2810],"locationId":6},{"id":2810,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2811],"locationId":85},{"id":2811,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2812],"locationId":86},{"id":2812,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2813],"locationId":87},{"id":2813,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2814],"locationId":88},{"id":2814,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2815],"locationId":74},{"id":2815,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[2816,2817],"locationId":89},{"id":2816,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139}],"locationId":129},{"id":2817,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[2818,2826,2855],"locationId":90},{"id":2818,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2819,2945],"locationId":109},{"id":2819,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2945,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2946],"locationId":109},{"id":2946,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2947],"locationId":114},{"id":2947,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2948],"locationId":114},{"id":2948,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2826,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[2827],"locationId":117},{"id":2827,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[2828],"locationId":118},{"id":2828,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[2829],"locationId":123},{"id":2829,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2830],"locationId":29},{"id":2830,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2855,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2856],"locationId":40},{"id":2856,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2857],"locationId":29},{"id":2857,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2685,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[2686],"locationId":157},{"id":2686,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[2687],"locationId":158},{"id":2687,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2688],"locationId":29},{"id":2688,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"children":[2689],"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":2689,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[2690],"locationId":160},{"id":2690,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":2875,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[2876],"locationId":3},{"id":2876,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[2877],"locationId":4},{"id":2877,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[2878],"locationId":1},{"id":2878,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[2879,3016],"locationId":2},{"id":2879,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[2880],"locationId":5},{"id":2880,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2881],"locationId":6},{"id":2881,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[2882],"locationId":7},{"id":2882,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2883],"locationId":6},{"id":2883,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[2884],"locationId":8},{"id":2884,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[2885],"locationId":9},{"id":2885,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2886],"locationId":6},{"id":2886,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[2887,2920,2943],"locationId":10},{"id":2887,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[2888,2929],"locationId":11},{"id":2888,"callFrame":{"functionName":"detectCircularReferences","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":111,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":112,"ticks":1,"startLocationId":618,"endLocationId":619}],"locationId":617},{"id":2929,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[2930],"locationId":12},{"id":2930,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[2931],"locationId":13},{"id":2931,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[2983],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":2983,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":2920,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[2921],"locationId":84},{"id":2921,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[2922],"locationId":6},{"id":2922,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[2923],"locationId":85},{"id":2923,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[2924],"locationId":86},{"id":2924,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[2925],"locationId":87},{"id":2925,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[2926],"locationId":88},{"id":2926,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[2927],"locationId":74},{"id":2927,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[2928],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":2928,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":5,"children":[2991,2995],"positionTicks":[{"line":73,"ticks":2,"startLocationId":210,"endLocationId":188},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":108,"ticks":1,"startLocationId":485,"endLocationId":486},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":2991,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2992],"locationId":109},{"id":2992,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2993],"locationId":114},{"id":2993,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2994],"locationId":114},{"id":2994,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":2995,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[2996],"locationId":40},{"id":2996,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[2997],"locationId":29},{"id":2997,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":2943,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3016,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3017],"locationId":3},{"id":3017,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3018],"locationId":4},{"id":3018,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3019],"locationId":1},{"id":3019,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3020,3216],"locationId":2},{"id":3020,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3021],"locationId":5},{"id":3021,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3022],"locationId":6},{"id":3022,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3023],"locationId":7},{"id":3023,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3024],"locationId":6},{"id":3024,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3025,3085],"locationId":8},{"id":3025,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3026],"locationId":9},{"id":3026,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3027],"locationId":6},{"id":3027,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[3028,3053,3118],"locationId":10},{"id":3028,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3029],"locationId":11},{"id":3029,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3030],"locationId":12},{"id":3030,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3031],"locationId":13},{"id":3031,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3032,3153],"locationId":14},{"id":3032,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222}],"locationId":36},{"id":3153,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":3053,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3054],"locationId":84},{"id":3054,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3055],"locationId":6},{"id":3055,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3056],"locationId":85},{"id":3056,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3057],"locationId":86},{"id":3057,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3058],"locationId":87},{"id":3058,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3059],"locationId":88},{"id":3059,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3060],"locationId":74},{"id":3060,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3135],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3135,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":3118,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3085,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[3086],"locationId":157},{"id":3086,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[3087],"locationId":164},{"id":3087,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3088],"locationId":29},{"id":3088,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[3089],"locationId":165},{"id":3089,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[3090],"locationId":166},{"id":3090,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3091],"locationId":29},{"id":3091,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[3092],"locationId":167},{"id":3092,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":0,"children":[3093],"locationId":168},{"id":3093,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":139,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":156,"ticks":1,"startLocationId":173,"endLocationId":174}],"locationId":169},{"id":3216,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3217],"locationId":3},{"id":3217,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3218],"locationId":4},{"id":3218,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3219],"locationId":1},{"id":3219,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3220,3343],"locationId":2},{"id":3220,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3221],"locationId":5},{"id":3221,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3222],"locationId":6},{"id":3222,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3223],"locationId":7},{"id":3223,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3224],"locationId":6},{"id":3224,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3225],"locationId":8},{"id":3225,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3226],"locationId":9},{"id":3226,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3227],"locationId":6},{"id":3227,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[3251,3274,3323],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":3251,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3252],"locationId":84},{"id":3252,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3253],"locationId":6},{"id":3253,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3254],"locationId":85},{"id":3254,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3255],"locationId":86},{"id":3255,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3256],"locationId":87},{"id":3256,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3257],"locationId":88},{"id":3257,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3258],"locationId":74},{"id":3258,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[3259],"locationId":89},{"id":3259,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[3310,3372,3656],"positionTicks":[{"line":26,"ticks":1,"startLocationId":191,"endLocationId":370},{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":3310,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3311],"locationId":40},{"id":3311,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":3372,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[3373],"locationId":102},{"id":3373,"callFrame":{"functionName":"isXmlScope","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":25,"columnNumber":19},"hitCount":0,"children":[3374],"locationId":620},{"id":3374,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":621,"endLocationId":622}],"locationId":69},{"id":3656,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3657],"locationId":109},{"id":3657,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3658],"locationId":109},{"id":3658,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3659],"locationId":109},{"id":3659,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3660],"locationId":109},{"id":3660,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3661],"locationId":109},{"id":3661,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3662],"locationId":114},{"id":3662,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3663],"locationId":114},{"id":3663,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3664],"locationId":114},{"id":3664,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3665],"locationId":114},{"id":3665,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[3666],"locationId":114},{"id":3666,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":3274,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":3323,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3324],"locationId":11},{"id":3324,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3325],"locationId":12},{"id":3325,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3326],"locationId":13},{"id":3326,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3327],"locationId":14},{"id":3327,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[3328],"locationId":36},{"id":3328,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3329],"locationId":40},{"id":3329,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3330],"locationId":29},{"id":3330,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3343,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3344],"locationId":3},{"id":3344,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3345],"locationId":4},{"id":3345,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3346],"locationId":1},{"id":3346,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3347,3505],"locationId":2},{"id":3347,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3348],"locationId":5},{"id":3348,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3349],"locationId":6},{"id":3349,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3350],"locationId":7},{"id":3350,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3351],"locationId":6},{"id":3351,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3352,3445],"locationId":8},{"id":3352,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3353],"locationId":9},{"id":3353,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3354],"locationId":6},{"id":3354,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[3355,3409,3458],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":3355,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3356,3453],"locationId":11},{"id":3356,"callFrame":{"functionName":"diagnosticDetectDuplicateAncestorScriptImports","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":84,"columnNumber":50},"hitCount":0,"children":[3357],"locationId":623},{"id":3357,"callFrame":{"functionName":"get parentComponent","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":319,"columnNumber":23},"hitCount":0,"children":[3358],"locationId":624},{"id":3358,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":3453,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3454],"locationId":12},{"id":3454,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3455],"locationId":13},{"id":3455,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3456,3459,3492],"locationId":14},{"id":3456,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[3457],"locationId":64},{"id":3457,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":3459,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":3492,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":636,"ticks":1,"startLocationId":222,"endLocationId":223}],"locationId":36},{"id":3409,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3410],"locationId":84},{"id":3410,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3411],"locationId":6},{"id":3411,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3412],"locationId":85},{"id":3412,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3413],"locationId":86},{"id":3413,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3414],"locationId":87},{"id":3414,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3415],"locationId":88},{"id":3415,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3416],"locationId":74},{"id":3416,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3437],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3437,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[3438,3452,3527],"locationId":90},{"id":3438,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3452,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3527,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3528],"locationId":40},{"id":3528,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3529],"locationId":29},{"id":3529,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3458,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3445,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[3446],"locationId":157},{"id":3446,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[3447],"locationId":164},{"id":3447,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3448],"locationId":29},{"id":3448,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[3449],"locationId":165},{"id":3449,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[3450],"locationId":166},{"id":3450,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3451],"locationId":29},{"id":3451,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":340,"ticks":1,"startLocationId":625,"endLocationId":420}],"locationId":167},{"id":3505,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3506],"locationId":3},{"id":3506,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3507],"locationId":4},{"id":3507,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3508],"locationId":1},{"id":3508,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3509,3690],"locationId":2},{"id":3509,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3510],"locationId":5},{"id":3510,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3511],"locationId":6},{"id":3511,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3512],"locationId":7},{"id":3512,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3513],"locationId":6},{"id":3513,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3514],"locationId":8},{"id":3514,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3515],"locationId":9},{"id":3515,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3516],"locationId":6},{"id":3516,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[3561,3566,3615],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":3561,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[3562],"locationId":11},{"id":3562,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[3563,3679],"locationId":12},{"id":3563,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[3564],"locationId":13},{"id":3564,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[3565],"locationId":14},{"id":3565,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":725,"ticks":1,"startLocationId":528,"endLocationId":34}],"locationId":33},{"id":3679,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[3680],"locationId":72},{"id":3680,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[3681],"locationId":73},{"id":3681,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3682],"locationId":74},{"id":3682,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[3683],"locationId":75},{"id":3683,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":0,"children":[3684],"locationId":78},{"id":3684,"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":17},"hitCount":1,"positionTicks":[{"line":71,"ticks":1,"startLocationId":404,"endLocationId":405}],"locationId":403},{"id":3566,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3567],"locationId":84},{"id":3567,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3568],"locationId":6},{"id":3568,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3569],"locationId":85},{"id":3569,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3570],"locationId":86},{"id":3570,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3571],"locationId":87},{"id":3571,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3572],"locationId":88},{"id":3572,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3573],"locationId":74},{"id":3573,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3574],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3574,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[3601,3639,3667],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":3601,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[3602],"locationId":117},{"id":3602,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[3603],"locationId":118},{"id":3603,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[3604],"locationId":123},{"id":3604,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3605],"locationId":29},{"id":3605,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3639,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[3640],"locationId":40},{"id":3640,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[3641],"locationId":29},{"id":3641,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":3667,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[3668],"locationId":97},{"id":3668,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[3669],"locationId":97},{"id":3669,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3615,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":3690,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3691],"locationId":3},{"id":3691,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3692],"locationId":4},{"id":3692,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3693],"locationId":1},{"id":3693,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3694,3829],"locationId":2},{"id":3694,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[3695],"locationId":5},{"id":3695,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3696],"locationId":6},{"id":3696,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[3697],"locationId":7},{"id":3697,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3698],"locationId":6},{"id":3698,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[3699],"locationId":8},{"id":3699,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[3700],"locationId":9},{"id":3700,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3701],"locationId":6},{"id":3701,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[3704,3740],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":3704,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[3705],"locationId":84},{"id":3705,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[3706],"locationId":6},{"id":3706,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[3707],"locationId":85},{"id":3707,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[3708],"locationId":86},{"id":3708,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[3709],"locationId":87},{"id":3709,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[3710],"locationId":88},{"id":3710,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[3711],"locationId":74},{"id":3711,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[3712,3726],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":3712,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":3726,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[3739,3741,3827],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":791,"ticks":1,"startLocationId":494,"endLocationId":495}],"locationId":90},{"id":3739,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":3741,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[3742],"locationId":117},{"id":3742,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[3764],"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":3764,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[3765],"locationId":123},{"id":3765,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":3827,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[3828],"locationId":109},{"id":3828,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":3740,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":3829,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3830],"locationId":3},{"id":3830,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3831],"locationId":4},{"id":3831,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3832],"locationId":1},{"id":3832,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[3833],"locationId":2},{"id":3833,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[3834],"locationId":3},{"id":3834,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[3835],"locationId":4},{"id":3835,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[3836],"locationId":1},{"id":3836,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":1866,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1867],"locationId":5},{"id":1867,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1868],"locationId":6},{"id":1868,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1869],"locationId":7},{"id":1869,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1870],"locationId":6},{"id":1870,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1871],"locationId":8},{"id":1871,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1872],"locationId":9},{"id":1872,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1873],"locationId":6},{"id":1873,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1874,1876,1886],"locationId":10},{"id":1874,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[1875],"locationId":157},{"id":1875,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":1876,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[1877],"locationId":11},{"id":1877,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[1878],"locationId":12},{"id":1878,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[1879],"locationId":13},{"id":1879,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[1880,1969],"locationId":14},{"id":1880,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":626,"endLocationId":627}],"locationId":36},{"id":1969,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[1970],"locationId":15},{"id":1970,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[1971],"locationId":28},{"id":1971,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1972],"locationId":29},{"id":1972,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1886,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1887],"locationId":84},{"id":1887,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1888],"locationId":6},{"id":1888,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1889],"locationId":85},{"id":1889,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1890],"locationId":86},{"id":1890,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1891],"locationId":87},{"id":1891,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1892],"locationId":88},{"id":1892,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1893],"locationId":74},{"id":1893,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1894,1977,1981],"locationId":89},{"id":1894,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":1977,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1978],"locationId":90},{"id":1978,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1979,2070],"locationId":109},{"id":1979,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":2070,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2071],"locationId":109},{"id":2071,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[2072],"locationId":109},{"id":2072,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2073],"locationId":114},{"id":2073,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[2074],"locationId":114},{"id":2074,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":1981,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":9460,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9461],"locationId":4},{"id":9461,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9462],"locationId":1},{"id":9462,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":1047,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1048],"locationId":5},{"id":1048,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1049],"locationId":6},{"id":1049,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1050],"locationId":7},{"id":1050,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1051],"locationId":6},{"id":1051,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1052],"locationId":8},{"id":1052,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1053],"locationId":9},{"id":1053,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1054],"locationId":6},{"id":1054,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1055,13789],"locationId":10},{"id":1055,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1056],"locationId":84},{"id":1056,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1057],"locationId":6},{"id":1057,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1058],"locationId":85},{"id":1058,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1059],"locationId":86},{"id":1059,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1060],"locationId":87},{"id":1060,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1061],"locationId":88},{"id":1061,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1062],"locationId":74},{"id":1062,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1063,14016],"locationId":89},{"id":1063,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1064,1304,13120,13129,13798],"locationId":90},{"id":1064,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[1065],"locationId":40},{"id":1065,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[1066,13808],"locationId":29},{"id":1066,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":101,"positionTicks":[{"line":26,"ticks":101,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":13808,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":54},"hitCount":0,"children":[13809],"locationId":561},{"id":13809,"callFrame":{"functionName":"buildNamespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":451,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":453,"ticks":1,"startLocationId":629,"endLocationId":630}],"locationId":628},{"id":1304,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1305,13208],"locationId":109},{"id":1305,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1306,13312],"locationId":109},{"id":1306,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":12,"children":[1307,1522,13343],"positionTicks":[{"line":27,"ticks":12,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1307,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[1308],"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":1308,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1309],"locationId":114},{"id":1309,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1522,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[1523],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":1523,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1524],"locationId":109},{"id":1524,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1525],"locationId":109},{"id":1525,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1526],"locationId":109},{"id":1526,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1527],"locationId":114},{"id":1527,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1528],"locationId":114},{"id":1528,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1529],"locationId":114},{"id":1529,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13343,"callFrame":{"functionName":"get parent","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":332,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":334,"ticks":1,"startLocationId":632,"endLocationId":633}],"locationId":631},{"id":13312,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":15,"children":[13580],"positionTicks":[{"line":29,"ticks":15,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13580,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":13208,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13209],"locationId":114},{"id":13209,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":11,"children":[13583,14411],"positionTicks":[{"line":29,"ticks":11,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13583,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":2,"startLocationId":245,"endLocationId":246},{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14411,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":146,"ticks":1,"startLocationId":216,"endLocationId":451}],"locationId":214},{"id":13120,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[13121],"locationId":97},{"id":13121,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":4,"children":[13122],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99},{"line":47,"ticks":3,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":13122,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":15,"children":[14273],"positionTicks":[{"line":48,"ticks":11,"startLocationId":98,"endLocationId":99},{"line":50,"ticks":3,"startLocationId":100,"endLocationId":101},{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":14273,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":406,"endLocationId":407}],"locationId":97},{"id":13129,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[13130,13692,13708],"locationId":102},{"id":13130,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":7,"positionTicks":[{"line":13,"ticks":7,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":13692,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":2,"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579},{"line":304,"ticks":1,"startLocationId":275,"endLocationId":276}],"locationId":247},{"id":13708,"callFrame":{"functionName":"isXmlScope","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":25,"columnNumber":19},"hitCount":0,"children":[13709],"locationId":620},{"id":13709,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":621,"endLocationId":622}],"locationId":69},{"id":13798,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13799],"locationId":29},{"id":13799,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14016,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305}],"locationId":129},{"id":13789,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[13790],"locationId":11},{"id":13790,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[13791,14169],"locationId":12},{"id":13791,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[13792],"locationId":372},{"id":13792,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[13793],"locationId":373},{"id":13793,"callFrame":{"functionName":"verifyNewExpressions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":42,"columnNumber":24},"hitCount":0,"children":[13794],"locationId":374},{"id":13794,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[13795],"locationId":13},{"id":13795,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[13796],"locationId":164},{"id":13796,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[13797],"locationId":29},{"id":13797,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14169,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[14170],"locationId":72},{"id":14170,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[14171],"locationId":73},{"id":14171,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14172],"locationId":74},{"id":14172,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[14173,14212],"locationId":75},{"id":14173,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":0,"children":[14174],"locationId":78},{"id":14174,"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":17},"hitCount":2,"positionTicks":[{"line":71,"ticks":2,"startLocationId":404,"endLocationId":405}],"locationId":403},{"id":14212,"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":24},"hitCount":0,"children":[14213],"locationId":81},{"id":14213,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14214],"locationId":29},{"id":14214,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":1079,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1080],"locationId":5},{"id":1080,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1081],"locationId":6},{"id":1081,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1082],"locationId":7},{"id":1082,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1083],"locationId":6},{"id":1083,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1084],"locationId":8},{"id":1084,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1085],"locationId":9},{"id":1085,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1086],"locationId":6},{"id":1086,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1087],"locationId":10},{"id":1087,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1088],"locationId":84},{"id":1088,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1089],"locationId":6},{"id":1089,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1090],"locationId":85},{"id":1090,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1091],"locationId":86},{"id":1091,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1092],"locationId":87},{"id":1092,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1093],"locationId":88},{"id":1093,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1094],"locationId":74},{"id":1094,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1095],"locationId":89},{"id":1095,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1096],"locationId":90},{"id":1096,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1097,13410],"locationId":109},{"id":1097,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1098],"locationId":114},{"id":1098,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1099],"locationId":114},{"id":1099,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1100],"locationId":114},{"id":1100,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1101],"locationId":114},{"id":1101,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[1102],"locationId":114},{"id":1102,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[1103],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1103,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":13410,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13411,13818],"locationId":109},{"id":13411,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13412,13839],"locationId":109},{"id":13412,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13413,13431],"locationId":109},{"id":13413,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13414,13824],"locationId":109},{"id":13414,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13415],"locationId":109},{"id":13415,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":6,"positionTicks":[{"line":27,"ticks":6,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":13824,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13825],"locationId":114},{"id":13825,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[14403],"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14403,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":13431,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13432],"locationId":114},{"id":13432,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13433],"locationId":114},{"id":13433,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[13434],"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13434,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":13839,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13840],"locationId":114},{"id":13840,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13841],"locationId":114},{"id":13841,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13842],"locationId":114},{"id":13842,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13818,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13819],"locationId":114},{"id":13819,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13820],"locationId":114},{"id":13820,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13821],"locationId":114},{"id":13821,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13822],"locationId":114},{"id":13822,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[13823],"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13823,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":9418,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9419],"locationId":4},{"id":9419,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9420],"locationId":1},{"id":9420,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9421],"locationId":2},{"id":9421,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9422],"locationId":4},{"id":9422,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9423],"locationId":1},{"id":9423,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9424],"locationId":2},{"id":9424,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9425],"locationId":4},{"id":9425,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9426],"locationId":1},{"id":9426,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9427],"locationId":2},{"id":9427,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9428],"locationId":4},{"id":9428,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9429],"locationId":1},{"id":9429,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9430],"locationId":2},{"id":9430,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9431],"locationId":4},{"id":9431,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9432],"locationId":1},{"id":9432,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":13314,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13315],"locationId":5},{"id":13315,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13316],"locationId":6},{"id":13316,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13317],"locationId":7},{"id":13317,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13318],"locationId":6},{"id":13318,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13319],"locationId":8},{"id":13319,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13320],"locationId":9},{"id":13320,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13321],"locationId":6},{"id":13321,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13322],"locationId":10},{"id":13322,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13323],"locationId":84},{"id":13323,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13324],"locationId":6},{"id":13324,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13325],"locationId":85},{"id":13325,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13326],"locationId":86},{"id":13326,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13327],"locationId":87},{"id":13327,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13328],"locationId":88},{"id":13328,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13329],"locationId":74},{"id":13329,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13330],"locationId":89},{"id":13330,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13331],"locationId":90},{"id":13331,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13332],"locationId":109},{"id":13332,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13333,13565],"locationId":109},{"id":13333,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13334,14259],"locationId":109},{"id":13334,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13335,14277],"locationId":109},{"id":13335,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13336],"locationId":114},{"id":13336,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13337],"locationId":114},{"id":13337,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13338],"locationId":114},{"id":13338,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13339],"locationId":114},{"id":13339,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13340],"locationId":114},{"id":13340,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13341],"locationId":114},{"id":13341,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14277,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14278],"locationId":109},{"id":14278,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14279],"locationId":114},{"id":14279,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14280],"locationId":114},{"id":14280,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14281],"locationId":114},{"id":14281,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14282],"locationId":114},{"id":14282,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14283],"locationId":114},{"id":14283,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14259,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14260],"locationId":114},{"id":14260,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14261],"locationId":114},{"id":14261,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14262],"locationId":114},{"id":14262,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14263],"locationId":114},{"id":14263,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14264],"locationId":114},{"id":14264,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14265],"locationId":114},{"id":14265,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14266],"locationId":114},{"id":14266,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":13565,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13566],"locationId":114},{"id":13566,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13567],"locationId":114},{"id":13567,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13568],"locationId":114},{"id":13568,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13569],"locationId":114},{"id":13569,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13570],"locationId":114},{"id":13570,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13571],"locationId":114},{"id":13571,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13572],"locationId":114},{"id":13572,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[13573],"locationId":114},{"id":13573,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":1177,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[1178],"locationId":5},{"id":1178,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1179],"locationId":6},{"id":1179,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[1180],"locationId":7},{"id":1180,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1181],"locationId":6},{"id":1181,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[1182],"locationId":8},{"id":1182,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[1183],"locationId":9},{"id":1183,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1184],"locationId":6},{"id":1184,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[1185],"locationId":10},{"id":1185,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[1186],"locationId":84},{"id":1186,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[1187],"locationId":6},{"id":1187,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[1188],"locationId":85},{"id":1188,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[1189],"locationId":86},{"id":1189,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[1190],"locationId":87},{"id":1190,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[1191],"locationId":88},{"id":1191,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[1192],"locationId":74},{"id":1192,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[1193],"locationId":89},{"id":1193,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[1194],"locationId":90},{"id":1194,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1195],"locationId":109},{"id":1195,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1196],"locationId":109},{"id":1196,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1197],"locationId":109},{"id":1197,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1198],"locationId":109},{"id":1198,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1199],"locationId":109},{"id":1199,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1200],"locationId":109},{"id":1200,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1201],"locationId":109},{"id":1201,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1202],"locationId":109},{"id":1202,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1203],"locationId":109},{"id":1203,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1204],"locationId":109},{"id":1204,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1205],"locationId":109},{"id":1205,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1206],"locationId":109},{"id":1206,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1207],"locationId":109},{"id":1207,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1208],"locationId":109},{"id":1208,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[1209],"locationId":109},{"id":1209,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":9328,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9329],"locationId":4},{"id":9329,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9330],"locationId":1},{"id":9330,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9331],"locationId":2},{"id":9331,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9332],"locationId":4},{"id":9332,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9333],"locationId":1},{"id":9333,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9334],"locationId":2},{"id":9334,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9335],"locationId":4},{"id":9335,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9336],"locationId":1},{"id":9336,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9337],"locationId":2},{"id":9337,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9338],"locationId":4},{"id":9338,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9339],"locationId":1},{"id":9339,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9340],"locationId":2},{"id":9340,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9341],"locationId":4},{"id":9341,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9342],"locationId":1},{"id":9342,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9343],"locationId":2},{"id":9343,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9344],"locationId":4},{"id":9344,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9345],"locationId":1},{"id":9345,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9346],"locationId":2},{"id":9346,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9347],"locationId":4},{"id":9347,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9348],"locationId":1},{"id":9348,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9349],"locationId":2},{"id":9349,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9350],"locationId":4},{"id":9350,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9351],"locationId":1},{"id":9351,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9352],"locationId":2},{"id":9352,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9353],"locationId":4},{"id":9353,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9354],"locationId":1},{"id":9354,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":9190,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9191],"locationId":4},{"id":9191,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9192],"locationId":1},{"id":9192,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9193],"locationId":2},{"id":9193,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9194],"locationId":4},{"id":9194,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9195],"locationId":1},{"id":9195,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9196],"locationId":2},{"id":9196,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9197],"locationId":4},{"id":9197,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9198],"locationId":1},{"id":9198,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9199],"locationId":2},{"id":9199,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9200],"locationId":4},{"id":9200,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9201],"locationId":1},{"id":9201,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9202],"locationId":2},{"id":9202,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9203],"locationId":4},{"id":9203,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9204],"locationId":1},{"id":9204,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9205],"locationId":2},{"id":9205,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9206],"locationId":4},{"id":9206,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9207],"locationId":1},{"id":9207,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9208],"locationId":2},{"id":9208,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9209],"locationId":4},{"id":9209,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9210],"locationId":1},{"id":9210,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9211],"locationId":2},{"id":9211,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9212],"locationId":4},{"id":9212,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9213],"locationId":1},{"id":9213,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9214],"locationId":2},{"id":9214,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9215],"locationId":4},{"id":9215,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9216],"locationId":1},{"id":9216,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9217],"locationId":2},{"id":9217,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9218],"locationId":4},{"id":9218,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9219],"locationId":1},{"id":9219,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9220],"locationId":2},{"id":9220,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9221],"locationId":4},{"id":9221,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9222],"locationId":1},{"id":9222,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9223],"locationId":2},{"id":9223,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9224],"locationId":4},{"id":9224,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9225],"locationId":1},{"id":9225,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9226],"locationId":2},{"id":9226,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9227],"locationId":4},{"id":9227,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9228],"locationId":1},{"id":9228,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":9004,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9005],"locationId":4},{"id":9005,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9006],"locationId":1},{"id":9006,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9007],"locationId":2},{"id":9007,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9008],"locationId":4},{"id":9008,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9009],"locationId":1},{"id":9009,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9010],"locationId":2},{"id":9010,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9011],"locationId":4},{"id":9011,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9012],"locationId":1},{"id":9012,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9013],"locationId":2},{"id":9013,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9014],"locationId":4},{"id":9014,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9015],"locationId":1},{"id":9015,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9016],"locationId":2},{"id":9016,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9017],"locationId":4},{"id":9017,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9018],"locationId":1},{"id":9018,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9019],"locationId":2},{"id":9019,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9020],"locationId":4},{"id":9020,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9021],"locationId":1},{"id":9021,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9022],"locationId":2},{"id":9022,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9023],"locationId":4},{"id":9023,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9024],"locationId":1},{"id":9024,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9025],"locationId":2},{"id":9025,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9026],"locationId":4},{"id":9026,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9027],"locationId":1},{"id":9027,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9028],"locationId":2},{"id":9028,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9029],"locationId":4},{"id":9029,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9030],"locationId":1},{"id":9030,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9031],"locationId":2},{"id":9031,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9032],"locationId":4},{"id":9032,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9033],"locationId":1},{"id":9033,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9034],"locationId":2},{"id":9034,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9035],"locationId":4},{"id":9035,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9036],"locationId":1},{"id":9036,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9037],"locationId":2},{"id":9037,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9038],"locationId":4},{"id":9038,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9039],"locationId":1},{"id":9039,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9040],"locationId":2},{"id":9040,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9041],"locationId":4},{"id":9041,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9042],"locationId":1},{"id":9042,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9043],"locationId":2},{"id":9043,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9044],"locationId":4},{"id":9044,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9045],"locationId":1},{"id":9045,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9046],"locationId":2},{"id":9046,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9047],"locationId":4},{"id":9047,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9048],"locationId":1},{"id":9048,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9049],"locationId":2},{"id":9049,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9050],"locationId":4},{"id":9050,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9051],"locationId":1},{"id":9051,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9052],"locationId":2},{"id":9052,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9053],"locationId":4},{"id":9053,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9054],"locationId":1},{"id":9054,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":14075,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14076],"locationId":5},{"id":14076,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14077],"locationId":6},{"id":14077,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14078],"locationId":7},{"id":14078,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14079],"locationId":6},{"id":14079,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14080],"locationId":8},{"id":14080,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14081],"locationId":9},{"id":14081,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14082],"locationId":6},{"id":14082,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14083],"locationId":10},{"id":14083,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14084],"locationId":84},{"id":14084,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14085],"locationId":6},{"id":14085,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14086],"locationId":85},{"id":14086,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14087],"locationId":86},{"id":14087,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14088],"locationId":87},{"id":14088,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14089],"locationId":88},{"id":14089,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14090],"locationId":74},{"id":14090,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14091],"locationId":89},{"id":14091,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[14092],"locationId":90},{"id":14092,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14093],"locationId":109},{"id":14093,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14094],"locationId":109},{"id":14094,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14095],"locationId":109},{"id":14095,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14096],"locationId":109},{"id":14096,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14097],"locationId":109},{"id":14097,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14098],"locationId":109},{"id":14098,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14099],"locationId":109},{"id":14099,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14100],"locationId":109},{"id":14100,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14101],"locationId":109},{"id":14101,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14102],"locationId":109},{"id":14102,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14103],"locationId":109},{"id":14103,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14104],"locationId":109},{"id":14104,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14105],"locationId":109},{"id":14105,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14106],"locationId":109},{"id":14106,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14107],"locationId":109},{"id":14107,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14108],"locationId":109},{"id":14108,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14109],"locationId":109},{"id":14109,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14110],"locationId":109},{"id":14110,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14111],"locationId":109},{"id":14111,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14112],"locationId":109},{"id":14112,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14113],"locationId":109},{"id":14113,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14114],"locationId":109},{"id":14114,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14115],"locationId":109},{"id":14115,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14116],"locationId":109},{"id":14116,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14117],"locationId":109},{"id":14117,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14118],"locationId":109},{"id":14118,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14119],"locationId":109},{"id":14119,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14120],"locationId":109},{"id":14120,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14121],"locationId":109},{"id":14121,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14122],"locationId":109},{"id":14122,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14123],"locationId":109},{"id":14123,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14124],"locationId":109},{"id":14124,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14125],"locationId":109},{"id":14125,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14126],"locationId":109},{"id":14126,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14127],"locationId":109},{"id":14127,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14128],"locationId":109},{"id":14128,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14129],"locationId":109},{"id":14129,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14130],"locationId":109},{"id":14130,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14131],"locationId":109},{"id":14131,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14132],"locationId":109},{"id":14132,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14133],"locationId":109},{"id":14133,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14134],"locationId":109},{"id":14134,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14135],"locationId":109},{"id":14135,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":13482,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13483],"locationId":5},{"id":13483,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13484],"locationId":6},{"id":13484,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13485],"locationId":7},{"id":13485,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13486],"locationId":6},{"id":13486,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13487],"locationId":8},{"id":13487,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13488],"locationId":9},{"id":13488,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13489],"locationId":6},{"id":13489,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13490],"locationId":10},{"id":13490,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[13491],"locationId":84},{"id":13491,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13492],"locationId":6},{"id":13492,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[13493],"locationId":85},{"id":13493,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[13494],"locationId":86},{"id":13494,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[13495],"locationId":87},{"id":13495,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[13496],"locationId":88},{"id":13496,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[13497],"locationId":74},{"id":13497,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[13498],"locationId":89},{"id":13498,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[13499],"locationId":90},{"id":13499,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13500],"locationId":109},{"id":13500,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13501],"locationId":109},{"id":13501,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13502],"locationId":109},{"id":13502,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13503],"locationId":109},{"id":13503,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13504],"locationId":109},{"id":13504,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13505],"locationId":109},{"id":13505,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13506],"locationId":109},{"id":13506,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13507],"locationId":109},{"id":13507,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13508],"locationId":109},{"id":13508,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13509],"locationId":109},{"id":13509,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13510],"locationId":109},{"id":13510,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13511],"locationId":109},{"id":13511,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13512],"locationId":109},{"id":13512,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13513],"locationId":109},{"id":13513,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13514],"locationId":109},{"id":13514,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13515],"locationId":109},{"id":13515,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13516],"locationId":109},{"id":13516,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13517],"locationId":109},{"id":13517,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13518],"locationId":109},{"id":13518,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13519],"locationId":109},{"id":13519,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13520],"locationId":109},{"id":13520,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13521],"locationId":109},{"id":13521,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13522],"locationId":109},{"id":13522,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13523],"locationId":109},{"id":13523,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13524],"locationId":109},{"id":13524,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13525],"locationId":109},{"id":13525,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13526],"locationId":109},{"id":13526,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13527],"locationId":109},{"id":13527,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13528],"locationId":109},{"id":13528,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13529],"locationId":109},{"id":13529,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13530],"locationId":109},{"id":13530,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13531],"locationId":109},{"id":13531,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13532],"locationId":109},{"id":13532,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13533],"locationId":109},{"id":13533,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13534],"locationId":109},{"id":13534,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13535],"locationId":109},{"id":13535,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13536],"locationId":109},{"id":13536,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13537],"locationId":109},{"id":13537,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13538],"locationId":109},{"id":13538,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13539],"locationId":109},{"id":13539,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13540],"locationId":109},{"id":13540,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13541],"locationId":109},{"id":13541,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13542],"locationId":109},{"id":13542,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13543],"locationId":109},{"id":13543,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13544],"locationId":109},{"id":13544,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[13545],"locationId":109},{"id":13545,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":8770,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8771],"locationId":4},{"id":8771,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8772],"locationId":1},{"id":8772,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8773],"locationId":2},{"id":8773,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8774],"locationId":4},{"id":8774,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8775],"locationId":1},{"id":8775,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8776],"locationId":2},{"id":8776,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8777],"locationId":4},{"id":8777,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8778],"locationId":1},{"id":8778,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8779],"locationId":2},{"id":8779,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8780],"locationId":4},{"id":8780,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8781],"locationId":1},{"id":8781,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8782],"locationId":2},{"id":8782,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8783],"locationId":4},{"id":8783,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8784],"locationId":1},{"id":8784,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8785],"locationId":2},{"id":8785,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8786],"locationId":4},{"id":8786,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8787],"locationId":1},{"id":8787,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8788],"locationId":2},{"id":8788,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8789],"locationId":4},{"id":8789,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8790],"locationId":1},{"id":8790,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8791],"locationId":2},{"id":8791,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8792],"locationId":4},{"id":8792,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8793],"locationId":1},{"id":8793,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8794],"locationId":2},{"id":8794,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8795],"locationId":4},{"id":8795,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8796],"locationId":1},{"id":8796,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8797],"locationId":2},{"id":8797,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8798],"locationId":4},{"id":8798,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8799],"locationId":1},{"id":8799,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8800],"locationId":2},{"id":8800,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8801],"locationId":4},{"id":8801,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8802],"locationId":1},{"id":8802,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8803],"locationId":2},{"id":8803,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8804],"locationId":4},{"id":8804,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8805],"locationId":1},{"id":8805,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8806],"locationId":2},{"id":8806,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8807],"locationId":4},{"id":8807,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8808],"locationId":1},{"id":8808,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8809],"locationId":2},{"id":8809,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8810],"locationId":4},{"id":8810,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8811],"locationId":1},{"id":8811,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8812],"locationId":2},{"id":8812,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8813],"locationId":4},{"id":8813,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8814],"locationId":1},{"id":8814,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8815],"locationId":2},{"id":8815,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8816],"locationId":4},{"id":8816,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8817],"locationId":1},{"id":8817,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8818],"locationId":2},{"id":8818,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8819],"locationId":4},{"id":8819,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8820],"locationId":1},{"id":8820,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8821],"locationId":2},{"id":8821,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8822],"locationId":4},{"id":8822,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8823],"locationId":1},{"id":8823,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8824],"locationId":2},{"id":8824,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8825],"locationId":4},{"id":8825,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8826],"locationId":1},{"id":8826,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8827],"locationId":2},{"id":8827,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8828],"locationId":4},{"id":8828,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8829],"locationId":1},{"id":8829,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8830],"locationId":2},{"id":8830,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8831],"locationId":4},{"id":8831,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8832],"locationId":1},{"id":8832,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8488,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8489],"locationId":4},{"id":8489,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8490],"locationId":1},{"id":8490,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8491],"locationId":2},{"id":8491,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8492],"locationId":4},{"id":8492,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8493],"locationId":1},{"id":8493,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8494],"locationId":2},{"id":8494,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8495],"locationId":4},{"id":8495,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8496],"locationId":1},{"id":8496,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8497],"locationId":2},{"id":8497,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8498],"locationId":4},{"id":8498,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8499],"locationId":1},{"id":8499,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8500],"locationId":2},{"id":8500,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8501],"locationId":4},{"id":8501,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8502],"locationId":1},{"id":8502,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8503],"locationId":2},{"id":8503,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8504],"locationId":4},{"id":8504,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8505],"locationId":1},{"id":8505,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8506],"locationId":2},{"id":8506,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8507],"locationId":4},{"id":8507,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8508],"locationId":1},{"id":8508,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8509],"locationId":2},{"id":8509,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8510],"locationId":4},{"id":8510,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8511],"locationId":1},{"id":8511,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8512],"locationId":2},{"id":8512,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8513],"locationId":4},{"id":8513,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8514],"locationId":1},{"id":8514,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8515],"locationId":2},{"id":8515,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8516],"locationId":4},{"id":8516,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8517],"locationId":1},{"id":8517,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8518],"locationId":2},{"id":8518,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8519],"locationId":4},{"id":8519,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8520],"locationId":1},{"id":8520,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8521],"locationId":2},{"id":8521,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8522],"locationId":4},{"id":8522,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8523],"locationId":1},{"id":8523,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8524],"locationId":2},{"id":8524,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8525],"locationId":4},{"id":8525,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8526],"locationId":1},{"id":8526,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8527],"locationId":2},{"id":8527,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8528],"locationId":4},{"id":8528,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8529],"locationId":1},{"id":8529,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8530],"locationId":2},{"id":8530,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8531],"locationId":4},{"id":8531,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8532],"locationId":1},{"id":8532,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8533],"locationId":2},{"id":8533,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8534],"locationId":4},{"id":8534,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8535],"locationId":1},{"id":8535,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8536],"locationId":2},{"id":8536,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8537],"locationId":4},{"id":8537,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8538],"locationId":1},{"id":8538,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8539],"locationId":2},{"id":8539,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8540],"locationId":4},{"id":8540,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8541],"locationId":1},{"id":8541,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8542],"locationId":2},{"id":8542,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8543],"locationId":4},{"id":8543,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8544],"locationId":1},{"id":8544,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8545],"locationId":2},{"id":8545,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8546],"locationId":4},{"id":8546,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8547],"locationId":1},{"id":8547,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8548],"locationId":2},{"id":8548,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8549],"locationId":4},{"id":8549,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8550],"locationId":1},{"id":8550,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8551],"locationId":2},{"id":8551,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8552],"locationId":4},{"id":8552,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8553],"locationId":1},{"id":8553,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8554],"locationId":2},{"id":8554,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8555],"locationId":4},{"id":8555,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8556],"locationId":1},{"id":8556,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8557],"locationId":2},{"id":8557,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8558],"locationId":4},{"id":8558,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8559],"locationId":1},{"id":8559,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8560],"locationId":2},{"id":8560,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8561],"locationId":4},{"id":8561,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8562],"locationId":1},{"id":8562,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":8158,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8159],"locationId":4},{"id":8159,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8160],"locationId":1},{"id":8160,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8161],"locationId":2},{"id":8161,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8162],"locationId":4},{"id":8162,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8163],"locationId":1},{"id":8163,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8164],"locationId":2},{"id":8164,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8165],"locationId":4},{"id":8165,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8166],"locationId":1},{"id":8166,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8167],"locationId":2},{"id":8167,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8168],"locationId":4},{"id":8168,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8169],"locationId":1},{"id":8169,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8170],"locationId":2},{"id":8170,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8171],"locationId":4},{"id":8171,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8172],"locationId":1},{"id":8172,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8173],"locationId":2},{"id":8173,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8174],"locationId":4},{"id":8174,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8175],"locationId":1},{"id":8175,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8176],"locationId":2},{"id":8176,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8177],"locationId":4},{"id":8177,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8178],"locationId":1},{"id":8178,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8179],"locationId":2},{"id":8179,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8180],"locationId":4},{"id":8180,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8181],"locationId":1},{"id":8181,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8182],"locationId":2},{"id":8182,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8183],"locationId":4},{"id":8183,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8184],"locationId":1},{"id":8184,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8185],"locationId":2},{"id":8185,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8186],"locationId":4},{"id":8186,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8187],"locationId":1},{"id":8187,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8188],"locationId":2},{"id":8188,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8189],"locationId":4},{"id":8189,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8190],"locationId":1},{"id":8190,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8191],"locationId":2},{"id":8191,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8192],"locationId":4},{"id":8192,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8193],"locationId":1},{"id":8193,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8194],"locationId":2},{"id":8194,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8195],"locationId":4},{"id":8195,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8196],"locationId":1},{"id":8196,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8197],"locationId":2},{"id":8197,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8198],"locationId":4},{"id":8198,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8199],"locationId":1},{"id":8199,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8200],"locationId":2},{"id":8200,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8201],"locationId":4},{"id":8201,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8202],"locationId":1},{"id":8202,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8203],"locationId":2},{"id":8203,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8204],"locationId":4},{"id":8204,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8205],"locationId":1},{"id":8205,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8206],"locationId":2},{"id":8206,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8207],"locationId":4},{"id":8207,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8208],"locationId":1},{"id":8208,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8209],"locationId":2},{"id":8209,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8210],"locationId":4},{"id":8210,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8211],"locationId":1},{"id":8211,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8212],"locationId":2},{"id":8212,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8213],"locationId":4},{"id":8213,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8214],"locationId":1},{"id":8214,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8215],"locationId":2},{"id":8215,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8216],"locationId":4},{"id":8216,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8217],"locationId":1},{"id":8217,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8218],"locationId":2},{"id":8218,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8219],"locationId":4},{"id":8219,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8220],"locationId":1},{"id":8220,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8221],"locationId":2},{"id":8221,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8222],"locationId":4},{"id":8222,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8223],"locationId":1},{"id":8223,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8224],"locationId":2},{"id":8224,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8225],"locationId":4},{"id":8225,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8226],"locationId":1},{"id":8226,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8227],"locationId":2},{"id":8227,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8228],"locationId":4},{"id":8228,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8229],"locationId":1},{"id":8229,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8230],"locationId":2},{"id":8230,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8231],"locationId":4},{"id":8231,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8232],"locationId":1},{"id":8232,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8233],"locationId":2},{"id":8233,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8234],"locationId":4},{"id":8234,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8235],"locationId":1},{"id":8235,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8236],"locationId":2},{"id":8236,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8237],"locationId":4},{"id":8237,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8238],"locationId":1},{"id":8238,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8239],"locationId":2},{"id":8239,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8240],"locationId":4},{"id":8240,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8241],"locationId":1},{"id":8241,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[8242],"locationId":2},{"id":8242,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[8243],"locationId":4},{"id":8243,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[8244],"locationId":1},{"id":8244,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7780,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7781],"locationId":4},{"id":7781,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7782],"locationId":1},{"id":7782,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7783],"locationId":2},{"id":7783,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7784],"locationId":4},{"id":7784,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7785],"locationId":1},{"id":7785,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7786],"locationId":2},{"id":7786,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7787],"locationId":4},{"id":7787,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7788],"locationId":1},{"id":7788,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7789],"locationId":2},{"id":7789,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7790],"locationId":4},{"id":7790,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7791],"locationId":1},{"id":7791,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7792],"locationId":2},{"id":7792,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7793],"locationId":4},{"id":7793,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7794],"locationId":1},{"id":7794,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7795],"locationId":2},{"id":7795,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7796],"locationId":4},{"id":7796,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7797],"locationId":1},{"id":7797,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7798],"locationId":2},{"id":7798,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7799],"locationId":4},{"id":7799,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7800],"locationId":1},{"id":7800,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7801],"locationId":2},{"id":7801,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7802],"locationId":4},{"id":7802,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7803],"locationId":1},{"id":7803,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7804],"locationId":2},{"id":7804,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7805],"locationId":4},{"id":7805,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7806],"locationId":1},{"id":7806,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7807],"locationId":2},{"id":7807,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7808],"locationId":4},{"id":7808,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7809],"locationId":1},{"id":7809,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7810],"locationId":2},{"id":7810,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7811],"locationId":4},{"id":7811,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7812],"locationId":1},{"id":7812,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7813],"locationId":2},{"id":7813,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7814],"locationId":4},{"id":7814,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7815],"locationId":1},{"id":7815,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7816],"locationId":2},{"id":7816,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7817],"locationId":4},{"id":7817,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7818],"locationId":1},{"id":7818,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7819],"locationId":2},{"id":7819,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7820],"locationId":4},{"id":7820,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7821],"locationId":1},{"id":7821,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7822],"locationId":2},{"id":7822,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7823],"locationId":4},{"id":7823,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7824],"locationId":1},{"id":7824,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7825],"locationId":2},{"id":7825,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7826],"locationId":4},{"id":7826,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7827],"locationId":1},{"id":7827,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7828],"locationId":2},{"id":7828,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7829],"locationId":4},{"id":7829,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7830],"locationId":1},{"id":7830,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7831],"locationId":2},{"id":7831,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7832],"locationId":4},{"id":7832,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7833],"locationId":1},{"id":7833,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7834],"locationId":2},{"id":7834,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7835],"locationId":4},{"id":7835,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7836],"locationId":1},{"id":7836,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7837],"locationId":2},{"id":7837,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7838],"locationId":4},{"id":7838,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7839],"locationId":1},{"id":7839,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7840],"locationId":2},{"id":7840,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7841],"locationId":4},{"id":7841,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7842],"locationId":1},{"id":7842,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7843],"locationId":2},{"id":7843,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7844],"locationId":4},{"id":7844,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7845],"locationId":1},{"id":7845,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7846],"locationId":2},{"id":7846,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7847],"locationId":4},{"id":7847,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7848],"locationId":1},{"id":7848,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7849],"locationId":2},{"id":7849,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7850],"locationId":4},{"id":7850,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7851],"locationId":1},{"id":7851,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7852],"locationId":2},{"id":7852,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7853],"locationId":4},{"id":7853,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7854],"locationId":1},{"id":7854,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7855],"locationId":2},{"id":7855,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7856],"locationId":4},{"id":7856,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7857],"locationId":1},{"id":7857,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7858],"locationId":2},{"id":7858,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7859],"locationId":4},{"id":7859,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7860],"locationId":1},{"id":7860,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7861],"locationId":2},{"id":7861,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7862],"locationId":4},{"id":7862,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7863],"locationId":1},{"id":7863,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7864],"locationId":2},{"id":7864,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7865],"locationId":4},{"id":7865,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7866],"locationId":1},{"id":7866,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7867],"locationId":2},{"id":7867,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7868],"locationId":4},{"id":7868,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7869],"locationId":1},{"id":7869,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7870],"locationId":2},{"id":7870,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7871],"locationId":4},{"id":7871,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7872],"locationId":1},{"id":7872,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7873],"locationId":2},{"id":7873,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7874],"locationId":4},{"id":7874,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7875],"locationId":1},{"id":7875,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7876],"locationId":2},{"id":7876,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7877],"locationId":4},{"id":7877,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7878],"locationId":1},{"id":7878,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":7354,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7355],"locationId":4},{"id":7355,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7356],"locationId":1},{"id":7356,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7357],"locationId":2},{"id":7357,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7358],"locationId":4},{"id":7358,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7359],"locationId":1},{"id":7359,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7360],"locationId":2},{"id":7360,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7361],"locationId":4},{"id":7361,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7362],"locationId":1},{"id":7362,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7363],"locationId":2},{"id":7363,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7364],"locationId":4},{"id":7364,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7365],"locationId":1},{"id":7365,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7366],"locationId":2},{"id":7366,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7367],"locationId":4},{"id":7367,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7368],"locationId":1},{"id":7368,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7369],"locationId":2},{"id":7369,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7370],"locationId":4},{"id":7370,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7371],"locationId":1},{"id":7371,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7372],"locationId":2},{"id":7372,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7373],"locationId":4},{"id":7373,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7374],"locationId":1},{"id":7374,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7375],"locationId":2},{"id":7375,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7376],"locationId":4},{"id":7376,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7377],"locationId":1},{"id":7377,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7378],"locationId":2},{"id":7378,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7379],"locationId":4},{"id":7379,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7380],"locationId":1},{"id":7380,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7381],"locationId":2},{"id":7381,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7382],"locationId":4},{"id":7382,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7383],"locationId":1},{"id":7383,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7384],"locationId":2},{"id":7384,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7385],"locationId":4},{"id":7385,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7386],"locationId":1},{"id":7386,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7387],"locationId":2},{"id":7387,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7388],"locationId":4},{"id":7388,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7389],"locationId":1},{"id":7389,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7390],"locationId":2},{"id":7390,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7391],"locationId":4},{"id":7391,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7392],"locationId":1},{"id":7392,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7393],"locationId":2},{"id":7393,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7394],"locationId":4},{"id":7394,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7395],"locationId":1},{"id":7395,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7396],"locationId":2},{"id":7396,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7397],"locationId":4},{"id":7397,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7398],"locationId":1},{"id":7398,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7399],"locationId":2},{"id":7399,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7400],"locationId":4},{"id":7400,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7401],"locationId":1},{"id":7401,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7402],"locationId":2},{"id":7402,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7403],"locationId":4},{"id":7403,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7404],"locationId":1},{"id":7404,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7405],"locationId":2},{"id":7405,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7406],"locationId":4},{"id":7406,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7407],"locationId":1},{"id":7407,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7408],"locationId":2},{"id":7408,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7409],"locationId":4},{"id":7409,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7410],"locationId":1},{"id":7410,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7411],"locationId":2},{"id":7411,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7412],"locationId":4},{"id":7412,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7413],"locationId":1},{"id":7413,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7414],"locationId":2},{"id":7414,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7415],"locationId":4},{"id":7415,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7416],"locationId":1},{"id":7416,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7417],"locationId":2},{"id":7417,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7418],"locationId":4},{"id":7418,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7419],"locationId":1},{"id":7419,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7420],"locationId":2},{"id":7420,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7421],"locationId":4},{"id":7421,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7422],"locationId":1},{"id":7422,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7423],"locationId":2},{"id":7423,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7424],"locationId":4},{"id":7424,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7425],"locationId":1},{"id":7425,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7426],"locationId":2},{"id":7426,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7427],"locationId":4},{"id":7427,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7428],"locationId":1},{"id":7428,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7429],"locationId":2},{"id":7429,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7430],"locationId":4},{"id":7430,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7431],"locationId":1},{"id":7431,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7432],"locationId":2},{"id":7432,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7433],"locationId":4},{"id":7433,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7434],"locationId":1},{"id":7434,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7435],"locationId":2},{"id":7435,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7436],"locationId":4},{"id":7436,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7437],"locationId":1},{"id":7437,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7438],"locationId":2},{"id":7438,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7439],"locationId":4},{"id":7439,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7440],"locationId":1},{"id":7440,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7441],"locationId":2},{"id":7441,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7442],"locationId":4},{"id":7442,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7443],"locationId":1},{"id":7443,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7444],"locationId":2},{"id":7444,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7445],"locationId":4},{"id":7445,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7446],"locationId":1},{"id":7446,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7447],"locationId":2},{"id":7447,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7448],"locationId":4},{"id":7448,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7449],"locationId":1},{"id":7449,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7450],"locationId":2},{"id":7450,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7451],"locationId":4},{"id":7451,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7452],"locationId":1},{"id":7452,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7453],"locationId":2},{"id":7453,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7454],"locationId":4},{"id":7454,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7455],"locationId":1},{"id":7455,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7456],"locationId":2},{"id":7456,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7457],"locationId":4},{"id":7457,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7458],"locationId":1},{"id":7458,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7459],"locationId":2},{"id":7459,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7460],"locationId":4},{"id":7460,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7461],"locationId":1},{"id":7461,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7462],"locationId":2},{"id":7462,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7463],"locationId":4},{"id":7463,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7464],"locationId":1},{"id":7464,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":6880,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6881],"locationId":4},{"id":6881,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6882],"locationId":1},{"id":6882,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6883],"locationId":2},{"id":6883,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6884],"locationId":4},{"id":6884,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6885],"locationId":1},{"id":6885,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6886],"locationId":2},{"id":6886,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6887],"locationId":4},{"id":6887,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6888],"locationId":1},{"id":6888,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6889],"locationId":2},{"id":6889,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6890],"locationId":4},{"id":6890,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6891],"locationId":1},{"id":6891,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6892],"locationId":2},{"id":6892,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6893],"locationId":4},{"id":6893,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6894],"locationId":1},{"id":6894,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6895],"locationId":2},{"id":6895,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6896],"locationId":4},{"id":6896,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6897],"locationId":1},{"id":6897,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6898],"locationId":2},{"id":6898,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6899],"locationId":4},{"id":6899,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6900],"locationId":1},{"id":6900,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6901],"locationId":2},{"id":6901,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6902],"locationId":4},{"id":6902,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6903],"locationId":1},{"id":6903,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6904],"locationId":2},{"id":6904,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6905],"locationId":4},{"id":6905,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6906],"locationId":1},{"id":6906,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6907],"locationId":2},{"id":6907,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6908],"locationId":4},{"id":6908,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6909],"locationId":1},{"id":6909,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6910],"locationId":2},{"id":6910,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6911],"locationId":4},{"id":6911,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6912],"locationId":1},{"id":6912,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6913],"locationId":2},{"id":6913,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6914],"locationId":4},{"id":6914,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6915],"locationId":1},{"id":6915,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6916],"locationId":2},{"id":6916,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6917],"locationId":4},{"id":6917,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6918],"locationId":1},{"id":6918,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6919],"locationId":2},{"id":6919,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6920],"locationId":4},{"id":6920,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6921],"locationId":1},{"id":6921,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6922],"locationId":2},{"id":6922,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6923],"locationId":4},{"id":6923,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6924],"locationId":1},{"id":6924,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6925],"locationId":2},{"id":6925,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6926],"locationId":4},{"id":6926,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6927],"locationId":1},{"id":6927,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6928],"locationId":2},{"id":6928,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6929],"locationId":4},{"id":6929,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6930],"locationId":1},{"id":6930,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6931],"locationId":2},{"id":6931,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6932],"locationId":4},{"id":6932,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6933],"locationId":1},{"id":6933,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6934],"locationId":2},{"id":6934,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6935],"locationId":4},{"id":6935,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6936],"locationId":1},{"id":6936,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6937],"locationId":2},{"id":6937,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6938],"locationId":4},{"id":6938,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6939],"locationId":1},{"id":6939,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6940],"locationId":2},{"id":6940,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6941],"locationId":4},{"id":6941,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6942],"locationId":1},{"id":6942,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6943],"locationId":2},{"id":6943,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6944],"locationId":4},{"id":6944,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6945],"locationId":1},{"id":6945,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6946],"locationId":2},{"id":6946,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6947],"locationId":4},{"id":6947,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6948],"locationId":1},{"id":6948,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6949],"locationId":2},{"id":6949,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6950],"locationId":4},{"id":6950,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6951],"locationId":1},{"id":6951,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6952],"locationId":2},{"id":6952,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6953],"locationId":4},{"id":6953,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6954],"locationId":1},{"id":6954,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6955],"locationId":2},{"id":6955,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6956],"locationId":4},{"id":6956,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6957],"locationId":1},{"id":6957,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6958],"locationId":2},{"id":6958,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6959],"locationId":4},{"id":6959,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6960],"locationId":1},{"id":6960,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6961],"locationId":2},{"id":6961,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6962],"locationId":4},{"id":6962,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6963],"locationId":1},{"id":6963,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6964],"locationId":2},{"id":6964,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6965],"locationId":4},{"id":6965,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6966],"locationId":1},{"id":6966,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6967],"locationId":2},{"id":6967,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6968],"locationId":4},{"id":6968,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6969],"locationId":1},{"id":6969,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6970],"locationId":2},{"id":6970,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6971],"locationId":4},{"id":6971,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6972],"locationId":1},{"id":6972,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6973],"locationId":2},{"id":6973,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6974],"locationId":4},{"id":6974,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6975],"locationId":1},{"id":6975,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6976],"locationId":2},{"id":6976,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6977],"locationId":4},{"id":6977,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6978],"locationId":1},{"id":6978,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6979],"locationId":2},{"id":6979,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6980],"locationId":4},{"id":6980,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6981],"locationId":1},{"id":6981,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6982],"locationId":2},{"id":6982,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6983],"locationId":4},{"id":6983,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6984],"locationId":1},{"id":6984,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6985],"locationId":2},{"id":6985,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6986],"locationId":4},{"id":6986,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6987],"locationId":1},{"id":6987,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6988],"locationId":2},{"id":6988,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6989],"locationId":4},{"id":6989,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6990],"locationId":1},{"id":6990,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6991],"locationId":2},{"id":6991,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6992],"locationId":4},{"id":6992,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6993],"locationId":1},{"id":6993,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6994],"locationId":2},{"id":6994,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6995],"locationId":4},{"id":6995,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6996],"locationId":1},{"id":6996,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6997],"locationId":2},{"id":6997,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6998],"locationId":4},{"id":6998,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6999],"locationId":1},{"id":6999,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[7000],"locationId":2},{"id":7000,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[7001],"locationId":4},{"id":7001,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[7002],"locationId":1},{"id":7002,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":6222,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6223],"locationId":4},{"id":6223,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6224],"locationId":1},{"id":6224,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6225],"locationId":2},{"id":6225,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6226],"locationId":4},{"id":6226,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6227],"locationId":1},{"id":6227,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6228],"locationId":2},{"id":6228,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6229],"locationId":4},{"id":6229,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6230],"locationId":1},{"id":6230,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6231],"locationId":2},{"id":6231,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6232],"locationId":4},{"id":6232,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6233],"locationId":1},{"id":6233,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6234],"locationId":2},{"id":6234,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6235],"locationId":4},{"id":6235,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6236],"locationId":1},{"id":6236,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6237],"locationId":2},{"id":6237,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6238],"locationId":4},{"id":6238,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6239],"locationId":1},{"id":6239,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6240],"locationId":2},{"id":6240,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6241],"locationId":4},{"id":6241,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6242],"locationId":1},{"id":6242,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6243],"locationId":2},{"id":6243,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6244],"locationId":4},{"id":6244,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6245],"locationId":1},{"id":6245,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6246],"locationId":2},{"id":6246,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6247],"locationId":4},{"id":6247,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6248],"locationId":1},{"id":6248,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6249],"locationId":2},{"id":6249,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6250],"locationId":4},{"id":6250,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6251],"locationId":1},{"id":6251,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6252],"locationId":2},{"id":6252,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6253],"locationId":4},{"id":6253,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6254],"locationId":1},{"id":6254,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6255],"locationId":2},{"id":6255,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6256],"locationId":4},{"id":6256,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6257],"locationId":1},{"id":6257,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6258],"locationId":2},{"id":6258,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6259],"locationId":4},{"id":6259,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6260],"locationId":1},{"id":6260,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6261],"locationId":2},{"id":6261,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6262],"locationId":4},{"id":6262,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6263],"locationId":1},{"id":6263,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6264],"locationId":2},{"id":6264,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6265],"locationId":4},{"id":6265,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6266],"locationId":1},{"id":6266,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6267],"locationId":2},{"id":6267,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6268],"locationId":4},{"id":6268,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6269],"locationId":1},{"id":6269,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6270],"locationId":2},{"id":6270,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6271],"locationId":4},{"id":6271,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6272],"locationId":1},{"id":6272,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6273],"locationId":2},{"id":6273,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6274],"locationId":4},{"id":6274,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6275],"locationId":1},{"id":6275,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6276],"locationId":2},{"id":6276,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6277],"locationId":4},{"id":6277,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6278],"locationId":1},{"id":6278,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6279],"locationId":2},{"id":6279,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6280],"locationId":4},{"id":6280,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6281],"locationId":1},{"id":6281,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6282],"locationId":2},{"id":6282,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6283],"locationId":4},{"id":6283,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6284],"locationId":1},{"id":6284,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6285],"locationId":2},{"id":6285,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6286],"locationId":4},{"id":6286,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6287],"locationId":1},{"id":6287,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6288],"locationId":2},{"id":6288,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6289],"locationId":4},{"id":6289,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6290],"locationId":1},{"id":6290,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6291],"locationId":2},{"id":6291,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6292],"locationId":4},{"id":6292,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6293],"locationId":1},{"id":6293,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6294],"locationId":2},{"id":6294,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6295],"locationId":4},{"id":6295,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6296],"locationId":1},{"id":6296,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6297],"locationId":2},{"id":6297,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6298],"locationId":4},{"id":6298,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6299],"locationId":1},{"id":6299,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6300],"locationId":2},{"id":6300,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6301],"locationId":4},{"id":6301,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6302],"locationId":1},{"id":6302,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6303],"locationId":2},{"id":6303,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6304],"locationId":4},{"id":6304,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6305],"locationId":1},{"id":6305,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6306],"locationId":2},{"id":6306,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6307],"locationId":4},{"id":6307,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6308],"locationId":1},{"id":6308,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6309],"locationId":2},{"id":6309,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6310],"locationId":4},{"id":6310,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6311],"locationId":1},{"id":6311,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6312],"locationId":2},{"id":6312,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6313],"locationId":4},{"id":6313,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6314],"locationId":1},{"id":6314,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6315],"locationId":2},{"id":6315,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6316],"locationId":4},{"id":6316,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6317],"locationId":1},{"id":6317,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6318],"locationId":2},{"id":6318,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6319],"locationId":4},{"id":6319,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6320],"locationId":1},{"id":6320,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6321],"locationId":2},{"id":6321,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6322],"locationId":4},{"id":6322,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6323],"locationId":1},{"id":6323,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6324],"locationId":2},{"id":6324,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6325],"locationId":4},{"id":6325,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6326],"locationId":1},{"id":6326,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6327],"locationId":2},{"id":6327,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6328],"locationId":4},{"id":6328,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6329],"locationId":1},{"id":6329,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6330],"locationId":2},{"id":6330,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6331],"locationId":4},{"id":6331,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6332],"locationId":1},{"id":6332,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6333],"locationId":2},{"id":6333,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6334],"locationId":4},{"id":6334,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6335],"locationId":1},{"id":6335,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6336],"locationId":2},{"id":6336,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6337],"locationId":4},{"id":6337,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6338],"locationId":1},{"id":6338,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6339],"locationId":2},{"id":6339,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6340],"locationId":4},{"id":6340,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6341],"locationId":1},{"id":6341,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6342],"locationId":2},{"id":6342,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6343],"locationId":4},{"id":6343,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6344],"locationId":1},{"id":6344,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6345],"locationId":2},{"id":6345,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6346],"locationId":4},{"id":6346,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6347],"locationId":1},{"id":6347,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6348],"locationId":2},{"id":6348,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6349],"locationId":4},{"id":6349,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6350],"locationId":1},{"id":6350,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6351],"locationId":2},{"id":6351,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6352],"locationId":4},{"id":6352,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6353],"locationId":1},{"id":6353,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[6354],"locationId":2},{"id":6354,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[6355],"locationId":4},{"id":6355,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[6356],"locationId":1},{"id":6356,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":5652,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5653],"locationId":4},{"id":5653,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5654],"locationId":1},{"id":5654,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5655],"locationId":2},{"id":5655,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5656],"locationId":4},{"id":5656,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5657],"locationId":1},{"id":5657,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5658],"locationId":2},{"id":5658,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5659],"locationId":4},{"id":5659,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5660],"locationId":1},{"id":5660,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5661],"locationId":2},{"id":5661,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5662],"locationId":4},{"id":5662,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5663],"locationId":1},{"id":5663,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5664],"locationId":2},{"id":5664,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5665],"locationId":4},{"id":5665,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5666],"locationId":1},{"id":5666,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5667],"locationId":2},{"id":5667,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5668],"locationId":4},{"id":5668,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5669],"locationId":1},{"id":5669,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5670],"locationId":2},{"id":5670,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5671],"locationId":4},{"id":5671,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5672],"locationId":1},{"id":5672,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5673],"locationId":2},{"id":5673,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5674],"locationId":4},{"id":5674,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5675],"locationId":1},{"id":5675,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5676],"locationId":2},{"id":5676,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5677],"locationId":4},{"id":5677,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5678],"locationId":1},{"id":5678,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5679],"locationId":2},{"id":5679,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5680],"locationId":4},{"id":5680,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5681],"locationId":1},{"id":5681,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5682],"locationId":2},{"id":5682,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5683],"locationId":4},{"id":5683,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5684],"locationId":1},{"id":5684,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5685],"locationId":2},{"id":5685,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5686],"locationId":4},{"id":5686,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5687],"locationId":1},{"id":5687,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5688],"locationId":2},{"id":5688,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5689],"locationId":4},{"id":5689,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5690],"locationId":1},{"id":5690,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5691],"locationId":2},{"id":5691,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5692],"locationId":4},{"id":5692,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5693],"locationId":1},{"id":5693,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5694],"locationId":2},{"id":5694,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5695],"locationId":4},{"id":5695,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5696],"locationId":1},{"id":5696,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5697],"locationId":2},{"id":5697,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5698],"locationId":4},{"id":5698,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5699],"locationId":1},{"id":5699,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5700],"locationId":2},{"id":5700,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5701],"locationId":4},{"id":5701,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5702],"locationId":1},{"id":5702,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5703],"locationId":2},{"id":5703,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5704],"locationId":4},{"id":5704,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5705],"locationId":1},{"id":5705,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5706],"locationId":2},{"id":5706,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5707],"locationId":4},{"id":5707,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5708],"locationId":1},{"id":5708,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5709],"locationId":2},{"id":5709,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5710],"locationId":4},{"id":5710,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5711],"locationId":1},{"id":5711,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5712],"locationId":2},{"id":5712,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5713],"locationId":4},{"id":5713,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5714],"locationId":1},{"id":5714,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5715],"locationId":2},{"id":5715,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5716],"locationId":4},{"id":5716,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5717],"locationId":1},{"id":5717,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5718],"locationId":2},{"id":5718,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5719],"locationId":4},{"id":5719,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5720],"locationId":1},{"id":5720,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5721],"locationId":2},{"id":5721,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5722],"locationId":4},{"id":5722,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5723],"locationId":1},{"id":5723,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5724],"locationId":2},{"id":5724,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5725],"locationId":4},{"id":5725,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5726],"locationId":1},{"id":5726,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5727],"locationId":2},{"id":5727,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5728],"locationId":4},{"id":5728,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5729],"locationId":1},{"id":5729,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5730],"locationId":2},{"id":5730,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5731],"locationId":4},{"id":5731,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5732],"locationId":1},{"id":5732,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5733],"locationId":2},{"id":5733,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5734],"locationId":4},{"id":5734,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5735],"locationId":1},{"id":5735,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5736],"locationId":2},{"id":5736,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5737],"locationId":4},{"id":5737,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5738],"locationId":1},{"id":5738,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5739],"locationId":2},{"id":5739,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5740],"locationId":4},{"id":5740,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5741],"locationId":1},{"id":5741,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5742],"locationId":2},{"id":5742,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5743],"locationId":4},{"id":5743,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5744],"locationId":1},{"id":5744,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5745],"locationId":2},{"id":5745,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5746],"locationId":4},{"id":5746,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5747],"locationId":1},{"id":5747,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5748],"locationId":2},{"id":5748,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5749],"locationId":4},{"id":5749,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5750],"locationId":1},{"id":5750,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5751],"locationId":2},{"id":5751,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5752],"locationId":4},{"id":5752,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5753],"locationId":1},{"id":5753,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5754],"locationId":2},{"id":5754,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5755],"locationId":4},{"id":5755,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5756],"locationId":1},{"id":5756,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5757],"locationId":2},{"id":5757,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5758],"locationId":4},{"id":5758,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5759],"locationId":1},{"id":5759,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5760],"locationId":2},{"id":5760,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5761],"locationId":4},{"id":5761,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5762],"locationId":1},{"id":5762,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5763],"locationId":2},{"id":5763,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5764],"locationId":4},{"id":5764,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5765],"locationId":1},{"id":5765,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5766],"locationId":2},{"id":5766,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5767],"locationId":4},{"id":5767,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5768],"locationId":1},{"id":5768,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5769],"locationId":2},{"id":5769,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5770],"locationId":4},{"id":5770,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5771],"locationId":1},{"id":5771,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5772],"locationId":2},{"id":5772,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5773],"locationId":4},{"id":5773,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5774],"locationId":1},{"id":5774,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5775],"locationId":2},{"id":5775,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5776],"locationId":4},{"id":5776,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5777],"locationId":1},{"id":5777,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5778],"locationId":2},{"id":5778,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5779],"locationId":4},{"id":5779,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5780],"locationId":1},{"id":5780,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5781],"locationId":2},{"id":5781,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5782],"locationId":4},{"id":5782,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5783],"locationId":1},{"id":5783,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5784],"locationId":2},{"id":5784,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5785],"locationId":4},{"id":5785,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5786],"locationId":1},{"id":5786,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5787],"locationId":2},{"id":5787,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5788],"locationId":4},{"id":5788,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5789],"locationId":1},{"id":5789,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5790],"locationId":2},{"id":5790,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5791],"locationId":4},{"id":5791,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5792],"locationId":1},{"id":5792,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5793],"locationId":2},{"id":5793,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5794],"locationId":4},{"id":5794,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5795],"locationId":1},{"id":5795,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5796],"locationId":2},{"id":5796,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5797],"locationId":4},{"id":5797,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5798],"locationId":1},{"id":5798,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":5034,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5035],"locationId":4},{"id":5035,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5036],"locationId":1},{"id":5036,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5037],"locationId":2},{"id":5037,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5038],"locationId":4},{"id":5038,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5039],"locationId":1},{"id":5039,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5040],"locationId":2},{"id":5040,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5041],"locationId":4},{"id":5041,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5042],"locationId":1},{"id":5042,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5043],"locationId":2},{"id":5043,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5044],"locationId":4},{"id":5044,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5045],"locationId":1},{"id":5045,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5046],"locationId":2},{"id":5046,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5047],"locationId":4},{"id":5047,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5048],"locationId":1},{"id":5048,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5049],"locationId":2},{"id":5049,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5050],"locationId":4},{"id":5050,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5051],"locationId":1},{"id":5051,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5052],"locationId":2},{"id":5052,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5053],"locationId":4},{"id":5053,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5054],"locationId":1},{"id":5054,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5055],"locationId":2},{"id":5055,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5056],"locationId":4},{"id":5056,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5057],"locationId":1},{"id":5057,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5058],"locationId":2},{"id":5058,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5059],"locationId":4},{"id":5059,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5060],"locationId":1},{"id":5060,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5061],"locationId":2},{"id":5061,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5062],"locationId":4},{"id":5062,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5063],"locationId":1},{"id":5063,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5064],"locationId":2},{"id":5064,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5065],"locationId":4},{"id":5065,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5066],"locationId":1},{"id":5066,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5067],"locationId":2},{"id":5067,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5068],"locationId":4},{"id":5068,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5069],"locationId":1},{"id":5069,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5070],"locationId":2},{"id":5070,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5071],"locationId":4},{"id":5071,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5072],"locationId":1},{"id":5072,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5073],"locationId":2},{"id":5073,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5074],"locationId":4},{"id":5074,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5075],"locationId":1},{"id":5075,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5076],"locationId":2},{"id":5076,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5077],"locationId":4},{"id":5077,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5078],"locationId":1},{"id":5078,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5079],"locationId":2},{"id":5079,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5080],"locationId":4},{"id":5080,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5081],"locationId":1},{"id":5081,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5082],"locationId":2},{"id":5082,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5083],"locationId":4},{"id":5083,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5084],"locationId":1},{"id":5084,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5085],"locationId":2},{"id":5085,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5086],"locationId":4},{"id":5086,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5087],"locationId":1},{"id":5087,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5088],"locationId":2},{"id":5088,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5089],"locationId":4},{"id":5089,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5090],"locationId":1},{"id":5090,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5091],"locationId":2},{"id":5091,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5092],"locationId":4},{"id":5092,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5093],"locationId":1},{"id":5093,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5094],"locationId":2},{"id":5094,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5095],"locationId":4},{"id":5095,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5096],"locationId":1},{"id":5096,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5097],"locationId":2},{"id":5097,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5098],"locationId":4},{"id":5098,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5099],"locationId":1},{"id":5099,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5100],"locationId":2},{"id":5100,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5101],"locationId":4},{"id":5101,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5102],"locationId":1},{"id":5102,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5103],"locationId":2},{"id":5103,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5104],"locationId":4},{"id":5104,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5105],"locationId":1},{"id":5105,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5106],"locationId":2},{"id":5106,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5107],"locationId":4},{"id":5107,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5108],"locationId":1},{"id":5108,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5109],"locationId":2},{"id":5109,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5110],"locationId":4},{"id":5110,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5111],"locationId":1},{"id":5111,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5112],"locationId":2},{"id":5112,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5113],"locationId":4},{"id":5113,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5114],"locationId":1},{"id":5114,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5115],"locationId":2},{"id":5115,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5116],"locationId":4},{"id":5116,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5117],"locationId":1},{"id":5117,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5118],"locationId":2},{"id":5118,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5119],"locationId":4},{"id":5119,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5120],"locationId":1},{"id":5120,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5121],"locationId":2},{"id":5121,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5122],"locationId":4},{"id":5122,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5123],"locationId":1},{"id":5123,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5124],"locationId":2},{"id":5124,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5125],"locationId":4},{"id":5125,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5126],"locationId":1},{"id":5126,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5127],"locationId":2},{"id":5127,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5128],"locationId":4},{"id":5128,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5129],"locationId":1},{"id":5129,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5130],"locationId":2},{"id":5130,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5131],"locationId":4},{"id":5131,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5132],"locationId":1},{"id":5132,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5133],"locationId":2},{"id":5133,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5134],"locationId":4},{"id":5134,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5135],"locationId":1},{"id":5135,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5136],"locationId":2},{"id":5136,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5137],"locationId":4},{"id":5137,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5138],"locationId":1},{"id":5138,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5139],"locationId":2},{"id":5139,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5140],"locationId":4},{"id":5140,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5141],"locationId":1},{"id":5141,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5142],"locationId":2},{"id":5142,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5143],"locationId":4},{"id":5143,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5144],"locationId":1},{"id":5144,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5145],"locationId":2},{"id":5145,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5146],"locationId":4},{"id":5146,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5147],"locationId":1},{"id":5147,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5148],"locationId":2},{"id":5148,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5149],"locationId":4},{"id":5149,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5150],"locationId":1},{"id":5150,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5151],"locationId":2},{"id":5151,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5152],"locationId":4},{"id":5152,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5153],"locationId":1},{"id":5153,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5154],"locationId":2},{"id":5154,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5155],"locationId":4},{"id":5155,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5156],"locationId":1},{"id":5156,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5157],"locationId":2},{"id":5157,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5158],"locationId":4},{"id":5158,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5159],"locationId":1},{"id":5159,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5160],"locationId":2},{"id":5160,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5161],"locationId":4},{"id":5161,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5162],"locationId":1},{"id":5162,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5163],"locationId":2},{"id":5163,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5164],"locationId":4},{"id":5164,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5165],"locationId":1},{"id":5165,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5166],"locationId":2},{"id":5166,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5167],"locationId":4},{"id":5167,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5168],"locationId":1},{"id":5168,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5169],"locationId":2},{"id":5169,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5170],"locationId":4},{"id":5170,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5171],"locationId":1},{"id":5171,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5172],"locationId":2},{"id":5172,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5173],"locationId":4},{"id":5173,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5174],"locationId":1},{"id":5174,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5175],"locationId":2},{"id":5175,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5176],"locationId":4},{"id":5176,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5177],"locationId":1},{"id":5177,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5178],"locationId":2},{"id":5178,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5179],"locationId":4},{"id":5179,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5180],"locationId":1},{"id":5180,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5181],"locationId":2},{"id":5181,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5182],"locationId":4},{"id":5182,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5183],"locationId":1},{"id":5183,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5184],"locationId":2},{"id":5184,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5185],"locationId":4},{"id":5185,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5186],"locationId":1},{"id":5186,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5187],"locationId":2},{"id":5187,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5188],"locationId":4},{"id":5188,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5189],"locationId":1},{"id":5189,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[5190],"locationId":2},{"id":5190,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[5191],"locationId":4},{"id":5191,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[5192],"locationId":1},{"id":5192,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":4368,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4369],"locationId":4},{"id":4369,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4370],"locationId":1},{"id":4370,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4371],"locationId":2},{"id":4371,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4372],"locationId":4},{"id":4372,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4373],"locationId":1},{"id":4373,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4374],"locationId":2},{"id":4374,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4375],"locationId":4},{"id":4375,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4376],"locationId":1},{"id":4376,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4377],"locationId":2},{"id":4377,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4378],"locationId":4},{"id":4378,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4379],"locationId":1},{"id":4379,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4380],"locationId":2},{"id":4380,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4381],"locationId":4},{"id":4381,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4382],"locationId":1},{"id":4382,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4383],"locationId":2},{"id":4383,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4384],"locationId":4},{"id":4384,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4385],"locationId":1},{"id":4385,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4386],"locationId":2},{"id":4386,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4387],"locationId":4},{"id":4387,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4388],"locationId":1},{"id":4388,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4389],"locationId":2},{"id":4389,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4390],"locationId":4},{"id":4390,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4391],"locationId":1},{"id":4391,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4392],"locationId":2},{"id":4392,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4393],"locationId":4},{"id":4393,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4394],"locationId":1},{"id":4394,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4395],"locationId":2},{"id":4395,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4396],"locationId":4},{"id":4396,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4397],"locationId":1},{"id":4397,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4398],"locationId":2},{"id":4398,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4399],"locationId":4},{"id":4399,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4400],"locationId":1},{"id":4400,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4401],"locationId":2},{"id":4401,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4402],"locationId":4},{"id":4402,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4403],"locationId":1},{"id":4403,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4404],"locationId":2},{"id":4404,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4405],"locationId":4},{"id":4405,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4406],"locationId":1},{"id":4406,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4407],"locationId":2},{"id":4407,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4408],"locationId":4},{"id":4408,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4409],"locationId":1},{"id":4409,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4410],"locationId":2},{"id":4410,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4411],"locationId":4},{"id":4411,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4412],"locationId":1},{"id":4412,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4413],"locationId":2},{"id":4413,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4414],"locationId":4},{"id":4414,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4415],"locationId":1},{"id":4415,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4416],"locationId":2},{"id":4416,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4417],"locationId":4},{"id":4417,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4418],"locationId":1},{"id":4418,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4419],"locationId":2},{"id":4419,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4420],"locationId":4},{"id":4420,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4421],"locationId":1},{"id":4421,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4422],"locationId":2},{"id":4422,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4423],"locationId":4},{"id":4423,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4424],"locationId":1},{"id":4424,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4425],"locationId":2},{"id":4425,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4426],"locationId":4},{"id":4426,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4427],"locationId":1},{"id":4427,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4428],"locationId":2},{"id":4428,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4429],"locationId":4},{"id":4429,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4430],"locationId":1},{"id":4430,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4431],"locationId":2},{"id":4431,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4432],"locationId":4},{"id":4432,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4433],"locationId":1},{"id":4433,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4434],"locationId":2},{"id":4434,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4435],"locationId":4},{"id":4435,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4436],"locationId":1},{"id":4436,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4437],"locationId":2},{"id":4437,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4438],"locationId":4},{"id":4438,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4439],"locationId":1},{"id":4439,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4440],"locationId":2},{"id":4440,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4441],"locationId":4},{"id":4441,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4442],"locationId":1},{"id":4442,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4443],"locationId":2},{"id":4443,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4444],"locationId":4},{"id":4444,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4445],"locationId":1},{"id":4445,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4446],"locationId":2},{"id":4446,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4447],"locationId":4},{"id":4447,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4448],"locationId":1},{"id":4448,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4449],"locationId":2},{"id":4449,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4450],"locationId":4},{"id":4450,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4451],"locationId":1},{"id":4451,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4452],"locationId":2},{"id":4452,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4453],"locationId":4},{"id":4453,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4454],"locationId":1},{"id":4454,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4455],"locationId":2},{"id":4455,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4456],"locationId":4},{"id":4456,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4457],"locationId":1},{"id":4457,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4458],"locationId":2},{"id":4458,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4459],"locationId":4},{"id":4459,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4460],"locationId":1},{"id":4460,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4461],"locationId":2},{"id":4461,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4462],"locationId":4},{"id":4462,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4463],"locationId":1},{"id":4463,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4464],"locationId":2},{"id":4464,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4465],"locationId":4},{"id":4465,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4466],"locationId":1},{"id":4466,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4467],"locationId":2},{"id":4467,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4468],"locationId":4},{"id":4468,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4469],"locationId":1},{"id":4469,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4470],"locationId":2},{"id":4470,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4471],"locationId":4},{"id":4471,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4472],"locationId":1},{"id":4472,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4473],"locationId":2},{"id":4473,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4474],"locationId":4},{"id":4474,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4475],"locationId":1},{"id":4475,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4476],"locationId":2},{"id":4476,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4477],"locationId":4},{"id":4477,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4478],"locationId":1},{"id":4478,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4479],"locationId":2},{"id":4479,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4480],"locationId":4},{"id":4480,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4481],"locationId":1},{"id":4481,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4482],"locationId":2},{"id":4482,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4483],"locationId":4},{"id":4483,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4484],"locationId":1},{"id":4484,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4485],"locationId":2},{"id":4485,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4486],"locationId":4},{"id":4486,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4487],"locationId":1},{"id":4487,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4488],"locationId":2},{"id":4488,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4489],"locationId":4},{"id":4489,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4490],"locationId":1},{"id":4490,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4491],"locationId":2},{"id":4491,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4492],"locationId":4},{"id":4492,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4493],"locationId":1},{"id":4493,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4494],"locationId":2},{"id":4494,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4495],"locationId":4},{"id":4495,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4496],"locationId":1},{"id":4496,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4497],"locationId":2},{"id":4497,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4498],"locationId":4},{"id":4498,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4499],"locationId":1},{"id":4499,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4500],"locationId":2},{"id":4500,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4501],"locationId":4},{"id":4501,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4502],"locationId":1},{"id":4502,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4503],"locationId":2},{"id":4503,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4504],"locationId":4},{"id":4504,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4505],"locationId":1},{"id":4505,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4506],"locationId":2},{"id":4506,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4507],"locationId":4},{"id":4507,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4508],"locationId":1},{"id":4508,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4509],"locationId":2},{"id":4509,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4510],"locationId":4},{"id":4510,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4511],"locationId":1},{"id":4511,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4512],"locationId":2},{"id":4512,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4513],"locationId":4},{"id":4513,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4514],"locationId":1},{"id":4514,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4515],"locationId":2},{"id":4515,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4516],"locationId":4},{"id":4516,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4517],"locationId":1},{"id":4517,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4518],"locationId":2},{"id":4518,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4519],"locationId":4},{"id":4519,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4520],"locationId":1},{"id":4520,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4521],"locationId":2},{"id":4521,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4522],"locationId":4},{"id":4522,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4523],"locationId":1},{"id":4523,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4524],"locationId":2},{"id":4524,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4525],"locationId":4},{"id":4525,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4526],"locationId":1},{"id":4526,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4527],"locationId":2},{"id":4527,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4528],"locationId":4},{"id":4528,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4529],"locationId":1},{"id":4529,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4530],"locationId":2},{"id":4530,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4531],"locationId":4},{"id":4531,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4532],"locationId":1},{"id":4532,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4533],"locationId":2},{"id":4533,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4534],"locationId":4},{"id":4534,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4535],"locationId":1},{"id":4535,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[4536],"locationId":2},{"id":4536,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[4537],"locationId":4},{"id":4537,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[4538],"locationId":1},{"id":4538,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":19334,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19335],"locationId":398},{"id":19335,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19336],"locationId":399},{"id":19336,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19337],"locationId":2},{"id":19337,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19338],"locationId":3},{"id":19338,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19339],"locationId":398},{"id":19339,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19340],"locationId":399},{"id":19340,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19341],"locationId":2},{"id":19341,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19342],"locationId":3},{"id":19342,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19343],"locationId":398},{"id":19343,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19344],"locationId":399},{"id":19344,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19345],"locationId":2},{"id":19345,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19346],"locationId":3},{"id":19346,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19347],"locationId":398},{"id":19347,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19348],"locationId":399},{"id":19348,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19349],"locationId":2},{"id":19349,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19350],"locationId":3},{"id":19350,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19351],"locationId":398},{"id":19351,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19352],"locationId":399},{"id":19352,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19353],"locationId":2},{"id":19353,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19354],"locationId":3},{"id":19354,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19355],"locationId":398},{"id":19355,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19356],"locationId":399},{"id":19356,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19357],"locationId":2},{"id":19357,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19358],"locationId":3},{"id":19358,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19359],"locationId":398},{"id":19359,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19360],"locationId":399},{"id":19360,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19361],"locationId":2},{"id":19361,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19362],"locationId":3},{"id":19362,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19363],"locationId":398},{"id":19363,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19364],"locationId":399},{"id":19364,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19365],"locationId":2},{"id":19365,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19366],"locationId":3},{"id":19366,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19367],"locationId":398},{"id":19367,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19368],"locationId":399},{"id":19368,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19369],"locationId":2},{"id":19369,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19370],"locationId":3},{"id":19370,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19371],"locationId":398},{"id":19371,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19372],"locationId":399},{"id":19372,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19373],"locationId":2},{"id":19373,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19374],"locationId":3},{"id":19374,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19375],"locationId":398},{"id":19375,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19376],"locationId":399},{"id":19376,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19377],"locationId":2},{"id":19377,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19378],"locationId":3},{"id":19378,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19379],"locationId":398},{"id":19379,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19380],"locationId":399},{"id":19380,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19381],"locationId":2},{"id":19381,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19382],"locationId":3},{"id":19382,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19383],"locationId":398},{"id":19383,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19384],"locationId":399},{"id":19384,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19385],"locationId":2},{"id":19385,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19386],"locationId":3},{"id":19386,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19387],"locationId":398},{"id":19387,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19388],"locationId":399},{"id":19388,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19389],"locationId":2},{"id":19389,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19390],"locationId":3},{"id":19390,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19391],"locationId":398},{"id":19391,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19392],"locationId":399},{"id":19392,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19393],"locationId":2},{"id":19393,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19394],"locationId":3},{"id":19394,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19395],"locationId":398},{"id":19395,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19396],"locationId":399},{"id":19396,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19397],"locationId":2},{"id":19397,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19398],"locationId":3},{"id":19398,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19399],"locationId":398},{"id":19399,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19400],"locationId":399},{"id":19400,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19401],"locationId":2},{"id":19401,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19402],"locationId":3},{"id":19402,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19403],"locationId":398},{"id":19403,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19404],"locationId":399},{"id":19404,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19405],"locationId":2},{"id":19405,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19406],"locationId":3},{"id":19406,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19407],"locationId":398},{"id":19407,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19408],"locationId":399},{"id":19408,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19409],"locationId":2},{"id":19409,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19410],"locationId":3},{"id":19410,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19411],"locationId":398},{"id":19411,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19412],"locationId":399},{"id":19412,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19413],"locationId":2},{"id":19413,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19414],"locationId":3},{"id":19414,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19415],"locationId":398},{"id":19415,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19416],"locationId":399},{"id":19416,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19417],"locationId":2},{"id":19417,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19418],"locationId":3},{"id":19418,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19419],"locationId":398},{"id":19419,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19420],"locationId":399},{"id":19420,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19421],"locationId":2},{"id":19421,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19422],"locationId":3},{"id":19422,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19423],"locationId":398},{"id":19423,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19424],"locationId":399},{"id":19424,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19425],"locationId":2},{"id":19425,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19426],"locationId":3},{"id":19426,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19427],"locationId":398},{"id":19427,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19428],"locationId":399},{"id":19428,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19429],"locationId":2},{"id":19429,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19430],"locationId":3},{"id":19430,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19431],"locationId":398},{"id":19431,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19432],"locationId":399},{"id":19432,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19433],"locationId":2},{"id":19433,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19434],"locationId":3},{"id":19434,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19435],"locationId":398},{"id":19435,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19436],"locationId":399},{"id":19436,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19437],"locationId":2},{"id":19437,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19438],"locationId":3},{"id":19438,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19439],"locationId":398},{"id":19439,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19440],"locationId":399},{"id":19440,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19441],"locationId":2},{"id":19441,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19442],"locationId":3},{"id":19442,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19443],"locationId":398},{"id":19443,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19444],"locationId":399},{"id":19444,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19445],"locationId":2},{"id":19445,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19446],"locationId":3},{"id":19446,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19447],"locationId":398},{"id":19447,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19448],"locationId":399},{"id":19448,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19449],"locationId":2},{"id":19449,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19450],"locationId":3},{"id":19450,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19451],"locationId":398},{"id":19451,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19452],"locationId":399},{"id":19452,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19453],"locationId":2},{"id":19453,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19454],"locationId":3},{"id":19454,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19455],"locationId":398},{"id":19455,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19456],"locationId":399},{"id":19456,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19457],"locationId":2},{"id":19457,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19458],"locationId":3},{"id":19458,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19459],"locationId":398},{"id":19459,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19460],"locationId":399},{"id":19460,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19461],"locationId":2},{"id":19461,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19462],"locationId":3},{"id":19462,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19463],"locationId":398},{"id":19463,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19464],"locationId":399},{"id":19464,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19465],"locationId":2},{"id":19465,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19466],"locationId":3},{"id":19466,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19467],"locationId":398},{"id":19467,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19468],"locationId":399},{"id":19468,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19469],"locationId":2},{"id":19469,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19470],"locationId":3},{"id":19470,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19471],"locationId":398},{"id":19471,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19472],"locationId":399},{"id":19472,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19473],"locationId":2},{"id":19473,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19474],"locationId":3},{"id":19474,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19475],"locationId":398},{"id":19475,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19476],"locationId":399},{"id":19476,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19477],"locationId":2},{"id":19477,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19478],"locationId":3},{"id":19478,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19479],"locationId":398},{"id":19479,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19480],"locationId":399},{"id":19480,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19481],"locationId":2},{"id":19481,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19482],"locationId":3},{"id":19482,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19483],"locationId":398},{"id":19483,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19484],"locationId":399},{"id":19484,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19485],"locationId":2},{"id":19485,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19486],"locationId":3},{"id":19486,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19487],"locationId":398},{"id":19487,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19488],"locationId":399},{"id":19488,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19489],"locationId":2},{"id":19489,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19490],"locationId":3},{"id":19490,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19491],"locationId":398},{"id":19491,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19492],"locationId":399},{"id":19492,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19493],"locationId":2},{"id":19493,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19494],"locationId":3},{"id":19494,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19495],"locationId":398},{"id":19495,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19496],"locationId":399},{"id":19496,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19497],"locationId":2},{"id":19497,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19498],"locationId":3},{"id":19498,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19499],"locationId":398},{"id":19499,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19500],"locationId":399},{"id":19500,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19501],"locationId":2},{"id":19501,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19502],"locationId":3},{"id":19502,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19503],"locationId":398},{"id":19503,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19504],"locationId":399},{"id":19504,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19505],"locationId":2},{"id":19505,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19506],"locationId":3},{"id":19506,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19507],"locationId":398},{"id":19507,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19508],"locationId":399},{"id":19508,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19509],"locationId":2},{"id":19509,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19510],"locationId":3},{"id":19510,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19511],"locationId":398},{"id":19511,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19512],"locationId":399},{"id":19512,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19513],"locationId":2},{"id":19513,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19514],"locationId":3},{"id":19514,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19515],"locationId":398},{"id":19515,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19516],"locationId":399},{"id":19516,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19517],"locationId":2},{"id":19517,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19518],"locationId":3},{"id":19518,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19519],"locationId":398},{"id":19519,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19520],"locationId":399},{"id":19520,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19521],"locationId":2},{"id":19521,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19522],"locationId":3},{"id":19522,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19523],"locationId":398},{"id":19523,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19524],"locationId":399},{"id":19524,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19525,20820],"locationId":2},{"id":19525,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19526],"locationId":3},{"id":19526,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19527],"locationId":398},{"id":19527,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19528],"locationId":399},{"id":19528,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19529],"locationId":2},{"id":19529,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19530],"locationId":3},{"id":19530,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19531],"locationId":398},{"id":19531,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19532],"locationId":399},{"id":19532,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19533],"locationId":2},{"id":19533,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19534],"locationId":3},{"id":19534,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19535],"locationId":398},{"id":19535,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19536],"locationId":399},{"id":19536,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19537],"locationId":2},{"id":19537,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19538],"locationId":3},{"id":19538,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19539],"locationId":398},{"id":19539,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19540],"locationId":399},{"id":19540,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19541],"locationId":2},{"id":19541,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19542],"locationId":3},{"id":19542,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19543],"locationId":398},{"id":19543,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19544],"locationId":399},{"id":19544,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19545],"locationId":2},{"id":19545,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19546],"locationId":3},{"id":19546,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19547],"locationId":398},{"id":19547,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19548],"locationId":399},{"id":19548,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19549],"locationId":2},{"id":19549,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19550],"locationId":3},{"id":19550,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19551],"locationId":398},{"id":19551,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19552],"locationId":399},{"id":19552,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19553],"locationId":2},{"id":19553,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19554],"locationId":3},{"id":19554,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19555],"locationId":398},{"id":19555,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19556],"locationId":399},{"id":19556,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19557],"locationId":2},{"id":19557,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19558],"locationId":3},{"id":19558,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19559],"locationId":398},{"id":19559,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19560],"locationId":399},{"id":19560,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19561],"locationId":2},{"id":19561,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19562],"locationId":3},{"id":19562,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19563],"locationId":398},{"id":19563,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19564],"locationId":399},{"id":19564,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19565,20527],"locationId":2},{"id":19565,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19566],"locationId":3},{"id":19566,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19567],"locationId":398},{"id":19567,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19568],"locationId":399},{"id":19568,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19569,20348],"locationId":2},{"id":19569,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19570],"locationId":3},{"id":19570,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19571],"locationId":398},{"id":19571,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19572],"locationId":399},{"id":19572,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19573,19885],"locationId":2},{"id":19573,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19574],"locationId":5},{"id":19574,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19575],"locationId":6},{"id":19575,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19576],"locationId":7},{"id":19576,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19577],"locationId":6},{"id":19577,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19578],"locationId":8},{"id":19578,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19579],"locationId":9},{"id":19579,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19580],"locationId":6},{"id":19580,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[19581],"locationId":10},{"id":19581,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[19582],"locationId":84},{"id":19582,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19583],"locationId":6},{"id":19583,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[19584],"locationId":85},{"id":19584,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[19585],"locationId":86},{"id":19585,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[19586],"locationId":87},{"id":19586,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[19587],"locationId":88},{"id":19587,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[19588],"locationId":74},{"id":19588,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[19589],"locationId":89},{"id":19589,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[19590],"locationId":90},{"id":19590,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19591,20213],"locationId":109},{"id":19591,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19592,20447],"locationId":109},{"id":19592,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19593,21213],"locationId":109},{"id":19593,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19594,21373],"locationId":109},{"id":19594,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19595],"locationId":109},{"id":19595,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19596],"locationId":109},{"id":19596,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"children":[21119],"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21119,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":21373,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21374],"locationId":114},{"id":21374,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21375],"locationId":114},{"id":21375,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21213,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21214],"locationId":114},{"id":21214,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21215],"locationId":114},{"id":21215,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21216],"locationId":114},{"id":21216,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20447,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20448],"locationId":114},{"id":20448,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20449],"locationId":114},{"id":20449,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20450],"locationId":114},{"id":20450,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20451],"locationId":114},{"id":20451,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":6,"children":[20915,21118],"positionTicks":[{"line":29,"ticks":6,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20915,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21118,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":20213,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20214],"locationId":114},{"id":20214,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20215],"locationId":114},{"id":20215,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20216],"locationId":114},{"id":20216,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20217],"locationId":114},{"id":20217,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20218],"locationId":114},{"id":20218,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":5,"positionTicks":[{"line":29,"ticks":5,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":19885,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19886],"locationId":3},{"id":19886,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19887],"locationId":398},{"id":19887,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19888],"locationId":399},{"id":19888,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19889,19937],"locationId":2},{"id":19889,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19890],"locationId":5},{"id":19890,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19891],"locationId":6},{"id":19891,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19892],"locationId":7},{"id":19892,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19893],"locationId":6},{"id":19893,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19894,20902],"locationId":8},{"id":19894,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19895],"locationId":9},{"id":19895,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19896],"locationId":6},{"id":19896,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[19897,20378],"locationId":10},{"id":19897,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[19898],"locationId":84},{"id":19898,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19899],"locationId":6},{"id":19899,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[19900],"locationId":85},{"id":19900,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[19901],"locationId":86},{"id":19901,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[19902,21355],"locationId":87},{"id":19902,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[19903],"locationId":88},{"id":19903,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[19904],"locationId":74},{"id":19904,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[19905,20756],"locationId":89},{"id":19905,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[19906,19964,20099,20117,20472],"locationId":90},{"id":19906,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[19907],"locationId":40},{"id":19907,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[19908,20776],"locationId":29},{"id":19908,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":101,"positionTicks":[{"line":26,"ticks":101,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20776,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":54},"hitCount":0,"children":[20777],"locationId":561},{"id":20777,"callFrame":{"functionName":"buildNamespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":451,"columnNumber":24},"hitCount":1,"children":[20778],"positionTicks":[{"line":453,"ticks":1,"startLocationId":629,"endLocationId":630}],"locationId":628},{"id":20778,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":414,"ticks":1,"startLocationId":634,"endLocationId":635}],"locationId":13},{"id":19964,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19965,20480],"locationId":109},{"id":19965,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19966,20009],"locationId":109},{"id":19966,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":26,"children":[20568],"positionTicks":[{"line":27,"ticks":26,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20568,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116},{"line":27,"ticks":2,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":20009,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":21,"children":[20393],"positionTicks":[{"line":29,"ticks":21,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20393,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":3,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":20480,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20481],"locationId":114},{"id":20481,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":9,"children":[21270],"positionTicks":[{"line":29,"ticks":9,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21270,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":146,"ticks":2,"startLocationId":216,"endLocationId":451}],"locationId":214},{"id":20099,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[20100],"locationId":97},{"id":20100,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":7,"children":[20101],"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99},{"line":47,"ticks":5,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":20101,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":13,"children":[20815],"positionTicks":[{"line":48,"ticks":13,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":20815,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":20117,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20118],"locationId":29},{"id":20118,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20472,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[20473,20779],"locationId":102},{"id":20473,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":8,"positionTicks":[{"line":13,"ticks":8,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":20779,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":4,"children":[21348],"positionTicks":[{"line":300,"ticks":3,"startLocationId":578,"endLocationId":579},{"line":304,"ticks":1,"startLocationId":275,"endLocationId":276}],"locationId":247},{"id":21348,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[21349],"locationId":248},{"id":21349,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[21350],"locationId":249},{"id":21350,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":67,"ticks":1,"startLocationId":636,"endLocationId":637}],"locationId":250},{"id":20756,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":0,"children":[20757],"locationId":129},{"id":20757,"callFrame":{"functionName":"addDiagnosticOnce","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":231,"columnNumber":21},"hitCount":0,"children":[20758],"locationId":580},{"id":20758,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":21355,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":0,"children":[21356],"locationId":140},{"id":21356,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21357],"locationId":13},{"id":21357,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[21358],"locationId":164},{"id":21358,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21359],"locationId":29},{"id":21359,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20378,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[20379],"locationId":11},{"id":20379,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[20380],"locationId":12},{"id":20380,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[20381],"locationId":72},{"id":20381,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[20382],"locationId":73},{"id":20382,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20383],"locationId":74},{"id":20383,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[20384,21027],"locationId":75},{"id":20384,"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":24},"hitCount":0,"children":[20385],"locationId":81},{"id":20385,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20386],"locationId":29},{"id":20386,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21027,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":0,"children":[21028],"locationId":78},{"id":21028,"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":17},"hitCount":2,"positionTicks":[{"line":71,"ticks":2,"startLocationId":404,"endLocationId":405}],"locationId":403},{"id":20902,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[20903],"locationId":157},{"id":20903,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[20904],"locationId":164},{"id":20904,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20905],"locationId":29},{"id":20905,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[20906],"locationId":165},{"id":20906,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[20907],"locationId":166},{"id":20907,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20908],"locationId":29},{"id":20908,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":341,"ticks":1,"startLocationId":420,"endLocationId":421}],"locationId":167},{"id":19937,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19938],"locationId":3},{"id":19938,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19939],"locationId":398},{"id":19939,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19940],"locationId":399},{"id":19940,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19941,20433],"locationId":2},{"id":19941,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19942],"locationId":5},{"id":19942,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19943],"locationId":6},{"id":19943,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19944],"locationId":7},{"id":19944,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19945],"locationId":6},{"id":19945,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19946,19967],"locationId":8},{"id":19946,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19947],"locationId":9},{"id":19947,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19948],"locationId":6},{"id":19948,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":80,"children":[19949,20006,20389,20461,20465,20482,20526,21314],"positionTicks":[{"line":542,"ticks":80,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":19949,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":18,"children":[20091,21335],"positionTicks":[{"line":348,"ticks":6,"startLocationId":208,"endLocationId":209},{"line":353,"ticks":11,"startLocationId":149,"endLocationId":150},{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":20091,"callFrame":{"functionName":"getName","scriptId":"689","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/globalCallables.js","lineNumber":995,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":997,"ticks":2,"startLocationId":428,"endLocationId":466},{"line":996,"ticks":1,"startLocationId":427,"endLocationId":428}],"locationId":426},{"id":21335,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":3,"positionTicks":[{"line":286,"ticks":3,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":20006,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[20007],"locationId":198},{"id":20007,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20008],"locationId":29},{"id":20008,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20389,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":1,"children":[20390],"positionTicks":[{"line":14,"ticks":1,"startLocationId":590,"endLocationId":591}],"locationId":84},{"id":20390,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20391],"locationId":6},{"id":20391,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":2,"children":[20392,21465],"positionTicks":[{"line":17,"ticks":2,"startLocationId":592,"endLocationId":593}],"locationId":85},{"id":20392,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":176,"ticks":1,"startLocationId":598,"endLocationId":599}],"locationId":129},{"id":21465,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":424,"ticks":1,"startLocationId":638,"endLocationId":639}],"locationId":86},{"id":20461,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[20462,21354],"locationId":151},{"id":20462,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[20463],"locationId":224},{"id":20463,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":21354,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":2,"positionTicks":[{"line":441,"ticks":1,"startLocationId":584,"endLocationId":585},{"line":424,"ticks":1,"startLocationId":640,"endLocationId":641}],"locationId":151},{"id":20465,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[20466,20759,21204,21456,21464],"locationId":11},{"id":20466,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":2,"positionTicks":[{"line":21,"ticks":1,"startLocationId":608,"endLocationId":609},{"line":65,"ticks":1,"startLocationId":607,"endLocationId":642}],"locationId":339},{"id":20759,"callFrame":{"functionName":"findNamespaceNonNamespaceCollisions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":64,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":65,"ticks":1,"startLocationId":644,"endLocationId":645}],"locationId":643},{"id":21204,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":865,"ticks":1,"startLocationId":646,"endLocationId":647}],"locationId":72},{"id":21456,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":18,"ticks":1,"startLocationId":648,"endLocationId":649}],"locationId":12},{"id":21464,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":756,"ticks":1,"startLocationId":602,"endLocationId":603}],"locationId":15},{"id":20482,"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"hitCount":0,"children":[20483],"locationId":342},{"id":20483,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[20484],"locationId":198},{"id":20484,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20485],"locationId":29},{"id":20485,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20526,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":29,"positionTicks":[{"line":545,"ticks":18,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":10,"startLocationId":144,"endLocationId":145},{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":143},{"id":21314,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":1,"children":[21315],"positionTicks":[{"line":568,"ticks":1,"startLocationId":400,"endLocationId":401}],"locationId":12},{"id":21315,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21316],"locationId":13},{"id":21316,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[21317],"locationId":14},{"id":21317,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":2,"positionTicks":[{"line":668,"ticks":2,"startLocationId":48,"endLocationId":156}],"locationId":46},{"id":19967,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[19968,21217],"locationId":157},{"id":19968,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[19969],"locationId":158},{"id":19969,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[19970],"locationId":29},{"id":19970,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[19971],"locationId":159},{"id":19971,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":2,"children":[19972],"positionTicks":[{"line":95,"ticks":2,"startLocationId":348,"endLocationId":349}],"locationId":160},{"id":19972,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":6,"positionTicks":[{"line":78,"ticks":4,"startLocationId":207,"endLocationId":162},{"line":79,"ticks":2,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":21217,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":20433,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[20434],"locationId":3},{"id":20434,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[20435],"locationId":398},{"id":20435,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[20436],"locationId":399},{"id":20436,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[20437],"locationId":2},{"id":20437,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20438],"locationId":5},{"id":20438,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20439],"locationId":6},{"id":20439,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":1,"children":[20440],"positionTicks":[{"line":484,"ticks":1,"startLocationId":650,"endLocationId":243}],"locationId":7},{"id":20440,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[20441],"locationId":196},{"id":20441,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[20442],"locationId":197},{"id":20442,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[20443],"locationId":198},{"id":20443,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":2,"children":[20444,21338],"positionTicks":[{"line":13,"ticks":2,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":20444,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[20445,21127],"locationId":199},{"id":20445,"callFrame":{"functionName":"getOwnDependencies","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":94,"columnNumber":22},"hitCount":0,"children":[20446],"locationId":611},{"id":20446,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":21127,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":21338,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20348,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20349],"locationId":5},{"id":20349,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20350],"locationId":6},{"id":20350,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20351],"locationId":7},{"id":20351,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20352],"locationId":6},{"id":20352,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20353],"locationId":8},{"id":20353,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20354],"locationId":9},{"id":20354,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20355],"locationId":6},{"id":20355,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20356],"locationId":10},{"id":20356,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20357],"locationId":84},{"id":20357,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20358],"locationId":6},{"id":20358,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20359],"locationId":85},{"id":20359,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20360],"locationId":86},{"id":20360,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20361],"locationId":87},{"id":20361,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20362],"locationId":88},{"id":20362,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20363],"locationId":74},{"id":20363,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20364],"locationId":89},{"id":20364,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20365],"locationId":90},{"id":20365,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20366,20744],"locationId":109},{"id":20366,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20367,21068],"locationId":109},{"id":20367,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20368],"locationId":109},{"id":20368,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20369,21187],"locationId":109},{"id":20369,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20370,20474],"locationId":109},{"id":20370,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20371],"locationId":114},{"id":20371,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20372],"locationId":114},{"id":20372,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20373],"locationId":114},{"id":20373,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20374],"locationId":114},{"id":20374,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20375],"locationId":114},{"id":20375,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20474,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20475,21121],"locationId":109},{"id":20475,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20476],"locationId":109},{"id":20476,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20477],"locationId":109},{"id":20477,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20478],"locationId":109},{"id":20478,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20479],"locationId":109},{"id":20479,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21121,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21122],"locationId":114},{"id":21122,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21123],"locationId":114},{"id":21123,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21124],"locationId":114},{"id":21124,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21125],"locationId":114},{"id":21125,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21187,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21188],"locationId":114},{"id":21188,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21189],"locationId":114},{"id":21189,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21190],"locationId":114},{"id":21190,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21191],"locationId":114},{"id":21191,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21192],"locationId":114},{"id":21192,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21193],"locationId":114},{"id":21193,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[21194],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21194,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":21068,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21069],"locationId":114},{"id":21069,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21070],"locationId":114},{"id":21070,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21071],"locationId":114},{"id":21071,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21072],"locationId":114},{"id":21072,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21073],"locationId":114},{"id":21073,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21074],"locationId":114},{"id":21074,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21075],"locationId":114},{"id":21075,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21076],"locationId":114},{"id":21076,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20744,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20745],"locationId":114},{"id":20745,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20746],"locationId":114},{"id":20746,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20747],"locationId":114},{"id":20747,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20748],"locationId":114},{"id":20748,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20749],"locationId":114},{"id":20749,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20750],"locationId":114},{"id":20750,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20751],"locationId":114},{"id":20751,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20752],"locationId":114},{"id":20752,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20753],"locationId":114},{"id":20753,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20527,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20528],"locationId":5},{"id":20528,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20529],"locationId":6},{"id":20529,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20530],"locationId":7},{"id":20530,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20531],"locationId":6},{"id":20531,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20532],"locationId":8},{"id":20532,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20533],"locationId":9},{"id":20533,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20534],"locationId":6},{"id":20534,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20535],"locationId":10},{"id":20535,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20536],"locationId":84},{"id":20536,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20537],"locationId":6},{"id":20537,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20538],"locationId":85},{"id":20538,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20539],"locationId":86},{"id":20539,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20540],"locationId":87},{"id":20540,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20541],"locationId":88},{"id":20541,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20542],"locationId":74},{"id":20542,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20543],"locationId":89},{"id":20543,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20544],"locationId":90},{"id":20544,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20545],"locationId":109},{"id":20545,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20546],"locationId":109},{"id":20546,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20547],"locationId":109},{"id":20547,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20548],"locationId":109},{"id":20548,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20549],"locationId":109},{"id":20549,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20550],"locationId":109},{"id":20550,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20551],"locationId":109},{"id":20551,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20552],"locationId":109},{"id":20552,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20553],"locationId":109},{"id":20553,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20554],"locationId":109},{"id":20554,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20555],"locationId":109},{"id":20555,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20556],"locationId":109},{"id":20556,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20557],"locationId":109},{"id":20557,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20558],"locationId":109},{"id":20558,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[20559],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20559,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":20820,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20821],"locationId":5},{"id":20821,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20822],"locationId":6},{"id":20822,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20823],"locationId":7},{"id":20823,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20824],"locationId":6},{"id":20824,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20825],"locationId":8},{"id":20825,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20826],"locationId":9},{"id":20826,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20827],"locationId":6},{"id":20827,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20828],"locationId":10},{"id":20828,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20829],"locationId":84},{"id":20829,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20830],"locationId":6},{"id":20830,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20831],"locationId":85},{"id":20831,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20832],"locationId":86},{"id":20832,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20833],"locationId":87},{"id":20833,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20834],"locationId":88},{"id":20834,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20835],"locationId":74},{"id":20835,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20836],"locationId":89},{"id":20836,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20837],"locationId":90},{"id":20837,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20838],"locationId":109},{"id":20838,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20839],"locationId":109},{"id":20839,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20840],"locationId":109},{"id":20840,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20841],"locationId":109},{"id":20841,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20842],"locationId":109},{"id":20842,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20843],"locationId":109},{"id":20843,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20844],"locationId":109},{"id":20844,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20845],"locationId":109},{"id":20845,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20846],"locationId":109},{"id":20846,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20847],"locationId":109},{"id":20847,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20848],"locationId":109},{"id":20848,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20849],"locationId":109},{"id":20849,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20850],"locationId":109},{"id":20850,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20851],"locationId":109},{"id":20851,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20852],"locationId":109},{"id":20852,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20853],"locationId":109},{"id":20853,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20854],"locationId":109},{"id":20854,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20855],"locationId":109},{"id":20855,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20856],"locationId":109},{"id":20856,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20857],"locationId":109},{"id":20857,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20858],"locationId":109},{"id":20858,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20859],"locationId":109},{"id":20859,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20860],"locationId":109},{"id":20860,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20861],"locationId":109},{"id":20861,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20862],"locationId":109},{"id":20862,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20863],"locationId":109},{"id":20863,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20864],"locationId":109},{"id":20864,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20865],"locationId":109},{"id":20865,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20866],"locationId":109},{"id":20866,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20867],"locationId":109},{"id":20867,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20868],"locationId":109},{"id":20868,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20869],"locationId":109},{"id":20869,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20870],"locationId":109},{"id":20870,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20871],"locationId":109},{"id":20871,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20872],"locationId":109},{"id":20872,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20873],"locationId":109},{"id":20873,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20874],"locationId":109},{"id":20874,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20875],"locationId":109},{"id":20875,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20876],"locationId":109},{"id":20876,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20877],"locationId":109},{"id":20877,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20878],"locationId":109},{"id":20878,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20879],"locationId":109},{"id":20879,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20880],"locationId":109},{"id":20880,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20881],"locationId":109},{"id":20881,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20882],"locationId":109},{"id":20882,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20883],"locationId":109},{"id":20883,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20884],"locationId":109},{"id":20884,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20885],"locationId":109},{"id":20885,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20886],"locationId":109},{"id":20886,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20887],"locationId":109},{"id":20887,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20888],"locationId":109},{"id":20888,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20889],"locationId":109},{"id":20889,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20890],"locationId":109},{"id":20890,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20891],"locationId":109},{"id":20891,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":28130,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28131],"locationId":452},{"id":28131,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28132],"locationId":453},{"id":28132,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28133],"locationId":2},{"id":28133,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28134],"locationId":3},{"id":28134,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28135],"locationId":452},{"id":28135,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28136],"locationId":453},{"id":28136,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28137],"locationId":2},{"id":28137,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28138],"locationId":3},{"id":28138,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28139],"locationId":452},{"id":28139,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28140],"locationId":453},{"id":28140,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28141],"locationId":2},{"id":28141,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28142],"locationId":3},{"id":28142,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28143],"locationId":452},{"id":28143,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28144],"locationId":453},{"id":28144,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28145],"locationId":2},{"id":28145,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28146],"locationId":3},{"id":28146,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28147],"locationId":452},{"id":28147,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28148],"locationId":453},{"id":28148,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28149],"locationId":2},{"id":28149,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28150],"locationId":3},{"id":28150,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28151],"locationId":452},{"id":28151,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28152],"locationId":453},{"id":28152,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28153],"locationId":2},{"id":28153,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28154],"locationId":3},{"id":28154,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28155],"locationId":452},{"id":28155,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28156],"locationId":453},{"id":28156,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28157],"locationId":2},{"id":28157,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28158],"locationId":3},{"id":28158,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28159],"locationId":452},{"id":28159,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28160],"locationId":453},{"id":28160,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28161],"locationId":2},{"id":28161,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28162],"locationId":3},{"id":28162,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28163],"locationId":452},{"id":28163,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28164],"locationId":453},{"id":28164,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28165],"locationId":2},{"id":28165,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28166],"locationId":3},{"id":28166,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28167],"locationId":452},{"id":28167,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28168],"locationId":453},{"id":28168,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28169],"locationId":2},{"id":28169,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28170],"locationId":3},{"id":28170,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28171],"locationId":452},{"id":28171,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28172],"locationId":453},{"id":28172,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28173],"locationId":2},{"id":28173,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28174],"locationId":3},{"id":28174,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28175],"locationId":452},{"id":28175,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28176],"locationId":453},{"id":28176,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28177],"locationId":2},{"id":28177,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28178],"locationId":3},{"id":28178,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28179],"locationId":452},{"id":28179,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28180],"locationId":453},{"id":28180,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28181],"locationId":2},{"id":28181,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28182],"locationId":3},{"id":28182,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28183],"locationId":452},{"id":28183,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28184],"locationId":453},{"id":28184,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28185],"locationId":2},{"id":28185,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28186],"locationId":3},{"id":28186,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28187],"locationId":452},{"id":28187,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28188],"locationId":453},{"id":28188,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28189],"locationId":2},{"id":28189,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28190],"locationId":3},{"id":28190,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28191],"locationId":452},{"id":28191,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28192],"locationId":453},{"id":28192,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28193],"locationId":2},{"id":28193,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28194],"locationId":3},{"id":28194,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28195],"locationId":452},{"id":28195,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28196],"locationId":453},{"id":28196,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28197],"locationId":2},{"id":28197,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28198],"locationId":3},{"id":28198,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28199],"locationId":452},{"id":28199,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28200],"locationId":453},{"id":28200,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28201],"locationId":2},{"id":28201,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28202],"locationId":3},{"id":28202,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28203],"locationId":452},{"id":28203,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28204],"locationId":453},{"id":28204,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28205],"locationId":2},{"id":28205,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28206],"locationId":3},{"id":28206,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28207],"locationId":452},{"id":28207,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28208],"locationId":453},{"id":28208,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28209],"locationId":2},{"id":28209,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28210],"locationId":3},{"id":28210,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28211],"locationId":452},{"id":28211,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28212],"locationId":453},{"id":28212,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28213],"locationId":2},{"id":28213,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28214],"locationId":3},{"id":28214,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28215],"locationId":452},{"id":28215,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28216],"locationId":453},{"id":28216,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28217],"locationId":2},{"id":28217,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28218],"locationId":3},{"id":28218,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28219],"locationId":452},{"id":28219,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28220],"locationId":453},{"id":28220,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28221],"locationId":2},{"id":28221,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28222],"locationId":3},{"id":28222,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28223],"locationId":452},{"id":28223,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28224],"locationId":453},{"id":28224,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28225],"locationId":2},{"id":28225,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28226],"locationId":3},{"id":28226,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28227],"locationId":452},{"id":28227,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28228],"locationId":453},{"id":28228,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28229],"locationId":2},{"id":28229,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28230],"locationId":3},{"id":28230,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28231],"locationId":452},{"id":28231,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28232],"locationId":453},{"id":28232,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28233],"locationId":2},{"id":28233,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28234],"locationId":3},{"id":28234,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28235],"locationId":452},{"id":28235,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28236],"locationId":453},{"id":28236,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28237],"locationId":2},{"id":28237,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28238],"locationId":3},{"id":28238,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28239],"locationId":452},{"id":28239,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28240],"locationId":453},{"id":28240,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28241],"locationId":2},{"id":28241,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28242],"locationId":3},{"id":28242,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28243],"locationId":452},{"id":28243,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28244],"locationId":453},{"id":28244,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28245],"locationId":2},{"id":28245,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28246],"locationId":3},{"id":28246,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28247],"locationId":452},{"id":28247,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28248],"locationId":453},{"id":28248,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28249],"locationId":2},{"id":28249,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28250],"locationId":3},{"id":28250,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28251],"locationId":452},{"id":28251,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28252],"locationId":453},{"id":28252,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28253],"locationId":2},{"id":28253,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28254],"locationId":3},{"id":28254,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28255],"locationId":452},{"id":28255,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28256],"locationId":453},{"id":28256,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28257],"locationId":2},{"id":28257,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28258],"locationId":3},{"id":28258,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28259],"locationId":452},{"id":28259,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28260],"locationId":453},{"id":28260,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28261],"locationId":2},{"id":28261,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28262],"locationId":3},{"id":28262,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28263],"locationId":452},{"id":28263,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28264],"locationId":453},{"id":28264,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28265],"locationId":2},{"id":28265,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28266],"locationId":3},{"id":28266,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28267],"locationId":452},{"id":28267,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28268],"locationId":453},{"id":28268,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28269],"locationId":2},{"id":28269,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28270],"locationId":3},{"id":28270,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28271],"locationId":452},{"id":28271,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28272],"locationId":453},{"id":28272,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28273],"locationId":2},{"id":28273,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28274],"locationId":3},{"id":28274,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28275],"locationId":452},{"id":28275,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28276],"locationId":453},{"id":28276,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28277],"locationId":2},{"id":28277,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28278],"locationId":3},{"id":28278,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28279],"locationId":452},{"id":28279,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28280],"locationId":453},{"id":28280,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28281],"locationId":2},{"id":28281,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28282],"locationId":3},{"id":28282,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28283],"locationId":452},{"id":28283,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28284],"locationId":453},{"id":28284,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28285],"locationId":2},{"id":28285,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28286],"locationId":3},{"id":28286,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28287],"locationId":452},{"id":28287,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28288],"locationId":453},{"id":28288,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28289],"locationId":2},{"id":28289,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28290],"locationId":3},{"id":28290,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28291],"locationId":452},{"id":28291,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28292],"locationId":453},{"id":28292,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28293],"locationId":2},{"id":28293,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28294],"locationId":3},{"id":28294,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28295],"locationId":452},{"id":28295,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28296],"locationId":453},{"id":28296,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28297],"locationId":2},{"id":28297,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28298],"locationId":3},{"id":28298,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28299],"locationId":452},{"id":28299,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28300],"locationId":453},{"id":28300,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28301],"locationId":2},{"id":28301,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28302],"locationId":3},{"id":28302,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28303],"locationId":452},{"id":28303,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28304],"locationId":453},{"id":28304,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28305],"locationId":2},{"id":28305,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28306],"locationId":3},{"id":28306,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28307],"locationId":452},{"id":28307,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28308],"locationId":453},{"id":28308,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28309],"locationId":2},{"id":28309,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28310],"locationId":3},{"id":28310,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28311],"locationId":452},{"id":28311,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28312],"locationId":453},{"id":28312,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28313],"locationId":2},{"id":28313,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28314],"locationId":3},{"id":28314,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28315],"locationId":452},{"id":28315,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28316],"locationId":453},{"id":28316,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28317],"locationId":2},{"id":28317,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28318],"locationId":3},{"id":28318,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28319],"locationId":452},{"id":28319,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28320],"locationId":453},{"id":28320,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28321],"locationId":2},{"id":28321,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28322],"locationId":3},{"id":28322,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28323],"locationId":452},{"id":28323,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28324],"locationId":453},{"id":28324,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28325],"locationId":2},{"id":28325,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28326],"locationId":3},{"id":28326,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28327],"locationId":452},{"id":28327,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28328],"locationId":453},{"id":28328,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28329],"locationId":2},{"id":28329,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28330],"locationId":3},{"id":28330,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28331],"locationId":452},{"id":28331,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28332],"locationId":453},{"id":28332,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28333],"locationId":2},{"id":28333,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28334],"locationId":3},{"id":28334,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28335],"locationId":452},{"id":28335,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28336],"locationId":453},{"id":28336,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28337],"locationId":2},{"id":28337,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28338],"locationId":3},{"id":28338,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28339],"locationId":452},{"id":28339,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28340],"locationId":453},{"id":28340,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28341],"locationId":2},{"id":28341,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28342],"locationId":3},{"id":28342,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28343],"locationId":452},{"id":28343,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28344],"locationId":453},{"id":28344,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28345],"locationId":2},{"id":28345,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28346],"locationId":3},{"id":28346,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28347],"locationId":452},{"id":28347,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28348],"locationId":453},{"id":28348,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28349],"locationId":2},{"id":28349,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28350],"locationId":3},{"id":28350,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28351],"locationId":452},{"id":28351,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28352],"locationId":453},{"id":28352,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28353],"locationId":2},{"id":28353,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28354],"locationId":3},{"id":28354,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28355],"locationId":452},{"id":28355,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28356],"locationId":453},{"id":28356,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28357],"locationId":2},{"id":28357,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28358],"locationId":3},{"id":28358,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28359],"locationId":452},{"id":28359,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28360],"locationId":453},{"id":28360,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28361],"locationId":2},{"id":28361,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28362],"locationId":3},{"id":28362,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28363],"locationId":452},{"id":28363,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28364],"locationId":453},{"id":28364,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28365],"locationId":2},{"id":28365,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28366],"locationId":3},{"id":28366,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28367],"locationId":452},{"id":28367,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28368],"locationId":453},{"id":28368,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28369],"locationId":2},{"id":28369,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28370],"locationId":3},{"id":28370,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28371],"locationId":452},{"id":28371,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28372],"locationId":453},{"id":28372,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28373],"locationId":2},{"id":28373,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28374],"locationId":3},{"id":28374,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28375],"locationId":452},{"id":28375,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28376],"locationId":453},{"id":28376,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28377],"locationId":2},{"id":28377,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28378],"locationId":3},{"id":28378,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28379],"locationId":452},{"id":28379,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28380],"locationId":453},{"id":28380,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28381],"locationId":2},{"id":28381,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28382],"locationId":3},{"id":28382,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28383],"locationId":452},{"id":28383,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28384],"locationId":453},{"id":28384,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28385],"locationId":2},{"id":28385,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28386],"locationId":3},{"id":28386,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28387],"locationId":452},{"id":28387,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28388],"locationId":453},{"id":28388,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28389],"locationId":2},{"id":28389,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28390],"locationId":3},{"id":28390,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28391],"locationId":452},{"id":28391,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28392],"locationId":453},{"id":28392,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28393],"locationId":2},{"id":28393,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28394],"locationId":3},{"id":28394,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28395],"locationId":452},{"id":28395,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28396],"locationId":453},{"id":28396,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28397],"locationId":2},{"id":28397,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28398],"locationId":3},{"id":28398,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28399],"locationId":452},{"id":28399,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28400],"locationId":453},{"id":28400,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28401],"locationId":2},{"id":28401,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28402],"locationId":3},{"id":28402,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28403],"locationId":452},{"id":28403,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28404],"locationId":453},{"id":28404,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28405],"locationId":2},{"id":28405,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28406],"locationId":3},{"id":28406,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28407],"locationId":452},{"id":28407,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28408],"locationId":453},{"id":28408,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28409],"locationId":2},{"id":28409,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28410],"locationId":3},{"id":28410,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28411],"locationId":452},{"id":28411,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28412],"locationId":453},{"id":28412,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28413],"locationId":2},{"id":28413,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28414],"locationId":3},{"id":28414,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28415],"locationId":452},{"id":28415,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28416],"locationId":453},{"id":28416,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28417],"locationId":2},{"id":28417,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28418],"locationId":3},{"id":28418,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28419],"locationId":452},{"id":28419,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28420],"locationId":453},{"id":28420,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28421],"locationId":2},{"id":28421,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28422],"locationId":3},{"id":28422,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28423],"locationId":452},{"id":28423,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28424],"locationId":453},{"id":28424,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28425],"locationId":2},{"id":28425,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28426],"locationId":3},{"id":28426,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28427],"locationId":452},{"id":28427,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28428],"locationId":453},{"id":28428,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28429],"locationId":2},{"id":28429,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28430],"locationId":3},{"id":28430,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28431],"locationId":452},{"id":28431,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28432],"locationId":453},{"id":28432,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28433],"locationId":2},{"id":28433,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28434],"locationId":3},{"id":28434,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28435],"locationId":452},{"id":28435,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28436],"locationId":453},{"id":28436,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28437],"locationId":2},{"id":28437,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28438],"locationId":3},{"id":28438,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28439],"locationId":452},{"id":28439,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28440],"locationId":453},{"id":28440,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28441],"locationId":2},{"id":28441,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28442],"locationId":3},{"id":28442,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28443],"locationId":452},{"id":28443,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28444],"locationId":453},{"id":28444,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28445],"locationId":2},{"id":28445,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28446],"locationId":3},{"id":28446,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28447],"locationId":452},{"id":28447,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28448],"locationId":453},{"id":28448,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28449],"locationId":2},{"id":28449,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28450],"locationId":3},{"id":28450,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28451],"locationId":452},{"id":28451,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28452],"locationId":453},{"id":28452,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28453],"locationId":2},{"id":28453,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28454],"locationId":3},{"id":28454,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28455],"locationId":452},{"id":28455,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28456],"locationId":453},{"id":28456,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28457,28945],"locationId":2},{"id":28457,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28458],"locationId":5},{"id":28458,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28459],"locationId":6},{"id":28459,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28460],"locationId":7},{"id":28460,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28461],"locationId":6},{"id":28461,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28462],"locationId":8},{"id":28462,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28463],"locationId":9},{"id":28463,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28464],"locationId":6},{"id":28464,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28465],"locationId":10},{"id":28465,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28466],"locationId":84},{"id":28466,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28467],"locationId":6},{"id":28467,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28468],"locationId":85},{"id":28468,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28469],"locationId":86},{"id":28469,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28470],"locationId":87},{"id":28470,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28471],"locationId":88},{"id":28471,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28472],"locationId":74},{"id":28472,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[28473],"locationId":89},{"id":28473,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[28474,28824,28869],"locationId":90},{"id":28474,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[28475],"locationId":102},{"id":28475,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[28476],"locationId":217},{"id":28476,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":483,"ticks":1,"startLocationId":299,"endLocationId":300}],"locationId":218},{"id":28824,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[28825],"locationId":117},{"id":28825,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[28826],"locationId":118},{"id":28826,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[28827],"locationId":123},{"id":28827,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[28828],"locationId":29},{"id":28828,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":28869,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":28945,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28946],"locationId":3},{"id":28946,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28947],"locationId":452},{"id":28947,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28948],"locationId":453},{"id":28948,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28949],"locationId":2},{"id":28949,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28950],"locationId":3},{"id":28950,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28951],"locationId":452},{"id":28951,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28952],"locationId":453},{"id":28952,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28953],"locationId":2},{"id":28953,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28954],"locationId":5},{"id":28954,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28955],"locationId":6},{"id":28955,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28956],"locationId":7},{"id":28956,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":1173,"callFrame":{"functionName":"(garbage collector)","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":350,"locationId":651},{"id":1547,"callFrame":{"functionName":"(program)","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":41,"locationId":652},{"id":9463,"callFrame":{"functionName":"(idle)","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":28,"locationId":653},{"id":9464,"callFrame":{"functionName":"processTimers","scriptId":"38","url":"internal/timers.js","lineNumber":484,"columnNumber":24},"hitCount":0,"children":[9465],"locationId":654},{"id":9465,"callFrame":{"functionName":"listOnTimeout","scriptId":"38","url":"internal/timers.js","lineNumber":504,"columnNumber":24},"hitCount":0,"children":[9466],"locationId":655},{"id":9466,"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":2791,"columnNumber":32},"hitCount":0,"children":[9467,14448],"locationId":656},{"id":9467,"callFrame":{"functionName":"","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":732,"columnNumber":29},"hitCount":0,"children":[9468],"locationId":657},{"id":9468,"callFrame":{"functionName":"cycle","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1983,"columnNumber":18},"hitCount":0,"children":[9469,9486],"locationId":658},{"id":9469,"callFrame":{"functionName":"emit","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1201,"columnNumber":17},"hitCount":0,"children":[9470],"locationId":659},{"id":9470,"callFrame":{"functionName":"forEach","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":9407,"columnNumber":20},"hitCount":0,"children":[9471],"locationId":660},{"id":9471,"callFrame":{"functionName":"arrayEach","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":524,"columnNumber":20},"hitCount":0,"children":[9472],"locationId":661},{"id":9472,"callFrame":{"functionName":"","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1213,"columnNumber":42},"hitCount":0,"children":[9473,14443],"locationId":662},{"id":9473,"callFrame":{"functionName":"update","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1857,"columnNumber":21},"hitCount":0,"children":[9474],"locationId":663},{"id":9474,"callFrame":{"functionName":"emit","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1201,"columnNumber":17},"hitCount":0,"children":[9475],"locationId":659},{"id":9475,"callFrame":{"functionName":"forEach","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":9407,"columnNumber":20},"hitCount":0,"children":[9476],"locationId":660},{"id":9476,"callFrame":{"functionName":"arrayEach","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":524,"columnNumber":20},"hitCount":0,"children":[9477],"locationId":661},{"id":9477,"callFrame":{"functionName":"","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1213,"columnNumber":42},"hitCount":0,"children":[9478],"locationId":662},{"id":9478,"callFrame":{"functionName":"startCycle","scriptId":"146","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/target-runner.js","lineNumber":27,"columnNumber":62},"hitCount":0,"children":[9479],"locationId":664},{"id":9479,"callFrame":{"functionName":"Writable.write","scriptId":"90","url":"internal/streams/writable.js","lineNumber":257,"columnNumber":35},"hitCount":0,"children":[9480],"locationId":665},{"id":9480,"callFrame":{"functionName":"writeOrBuffer","scriptId":"90","url":"internal/streams/writable.js","lineNumber":333,"columnNumber":22},"hitCount":0,"children":[9481],"locationId":666},{"id":9481,"callFrame":{"functionName":"Socket._write","scriptId":"81","url":"net.js","lineNumber":808,"columnNumber":34},"hitCount":0,"children":[9482],"locationId":667},{"id":9482,"callFrame":{"functionName":"Socket._writeGeneric","scriptId":"81","url":"net.js","lineNumber":771,"columnNumber":41},"hitCount":0,"children":[9483],"locationId":668},{"id":9483,"callFrame":{"functionName":"writeGeneric","scriptId":"95","url":"internal/stream_base_commons.js","lineNumber":142,"columnNumber":21},"hitCount":0,"children":[9484],"locationId":669},{"id":9484,"callFrame":{"functionName":"handleWriteReq","scriptId":"95","url":"internal/stream_base_commons.js","lineNumber":46,"columnNumber":23},"hitCount":0,"children":[9485],"locationId":670},{"id":9485,"callFrame":{"functionName":"writeUtf8String","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":63,"ticks":1,"startLocationId":672,"endLocationId":673}],"locationId":671},{"id":14443,"callFrame":{"functionName":"getNext","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":867,"columnNumber":22},"hitCount":0,"children":[14444,21530],"locationId":674},{"id":14444,"callFrame":{"functionName":"evaluate","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1888,"columnNumber":23},"hitCount":0,"children":[14445],"locationId":675},{"id":14445,"callFrame":{"functionName":"getMean","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":568,"columnNumber":20},"hitCount":0,"children":[14446],"locationId":676},{"id":14446,"callFrame":{"functionName":"reduce","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":9744,"columnNumber":19},"hitCount":0,"children":[14447],"locationId":677},{"id":14447,"callFrame":{"functionName":"arrayReduce","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":688,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":691,"ticks":1,"startLocationId":679,"endLocationId":680}],"locationId":678},{"id":21530,"callFrame":{"functionName":"delay","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":534,"columnNumber":18},"hitCount":0,"children":[21531],"locationId":681},{"id":21531,"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":6611,"columnNumber":21},"hitCount":0,"children":[21532],"locationId":682},{"id":21532,"callFrame":{"functionName":"apply","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":484,"columnNumber":16},"hitCount":0,"children":[21533],"locationId":683},{"id":21533,"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":10537,"columnNumber":33},"hitCount":0,"children":[21534],"locationId":684},{"id":21534,"callFrame":{"functionName":"baseDelay","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":2787,"columnNumber":22},"hitCount":0,"children":[21535],"locationId":685},{"id":21535,"callFrame":{"functionName":"setTimeout","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":6708,"columnNumber":46},"hitCount":0,"children":[21536],"locationId":686},{"id":21536,"callFrame":{"functionName":"setTimeout","scriptId":"36","url":"timers.js","lineNumber":139,"columnNumber":19},"hitCount":0,"children":[21537],"locationId":687},{"id":21537,"callFrame":{"functionName":"Timeout","scriptId":"38","url":"internal/timers.js","lineNumber":164,"columnNumber":16},"hitCount":1,"positionTicks":[{"line":194,"ticks":1,"startLocationId":689,"endLocationId":690}],"locationId":688},{"id":9486,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9487],"locationId":4},{"id":9487,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9488],"locationId":1},{"id":9488,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9489,9520],"locationId":2},{"id":9489,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9490],"locationId":5},{"id":9490,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9491],"locationId":6},{"id":9491,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9492],"locationId":7},{"id":9492,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9493],"locationId":6},{"id":9493,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9494],"locationId":8},{"id":9494,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9495],"locationId":9},{"id":9495,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9496],"locationId":6},{"id":9496,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[9497,9498,9499,9511],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":9497,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":9498,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":9499,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9500],"locationId":84},{"id":9500,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9501],"locationId":6},{"id":9501,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9502],"locationId":85},{"id":9502,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9503],"locationId":86},{"id":9503,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9504],"locationId":87},{"id":9504,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9505],"locationId":88},{"id":9505,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9506],"locationId":74},{"id":9506,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[9507],"locationId":89},{"id":9507,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[9508,9513,9517],"positionTicks":[{"line":26,"ticks":1,"startLocationId":191,"endLocationId":370}],"locationId":90},{"id":9508,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[9509],"locationId":102},{"id":9509,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[9510],"locationId":217},{"id":9510,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":483,"ticks":1,"startLocationId":299,"endLocationId":300}],"locationId":218},{"id":9513,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9514],"locationId":109},{"id":9514,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9515],"locationId":109},{"id":9515,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9516],"locationId":114},{"id":9516,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":9517,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[9518],"locationId":40},{"id":9518,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9519],"locationId":29},{"id":9519,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9511,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9512],"locationId":11},{"id":9512,"callFrame":{"functionName":"linkClassesWithParents","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":271,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":272,"ticks":1,"startLocationId":692,"endLocationId":693}],"locationId":691},{"id":9520,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9521],"locationId":3},{"id":9521,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9522],"locationId":4},{"id":9522,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9523],"locationId":1},{"id":9523,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9524,9569],"locationId":2},{"id":9524,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9525],"locationId":5},{"id":9525,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9526],"locationId":6},{"id":9526,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9527],"locationId":7},{"id":9527,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9528],"locationId":6},{"id":9528,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9529,9535],"locationId":8},{"id":9529,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[9530,9561],"locationId":157},{"id":9530,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[9531],"locationId":158},{"id":9531,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9532],"locationId":29},{"id":9532,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[9533],"locationId":159},{"id":9533,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[9534],"locationId":160},{"id":9534,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":9561,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[9562],"locationId":164},{"id":9562,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9563],"locationId":29},{"id":9563,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":694,"endLocationId":695}],"locationId":165},{"id":9535,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9536],"locationId":9},{"id":9536,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9537],"locationId":6},{"id":9537,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9538,9539,9540,9554],"locationId":10},{"id":9538,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":9539,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":9540,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":1,"children":[9541],"positionTicks":[{"line":14,"ticks":1,"startLocationId":590,"endLocationId":591}],"locationId":84},{"id":9541,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9542],"locationId":6},{"id":9542,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9543],"locationId":85},{"id":9543,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9544],"locationId":86},{"id":9544,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9545],"locationId":87},{"id":9545,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9546],"locationId":88},{"id":9546,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9547],"locationId":74},{"id":9547,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[9548],"locationId":89},{"id":9548,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[9549,9564],"locationId":90},{"id":9549,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9550],"locationId":109},{"id":9550,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9551],"locationId":114},{"id":9551,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9552],"locationId":114},{"id":9552,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[9553],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9553,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9564,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[9565],"locationId":117},{"id":9565,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[9566],"locationId":118},{"id":9566,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[9567],"locationId":123},{"id":9567,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9568],"locationId":29},{"id":9568,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9554,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9555],"locationId":11},{"id":9555,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":1,"children":[9556],"positionTicks":[{"line":568,"ticks":1,"startLocationId":400,"endLocationId":401}],"locationId":12},{"id":9556,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9557],"locationId":13},{"id":9557,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[9558],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213},{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":9558,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[9559],"locationId":15},{"id":9559,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[9560],"locationId":25},{"id":9560,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":9569,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9570],"locationId":3},{"id":9570,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9571],"locationId":4},{"id":9571,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9572],"locationId":1},{"id":9572,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9573,9608],"locationId":2},{"id":9573,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9574],"locationId":5},{"id":9574,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9575],"locationId":6},{"id":9575,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9576],"locationId":7},{"id":9576,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9577],"locationId":6},{"id":9577,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9578],"locationId":8},{"id":9578,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9579],"locationId":9},{"id":9579,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9580],"locationId":6},{"id":9580,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9581,9593,9598],"locationId":10},{"id":9581,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9582],"locationId":84},{"id":9582,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9583],"locationId":6},{"id":9583,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9584],"locationId":85},{"id":9584,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9585],"locationId":86},{"id":9585,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9586],"locationId":87},{"id":9586,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9587],"locationId":88},{"id":9587,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9588],"locationId":74},{"id":9588,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[9589],"locationId":89},{"id":9589,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":4,"children":[9590,9594,9603],"positionTicks":[{"line":50,"ticks":1,"startLocationId":388,"endLocationId":389},{"line":73,"ticks":2,"startLocationId":210,"endLocationId":188},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":9590,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[9591],"locationId":40},{"id":9591,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9592],"locationId":29},{"id":9592,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9594,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9595],"locationId":109},{"id":9595,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9596],"locationId":109},{"id":9596,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9597],"locationId":109},{"id":9597,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9603,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[9604],"locationId":117},{"id":9604,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[9605],"locationId":118},{"id":9605,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[9606],"locationId":123},{"id":9606,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9607],"locationId":29},{"id":9607,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9593,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":9598,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9599],"locationId":11},{"id":9599,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9600],"locationId":12},{"id":9600,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9601],"locationId":13},{"id":9601,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[9602],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":9602,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":9608,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9609],"locationId":3},{"id":9609,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9610],"locationId":4},{"id":9610,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9611],"locationId":1},{"id":9611,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9612,9643],"locationId":2},{"id":9612,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9613],"locationId":5},{"id":9613,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9614],"locationId":6},{"id":9614,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9615,9641],"locationId":7},{"id":9615,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9616],"locationId":6},{"id":9616,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9617],"locationId":8},{"id":9617,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9618],"locationId":9},{"id":9618,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9619],"locationId":6},{"id":9619,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9620,9632,9635],"locationId":10},{"id":9620,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9621],"locationId":84},{"id":9621,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9622],"locationId":6},{"id":9622,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9623],"locationId":85},{"id":9623,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9624],"locationId":86},{"id":9624,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9625],"locationId":87},{"id":9625,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9626],"locationId":88},{"id":9626,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9627],"locationId":74},{"id":9627,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[9628],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":9628,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[9629,9633],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":9629,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[9630],"locationId":97},{"id":9630,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[9631],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":9631,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":9633,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9634],"locationId":109},{"id":9634,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9632,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":9635,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9636],"locationId":11},{"id":9636,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9637],"locationId":12},{"id":9637,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9638],"locationId":13},{"id":9638,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[9639,9640],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":9639,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":741,"ticks":1,"startLocationId":696,"endLocationId":697}],"locationId":33},{"id":9640,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":9641,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":0,"children":[9642],"locationId":283},{"id":9642,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":1,"positionTicks":[{"line":507,"ticks":1,"startLocationId":287,"endLocationId":288}],"locationId":286},{"id":9643,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9644],"locationId":3},{"id":9644,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9645],"locationId":4},{"id":9645,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9646],"locationId":1},{"id":9646,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9647,9678],"locationId":2},{"id":9647,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9648],"locationId":5},{"id":9648,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9649],"locationId":6},{"id":9649,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9650],"locationId":7},{"id":9650,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9651],"locationId":6},{"id":9651,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9652],"locationId":8},{"id":9652,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9653],"locationId":9},{"id":9653,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9654],"locationId":6},{"id":9654,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9655,9664,9665],"locationId":10},{"id":9655,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9656],"locationId":84},{"id":9656,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9657],"locationId":6},{"id":9657,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9658],"locationId":85},{"id":9658,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9659],"locationId":86},{"id":9659,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9660],"locationId":87},{"id":9660,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9661],"locationId":88},{"id":9661,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9662],"locationId":74},{"id":9662,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[9663],"locationId":89},{"id":9663,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[9670,9673,9675],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":9670,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[9671],"locationId":40},{"id":9671,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9672],"locationId":29},{"id":9672,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9673,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":9675,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9676],"locationId":109},{"id":9676,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9664,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":9665,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9666,9674],"locationId":11},{"id":9666,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9667],"locationId":12},{"id":9667,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9668],"locationId":13},{"id":9668,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[9669,9677],"locationId":14},{"id":9669,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35},{"line":725,"ticks":1,"startLocationId":528,"endLocationId":34}],"locationId":33},{"id":9677,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":636,"ticks":1,"startLocationId":222,"endLocationId":223}],"locationId":36},{"id":9674,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":73,"ticks":1,"startLocationId":698,"endLocationId":699}],"locationId":339},{"id":9678,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9679],"locationId":3},{"id":9679,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9680],"locationId":4},{"id":9680,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9681],"locationId":1},{"id":9681,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":1,"children":[9682,9719],"positionTicks":[{"line":19,"ticks":1,"startLocationId":364,"endLocationId":365}],"locationId":2},{"id":9682,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9683],"locationId":5},{"id":9683,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9684],"locationId":6},{"id":9684,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9685],"locationId":7},{"id":9685,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9686],"locationId":6},{"id":9686,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9687,9710],"locationId":8},{"id":9687,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9688],"locationId":9},{"id":9688,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9689],"locationId":6},{"id":9689,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9690,9703,9704],"locationId":10},{"id":9690,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9691],"locationId":84},{"id":9691,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9692],"locationId":6},{"id":9692,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9693],"locationId":85},{"id":9693,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9694],"locationId":86},{"id":9694,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9695],"locationId":87},{"id":9695,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9696],"locationId":88},{"id":9696,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9697],"locationId":74},{"id":9697,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[9698],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":9698,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[9699,9709,9716],"locationId":90},{"id":9699,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[9700],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9700,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9701],"locationId":109},{"id":9701,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9702],"locationId":114},{"id":9702,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9709,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":9716,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[9717],"locationId":40},{"id":9717,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9718],"locationId":29},{"id":9718,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9703,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":9704,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9705],"locationId":11},{"id":9705,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9706],"locationId":12},{"id":9706,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9707],"locationId":13},{"id":9707,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[9708],"positionTicks":[{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201},{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":9708,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":9710,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[9711],"locationId":157},{"id":9711,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[9712],"locationId":158},{"id":9712,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9713],"locationId":29},{"id":9713,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[9714],"locationId":159},{"id":9714,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[9715],"locationId":160},{"id":9715,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":81,"ticks":1,"startLocationId":473,"endLocationId":474}],"locationId":161},{"id":9719,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9720],"locationId":3},{"id":9720,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9721],"locationId":4},{"id":9721,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":1,"children":[9722],"positionTicks":[{"line":4,"ticks":1,"startLocationId":396,"endLocationId":397}],"locationId":1},{"id":9722,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9723,9756],"locationId":2},{"id":9723,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9724],"locationId":5},{"id":9724,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9725],"locationId":6},{"id":9725,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9726],"locationId":7},{"id":9726,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9727],"locationId":6},{"id":9727,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9728,9750],"locationId":8},{"id":9728,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9729],"locationId":9},{"id":9729,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9730],"locationId":6},{"id":9730,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[9731,9742,9743,9745],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":9731,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9732],"locationId":84},{"id":9732,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9733],"locationId":6},{"id":9733,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9734],"locationId":85},{"id":9734,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9735],"locationId":86},{"id":9735,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9736],"locationId":87},{"id":9736,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9737],"locationId":88},{"id":9737,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9738],"locationId":74},{"id":9738,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[9739],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":9739,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[9740],"locationId":90},{"id":9740,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[9741],"locationId":117},{"id":9741,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[9744],"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":9744,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":9742,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":9743,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":9745,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9746],"locationId":11},{"id":9746,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9747],"locationId":12},{"id":9747,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9748],"locationId":13},{"id":9748,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[9749],"locationId":14},{"id":9749,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":83,"ticks":1,"startLocationId":233,"endLocationId":234}],"locationId":46},{"id":9750,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[9751],"locationId":157},{"id":9751,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[9752],"locationId":158},{"id":9752,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9753],"locationId":29},{"id":9753,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[9754],"locationId":159},{"id":9754,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[9755],"locationId":160},{"id":9755,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":9756,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9757],"locationId":3},{"id":9757,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9758],"locationId":4},{"id":9758,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9759],"locationId":1},{"id":9759,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9760,9796],"locationId":2},{"id":9760,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9761],"locationId":5},{"id":9761,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9762],"locationId":6},{"id":9762,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9763],"locationId":7},{"id":9763,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9764],"locationId":6},{"id":9764,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9765],"locationId":8},{"id":9765,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9766],"locationId":9},{"id":9766,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9767],"locationId":6},{"id":9767,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9768,9772,9781,9790],"locationId":10},{"id":9768,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9769],"locationId":12},{"id":9769,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9770],"locationId":13},{"id":9770,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[9771],"locationId":14},{"id":9771,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":9772,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9773],"locationId":84},{"id":9773,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9774],"locationId":6},{"id":9774,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9775],"locationId":85},{"id":9775,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9776],"locationId":86},{"id":9776,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9777],"locationId":87},{"id":9777,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9778],"locationId":88},{"id":9778,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9779],"locationId":74},{"id":9779,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[9780,9782,9795],"locationId":89},{"id":9780,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":9782,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[9783],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":9783,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9784],"locationId":109},{"id":9784,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9785],"locationId":109},{"id":9785,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9786],"locationId":114},{"id":9786,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9787],"locationId":114},{"id":9787,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9788],"locationId":114},{"id":9788,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9789],"locationId":114},{"id":9789,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9795,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":9781,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":9790,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9791],"locationId":11},{"id":9791,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9792],"locationId":12},{"id":9792,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9793],"locationId":13},{"id":9793,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[9794],"locationId":14},{"id":9794,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":9796,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9797],"locationId":3},{"id":9797,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9798],"locationId":4},{"id":9798,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9799],"locationId":1},{"id":9799,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9800,9823],"locationId":2},{"id":9800,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9801],"locationId":5},{"id":9801,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9802],"locationId":6},{"id":9802,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9803],"locationId":7},{"id":9803,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9804],"locationId":6},{"id":9804,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9805],"locationId":8},{"id":9805,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9806],"locationId":9},{"id":9806,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9807],"locationId":6},{"id":9807,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[9808,9809,9819],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":9808,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":9809,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9810],"locationId":84},{"id":9810,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9811],"locationId":6},{"id":9811,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9812],"locationId":85},{"id":9812,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9813],"locationId":86},{"id":9813,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9814],"locationId":87},{"id":9814,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9815],"locationId":88},{"id":9815,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9816],"locationId":74},{"id":9816,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[9817],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":9817,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[9818,9820],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":9818,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[9822],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9822,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9820,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[9821],"locationId":97},{"id":9821,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":9819,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":9823,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9824],"locationId":3},{"id":9824,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9825],"locationId":4},{"id":9825,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9826],"locationId":1},{"id":9826,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9827,9865],"locationId":2},{"id":9827,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9828],"locationId":5},{"id":9828,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9829],"locationId":6},{"id":9829,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9830],"locationId":7},{"id":9830,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9831],"locationId":6},{"id":9831,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9832],"locationId":8},{"id":9832,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9833],"locationId":9},{"id":9833,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9834],"locationId":6},{"id":9834,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[9835,9846,9854,9855],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":9835,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9836],"locationId":84},{"id":9836,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9837],"locationId":6},{"id":9837,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9838],"locationId":85},{"id":9838,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9839],"locationId":86},{"id":9839,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9840],"locationId":87},{"id":9840,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9841],"locationId":88},{"id":9841,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9842],"locationId":74},{"id":9842,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[9843],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":9843,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[9844,9859,9864],"locationId":90},{"id":9844,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[9845],"locationId":40},{"id":9845,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":9859,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[9860],"locationId":117},{"id":9860,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[9861],"locationId":118},{"id":9861,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[9862],"locationId":123},{"id":9862,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":9864,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":9846,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9847],"locationId":11},{"id":9847,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9848],"locationId":12},{"id":9848,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9849],"locationId":13},{"id":9849,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[9850,9856,9863],"locationId":14},{"id":9850,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[9851],"locationId":36},{"id":9851,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[9852],"locationId":40},{"id":9852,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9853],"locationId":29},{"id":9853,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9856,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[9857],"locationId":64},{"id":9857,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[9858],"locationId":65},{"id":9858,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":9863,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":9854,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":9855,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":9865,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9866],"locationId":3},{"id":9866,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9867],"locationId":4},{"id":9867,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9868],"locationId":1},{"id":9868,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9869,9905],"locationId":2},{"id":9869,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9870],"locationId":5},{"id":9870,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9871],"locationId":6},{"id":9871,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9872,9902],"locationId":7},{"id":9872,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9873],"locationId":6},{"id":9873,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9874],"locationId":8},{"id":9874,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9875],"locationId":9},{"id":9875,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9876],"locationId":6},{"id":9876,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9877,9883],"locationId":10},{"id":9877,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9878],"locationId":11},{"id":9878,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9879],"locationId":12},{"id":9879,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9880],"locationId":13},{"id":9880,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[9881,9901],"locationId":14},{"id":9881,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[9882],"locationId":15},{"id":9882,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"children":[9897],"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":9897,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":9901,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":737,"ticks":1,"startLocationId":253,"endLocationId":254}],"locationId":33},{"id":9883,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9884],"locationId":84},{"id":9884,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9885],"locationId":6},{"id":9885,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9886],"locationId":85},{"id":9886,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9887],"locationId":86},{"id":9887,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9888],"locationId":87},{"id":9888,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9889],"locationId":88},{"id":9889,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9890],"locationId":74},{"id":9890,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[9891],"locationId":89},{"id":9891,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[9892,9898],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":791,"ticks":1,"startLocationId":494,"endLocationId":495},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":9892,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[9893],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9893,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9894],"locationId":109},{"id":9894,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9895],"locationId":114},{"id":9895,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9896],"locationId":114},{"id":9896,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9898,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[9899],"locationId":97},{"id":9899,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[9900],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":9900,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":9902,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":0,"children":[9903],"locationId":283},{"id":9903,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":0,"children":[9904],"locationId":286},{"id":9904,"callFrame":{"functionName":"get componentName","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":140,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":143,"ticks":1,"startLocationId":701,"endLocationId":702}],"locationId":700},{"id":9905,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9906],"locationId":3},{"id":9906,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9907],"locationId":4},{"id":9907,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9908],"locationId":1},{"id":9908,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9909,9952],"locationId":2},{"id":9909,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9910],"locationId":5},{"id":9910,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9911],"locationId":6},{"id":9911,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9912],"locationId":7},{"id":9912,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9913],"locationId":6},{"id":9913,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9914,9943],"locationId":8},{"id":9914,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9915],"locationId":9},{"id":9915,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9916],"locationId":6},{"id":9916,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9917,9926,9934,9942],"locationId":10},{"id":9917,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9918],"locationId":84},{"id":9918,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9919],"locationId":6},{"id":9919,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9920],"locationId":85},{"id":9920,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9921],"locationId":86},{"id":9921,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9922],"locationId":87},{"id":9922,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9923],"locationId":88},{"id":9923,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9924],"locationId":74},{"id":9924,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[9925],"locationId":89},{"id":9925,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[9927],"positionTicks":[{"line":82,"ticks":2,"startLocationId":91,"endLocationId":92},{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":9927,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9928],"locationId":109},{"id":9928,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9929],"locationId":109},{"id":9929,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9930],"locationId":114},{"id":9930,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9931],"locationId":114},{"id":9931,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9932],"locationId":114},{"id":9932,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9933],"locationId":114},{"id":9933,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9926,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":9934,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[9935],"locationId":11},{"id":9935,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[9936],"locationId":12},{"id":9936,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[9937],"locationId":13},{"id":9937,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[9938],"locationId":14},{"id":9938,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"children":[9939],"positionTicks":[{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222}],"locationId":36},{"id":9939,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[9940],"locationId":40},{"id":9940,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9941],"locationId":29},{"id":9941,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":9942,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":9943,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[9944],"locationId":157},{"id":9944,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[9945],"locationId":164},{"id":9945,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9946],"locationId":29},{"id":9946,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[9947],"locationId":165},{"id":9947,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[9948],"locationId":166},{"id":9948,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[9949],"locationId":29},{"id":9949,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[9950],"locationId":167},{"id":9950,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":0,"children":[9951],"locationId":168},{"id":9951,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":139,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":150,"ticks":1,"startLocationId":703,"endLocationId":704}],"locationId":169},{"id":9952,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9953],"locationId":3},{"id":9953,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9954],"locationId":4},{"id":9954,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9955],"locationId":1},{"id":9955,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9956,9989],"locationId":2},{"id":9956,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9957],"locationId":5},{"id":9957,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9958],"locationId":6},{"id":9958,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9959],"locationId":7},{"id":9959,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9960],"locationId":6},{"id":9960,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9961,9963],"locationId":8},{"id":9961,"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"hitCount":0,"children":[9962],"locationId":342},{"id":9962,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":9963,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9964],"locationId":9},{"id":9964,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9965],"locationId":6},{"id":9965,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[9966],"locationId":10},{"id":9966,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[9967],"locationId":84},{"id":9967,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9968],"locationId":6},{"id":9968,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[9969],"locationId":85},{"id":9969,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[9970],"locationId":86},{"id":9970,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[9971],"locationId":87},{"id":9971,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[9972],"locationId":88},{"id":9972,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[9973],"locationId":74},{"id":9973,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[9974,9977,9978],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":9974,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[9975,9979,9981],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":9975,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"children":[9976],"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":9976,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":9979,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[9980],"locationId":117},{"id":9980,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":9981,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9982],"locationId":109},{"id":9982,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[9983],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":9983,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9984,9986],"locationId":109},{"id":9984,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[9985],"locationId":109},{"id":9985,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9986,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9987],"locationId":114},{"id":9987,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[9988],"locationId":114},{"id":9988,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":9977,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":9978,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":9989,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[9990],"locationId":3},{"id":9990,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[9991],"locationId":4},{"id":9991,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[9992],"locationId":1},{"id":9992,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[9993,10037],"locationId":2},{"id":9993,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[9994],"locationId":5},{"id":9994,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9995],"locationId":6},{"id":9995,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[9996,10035],"locationId":7},{"id":9996,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[9997],"locationId":6},{"id":9997,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[9998],"locationId":8},{"id":9998,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[9999],"locationId":9},{"id":9999,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10000],"locationId":6},{"id":10000,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10001,10011,10022,10023],"locationId":10},{"id":10001,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10002],"locationId":84},{"id":10002,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10003],"locationId":6},{"id":10003,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10004],"locationId":85},{"id":10004,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10005],"locationId":86},{"id":10005,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10006],"locationId":87},{"id":10006,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10007],"locationId":88},{"id":10007,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10008],"locationId":74},{"id":10008,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10009],"locationId":89},{"id":10009,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[10010,10015,10019],"locationId":90},{"id":10010,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99},{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":10015,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10016],"locationId":117},{"id":10016,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10017],"locationId":118},{"id":10017,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[10018],"locationId":123},{"id":10018,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":10019,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10020],"locationId":40},{"id":10020,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[10021],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":10021,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10011,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[10012],"locationId":151},{"id":10012,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[10013],"locationId":152},{"id":10013,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10014],"locationId":74},{"id":10014,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":438,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":440,"ticks":1,"startLocationId":553,"endLocationId":325}],"locationId":324},{"id":10022,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":10023,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10024],"locationId":11},{"id":10024,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10025,10030],"locationId":12},{"id":10025,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[10026],"locationId":372},{"id":10026,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[10027],"locationId":373},{"id":10027,"callFrame":{"functionName":"verifyNewExpressions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":42,"columnNumber":24},"hitCount":0,"children":[10028],"locationId":374},{"id":10028,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10029],"locationId":13},{"id":10029,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":10030,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10031],"locationId":13},{"id":10031,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10032],"locationId":14},{"id":10032,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[10033],"locationId":15},{"id":10033,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[10034],"locationId":25},{"id":10034,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":10035,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":0,"children":[10036],"locationId":283},{"id":10036,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":1,"positionTicks":[{"line":507,"ticks":1,"startLocationId":287,"endLocationId":288}],"locationId":286},{"id":10037,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10038],"locationId":3},{"id":10038,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10039],"locationId":4},{"id":10039,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10040],"locationId":1},{"id":10040,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10041,10070],"locationId":2},{"id":10041,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10042],"locationId":5},{"id":10042,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10043],"locationId":6},{"id":10043,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10044],"locationId":7},{"id":10044,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10045],"locationId":6},{"id":10045,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10046],"locationId":8},{"id":10046,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10047],"locationId":9},{"id":10047,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10048],"locationId":6},{"id":10048,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10049,10061,10069],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10049,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10050],"locationId":84},{"id":10050,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10051],"locationId":6},{"id":10051,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10052],"locationId":85},{"id":10052,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10053],"locationId":86},{"id":10053,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10054],"locationId":87},{"id":10054,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10055],"locationId":88},{"id":10055,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10056],"locationId":74},{"id":10056,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":4,"children":[10057],"positionTicks":[{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375},{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":10057,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[10058],"locationId":90},{"id":10058,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[10059],"locationId":97},{"id":10059,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[10060],"locationId":97},{"id":10060,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":10061,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10062],"locationId":11},{"id":10062,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10063],"locationId":12},{"id":10063,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10064],"locationId":13},{"id":10064,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[10065],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":10065,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[10066],"locationId":36},{"id":10066,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10067],"locationId":40},{"id":10067,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10068],"locationId":29},{"id":10068,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10069,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10070,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10071],"locationId":3},{"id":10071,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10072],"locationId":4},{"id":10072,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10073],"locationId":1},{"id":10073,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10074,10115],"locationId":2},{"id":10074,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10075],"locationId":5},{"id":10075,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10076],"locationId":6},{"id":10076,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10077],"locationId":7},{"id":10077,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10078],"locationId":6},{"id":10078,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10079,10088],"locationId":8},{"id":10079,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10080,10110],"locationId":157},{"id":10080,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[10081],"locationId":164},{"id":10081,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10082],"locationId":29},{"id":10082,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[10083],"locationId":165},{"id":10083,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[10084],"locationId":166},{"id":10084,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10085],"locationId":29},{"id":10085,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[10086],"locationId":167},{"id":10086,"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":14,"columnNumber":26},"hitCount":0,"children":[10087],"locationId":180},{"id":10087,"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":252,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":256,"ticks":1,"startLocationId":182,"endLocationId":183}],"locationId":181},{"id":10110,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[10111],"locationId":158},{"id":10111,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10112],"locationId":29},{"id":10112,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[10113],"locationId":159},{"id":10113,"callFrame":{"functionName":"SymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":8,"columnNumber":15},"hitCount":0,"children":[10114],"locationId":705},{"id":10114,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":10088,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10089],"locationId":9},{"id":10089,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10090],"locationId":6},{"id":10090,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10091,10109],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10091,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10092],"locationId":84},{"id":10092,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10093],"locationId":6},{"id":10093,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10094],"locationId":85},{"id":10094,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10095],"locationId":86},{"id":10095,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10096],"locationId":87},{"id":10096,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10097],"locationId":88},{"id":10097,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10098],"locationId":74},{"id":10098,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10099],"locationId":89},{"id":10099,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[10100,10106],"positionTicks":[{"line":77,"ticks":1,"startLocationId":94,"endLocationId":96},{"line":81,"ticks":1,"startLocationId":381,"endLocationId":91}],"locationId":90},{"id":10100,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10101],"locationId":117},{"id":10101,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10102,10103],"locationId":118},{"id":10102,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":10103,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[10104],"locationId":123},{"id":10104,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10105],"locationId":29},{"id":10105,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10106,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10107],"locationId":40},{"id":10107,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10108],"locationId":29},{"id":10108,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10109,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10115,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10116],"locationId":3},{"id":10116,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10117],"locationId":4},{"id":10117,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10118],"locationId":1},{"id":10118,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10119,10157],"locationId":2},{"id":10119,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10120],"locationId":5},{"id":10120,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10121],"locationId":6},{"id":10121,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10122],"locationId":7},{"id":10122,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10123],"locationId":6},{"id":10123,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10124,10128],"locationId":8},{"id":10124,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10125],"locationId":9},{"id":10125,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10126],"locationId":6},{"id":10126,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10127,10134,10141,10153,10154],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10127,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":10134,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10135],"locationId":11},{"id":10135,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10136,10156],"locationId":12},{"id":10136,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10137],"locationId":13},{"id":10137,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10138],"locationId":14},{"id":10138,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[10139],"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":10139,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[10140],"locationId":25},{"id":10140,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":2,"positionTicks":[{"line":338,"ticks":2,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":10156,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":868,"ticks":1,"startLocationId":706,"endLocationId":541}],"locationId":72},{"id":10141,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10142],"locationId":84},{"id":10142,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10143],"locationId":6},{"id":10143,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10144],"locationId":85},{"id":10144,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10145],"locationId":86},{"id":10145,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10146],"locationId":87},{"id":10146,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10147],"locationId":88},{"id":10147,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10148],"locationId":74},{"id":10148,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10149],"locationId":89},{"id":10149,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[10150],"locationId":90},{"id":10150,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10151],"locationId":40},{"id":10151,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10152],"locationId":29},{"id":10152,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10153,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":384,"ticks":1,"startLocationId":435,"endLocationId":436}],"locationId":151},{"id":10154,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10155],"locationId":157},{"id":10155,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":10128,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10129],"locationId":157},{"id":10129,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[10130],"locationId":158},{"id":10130,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10131],"locationId":29},{"id":10131,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[10132],"locationId":159},{"id":10132,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[10133],"locationId":160},{"id":10133,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":10157,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10158],"locationId":3},{"id":10158,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10159],"locationId":4},{"id":10159,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10160],"locationId":1},{"id":10160,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10161,10205],"locationId":2},{"id":10161,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10162],"locationId":5},{"id":10162,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10163],"locationId":6},{"id":10163,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10164],"locationId":7},{"id":10164,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10165],"locationId":6},{"id":10165,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10166,10170],"locationId":8},{"id":10166,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10167],"locationId":9},{"id":10167,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10168],"locationId":6},{"id":10168,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10169,10176,10184],"locationId":10},{"id":10169,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":4,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10176,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10177],"locationId":11},{"id":10177,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10178],"locationId":12},{"id":10178,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10179],"locationId":13},{"id":10179,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10180],"locationId":14},{"id":10180,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"children":[10181],"positionTicks":[{"line":42,"ticks":1,"startLocationId":626,"endLocationId":627}],"locationId":36},{"id":10181,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10182],"locationId":40},{"id":10182,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10183],"locationId":29},{"id":10183,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10184,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10185],"locationId":84},{"id":10185,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10186],"locationId":6},{"id":10186,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10187],"locationId":85},{"id":10187,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10188],"locationId":86},{"id":10188,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10189],"locationId":87},{"id":10189,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10190],"locationId":88},{"id":10190,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10191],"locationId":74},{"id":10191,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10192],"locationId":89},{"id":10192,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[10193,10194],"locationId":90},{"id":10193,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":10194,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10195],"locationId":117},{"id":10195,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10196],"locationId":118},{"id":10196,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[10197],"locationId":123},{"id":10197,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10198],"locationId":29},{"id":10198,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10170,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10171,10199],"locationId":157},{"id":10171,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[10172],"locationId":158},{"id":10172,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10173],"locationId":29},{"id":10173,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[10174],"locationId":159},{"id":10174,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[10175],"locationId":160},{"id":10175,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207},{"line":81,"ticks":1,"startLocationId":473,"endLocationId":474}],"locationId":161},{"id":10199,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[10200],"locationId":164},{"id":10200,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10201],"locationId":29},{"id":10201,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[10202],"locationId":165},{"id":10202,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[10203],"locationId":166},{"id":10203,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10204],"locationId":29},{"id":10204,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":707,"endLocationId":708}],"locationId":167},{"id":10205,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10206],"locationId":3},{"id":10206,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10207],"locationId":4},{"id":10207,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10208],"locationId":1},{"id":10208,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10209,10243],"locationId":2},{"id":10209,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10210],"locationId":5},{"id":10210,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10211],"locationId":6},{"id":10211,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10212],"locationId":7},{"id":10212,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10213],"locationId":6},{"id":10213,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10214,10220],"locationId":8},{"id":10214,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10215],"locationId":157},{"id":10215,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[10216],"locationId":158},{"id":10216,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10217],"locationId":29},{"id":10217,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[10218],"locationId":159},{"id":10218,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[10219],"locationId":160},{"id":10219,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":10220,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10221],"locationId":9},{"id":10221,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10222],"locationId":6},{"id":10222,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[10223,10224,10242],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10223,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150},{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":10224,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10225],"locationId":84},{"id":10225,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10226],"locationId":6},{"id":10226,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10227],"locationId":85},{"id":10227,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10228],"locationId":86},{"id":10228,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10229],"locationId":87},{"id":10229,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10230],"locationId":88},{"id":10230,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10231],"locationId":74},{"id":10231,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10232],"locationId":89},{"id":10232,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[10233,10240,10241],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":10233,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10234],"locationId":117},{"id":10234,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10235],"locationId":118},{"id":10235,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[10236],"locationId":123},{"id":10236,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10237],"locationId":29},{"id":10237,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":220,"columnNumber":46},"hitCount":0,"children":[10238],"locationId":296},{"id":10238,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10239],"locationId":13},{"id":10239,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":10240,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10241,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10242,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10243,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10244],"locationId":3},{"id":10244,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10245],"locationId":4},{"id":10245,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10246],"locationId":1},{"id":10246,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10247,10285],"locationId":2},{"id":10247,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10248],"locationId":5},{"id":10248,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10249],"locationId":6},{"id":10249,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10250,10251],"locationId":7},{"id":10250,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":10251,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10252],"locationId":6},{"id":10252,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10253],"locationId":8},{"id":10253,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10254],"locationId":9},{"id":10254,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10255],"locationId":6},{"id":10255,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10256,10261,10283],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10256,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10257],"locationId":11},{"id":10257,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10258,10271],"locationId":12},{"id":10258,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10259],"locationId":13},{"id":10259,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10260],"locationId":14},{"id":10260,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":10271,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[10272],"locationId":372},{"id":10272,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[10273,10280],"locationId":373},{"id":10273,"callFrame":{"functionName":"verifyNewExpressions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":42,"columnNumber":24},"hitCount":0,"children":[10274],"locationId":374},{"id":10274,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10275],"locationId":13},{"id":10275,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[10276],"locationId":68},{"id":10276,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":10280,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":0,"children":[10281],"locationId":545},{"id":10281,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10282],"locationId":13},{"id":10282,"callFrame":{"functionName":"","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":244,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":247,"ticks":1,"startLocationId":710,"endLocationId":711}],"locationId":709},{"id":10261,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10262],"locationId":84},{"id":10262,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10263],"locationId":6},{"id":10263,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10264],"locationId":85},{"id":10264,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10265],"locationId":86},{"id":10265,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10266],"locationId":87},{"id":10266,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10267],"locationId":88},{"id":10267,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10268],"locationId":74},{"id":10268,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10269],"locationId":89},{"id":10269,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[10270,10277,10284],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":10270,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":10277,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10278],"locationId":117},{"id":10278,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10279],"locationId":118},{"id":10279,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":10284,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10283,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10285,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10286],"locationId":3},{"id":10286,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10287],"locationId":4},{"id":10287,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10288],"locationId":1},{"id":10288,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10289,10327],"locationId":2},{"id":10289,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10290],"locationId":5},{"id":10290,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10291],"locationId":6},{"id":10291,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10292,10297,10326],"locationId":7},{"id":10292,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[10293],"locationId":196},{"id":10293,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[10294],"locationId":197},{"id":10294,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[10295],"locationId":198},{"id":10295,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10296],"locationId":29},{"id":10296,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10297,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10298],"locationId":6},{"id":10298,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10299],"locationId":8},{"id":10299,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10300],"locationId":9},{"id":10300,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10301],"locationId":6},{"id":10301,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10302,10305],"locationId":10},{"id":10302,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10303],"locationId":11},{"id":10303,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10304,10319],"locationId":12},{"id":10304,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":809,"ticks":1,"startLocationId":258,"endLocationId":379}],"locationId":256},{"id":10319,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10320],"locationId":13},{"id":10320,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10321],"locationId":14},{"id":10321,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"children":[10322],"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":10322,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10323],"locationId":40},{"id":10323,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10324],"locationId":29},{"id":10324,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10305,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10306],"locationId":84},{"id":10306,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10307],"locationId":6},{"id":10307,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10308],"locationId":85},{"id":10308,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10309],"locationId":86},{"id":10309,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10310],"locationId":87},{"id":10310,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10311],"locationId":88},{"id":10311,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10312],"locationId":74},{"id":10312,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[10313,10325],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":10313,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[10314,10317],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":10314,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10315],"locationId":40},{"id":10315,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10316],"locationId":29},{"id":10316,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10317,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10318],"locationId":117},{"id":10318,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":10325,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":10326,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":1,"positionTicks":[{"line":500,"ticks":1,"startLocationId":361,"endLocationId":362}],"locationId":283},{"id":10327,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10328],"locationId":3},{"id":10328,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10329],"locationId":4},{"id":10329,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10330],"locationId":1},{"id":10330,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10331,10363],"locationId":2},{"id":10331,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10332],"locationId":5},{"id":10332,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10333],"locationId":6},{"id":10333,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10334],"locationId":7},{"id":10334,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10335],"locationId":6},{"id":10335,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10336],"locationId":8},{"id":10336,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10337],"locationId":9},{"id":10337,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10338],"locationId":6},{"id":10338,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10339,10352,10362],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10339,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10340],"locationId":84},{"id":10340,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10341],"locationId":6},{"id":10341,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10342],"locationId":85},{"id":10342,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10343],"locationId":86},{"id":10343,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10344],"locationId":87},{"id":10344,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10345],"locationId":88},{"id":10345,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10346],"locationId":74},{"id":10346,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10347],"locationId":89},{"id":10347,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[10348,10360],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":10348,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[10349],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10349,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10350,10353],"locationId":109},{"id":10350,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10351,10356],"locationId":109},{"id":10351,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":10356,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10357],"locationId":109},{"id":10357,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10358],"locationId":114},{"id":10358,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10359],"locationId":114},{"id":10359,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":10353,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10354],"locationId":114},{"id":10354,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10355],"locationId":114},{"id":10355,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":10360,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10361],"locationId":40},{"id":10361,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":10352,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150},{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":10362,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10363,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10364],"locationId":3},{"id":10364,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10365],"locationId":4},{"id":10365,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10366],"locationId":1},{"id":10366,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10367,10395],"locationId":2},{"id":10367,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10368],"locationId":5},{"id":10368,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10369],"locationId":6},{"id":10369,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10370],"locationId":7},{"id":10370,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10371],"locationId":6},{"id":10371,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10372],"locationId":8},{"id":10372,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10373],"locationId":9},{"id":10373,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10374],"locationId":6},{"id":10374,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":4,"children":[10375,10384],"positionTicks":[{"line":542,"ticks":4,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10375,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10376],"locationId":84},{"id":10376,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10377],"locationId":6},{"id":10377,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10378],"locationId":85},{"id":10378,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10379],"locationId":86},{"id":10379,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10380],"locationId":87},{"id":10380,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10381],"locationId":88},{"id":10381,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10382],"locationId":74},{"id":10382,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10383],"locationId":89},{"id":10383,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[10385,10388,10391],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":10385,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10386],"locationId":117},{"id":10386,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10387,10392],"locationId":118},{"id":10387,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":10392,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[10393],"locationId":123},{"id":10393,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10394],"locationId":29},{"id":10394,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10388,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10389],"locationId":40},{"id":10389,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10390],"locationId":29},{"id":10390,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10391,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10384,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":10395,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10396],"locationId":3},{"id":10396,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10397],"locationId":4},{"id":10397,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10398],"locationId":1},{"id":10398,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10399,10433],"locationId":2},{"id":10399,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10400],"locationId":5},{"id":10400,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10401],"locationId":6},{"id":10401,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10402],"locationId":7},{"id":10402,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10403],"locationId":6},{"id":10403,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10404],"locationId":8},{"id":10404,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10405],"locationId":9},{"id":10405,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10406],"locationId":6},{"id":10406,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[10407,10423,10431],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205},{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":10407,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10408],"locationId":84},{"id":10408,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10409],"locationId":6},{"id":10409,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10410],"locationId":85},{"id":10410,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10411],"locationId":86},{"id":10411,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10412],"locationId":87},{"id":10412,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10413],"locationId":88},{"id":10413,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10414],"locationId":74},{"id":10414,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10415],"locationId":89},{"id":10415,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[10416,10422],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":10416,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10417],"locationId":109},{"id":10417,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10418],"locationId":109},{"id":10418,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10419],"locationId":114},{"id":10419,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10420],"locationId":114},{"id":10420,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10421],"locationId":114},{"id":10421,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":10422,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10423,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10424],"locationId":11},{"id":10424,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10425,10429],"locationId":12},{"id":10425,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[10426],"locationId":372},{"id":10426,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[10427],"locationId":373},{"id":10427,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":0,"children":[10428],"locationId":545},{"id":10428,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":414,"ticks":1,"startLocationId":634,"endLocationId":635}],"locationId":13},{"id":10429,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10430],"locationId":13},{"id":10430,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[10432],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":10432,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203},{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":10431,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10433,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10434],"locationId":3},{"id":10434,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10435],"locationId":4},{"id":10435,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10436],"locationId":1},{"id":10436,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10437,10487],"locationId":2},{"id":10437,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10438],"locationId":5},{"id":10438,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10439],"locationId":6},{"id":10439,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10440,10441],"locationId":7},{"id":10440,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":10441,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10442],"locationId":6},{"id":10442,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10443,10472],"locationId":8},{"id":10443,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10444],"locationId":9},{"id":10444,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10445],"locationId":6},{"id":10445,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10446,10455,10482],"locationId":10},{"id":10446,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10447],"locationId":84},{"id":10447,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10448],"locationId":6},{"id":10448,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10449],"locationId":85},{"id":10449,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10450],"locationId":86},{"id":10450,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10451],"locationId":87},{"id":10451,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10452],"locationId":88},{"id":10452,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10453],"locationId":74},{"id":10453,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10454,10456,10478],"locationId":89},{"id":10454,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":187,"ticks":1,"startLocationId":306,"endLocationId":307}],"locationId":129},{"id":10456,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[10457,10458,10461,10479],"locationId":90},{"id":10457,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10458,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10459],"locationId":117},{"id":10459,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10460],"locationId":118},{"id":10460,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":10461,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[10462],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10462,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10463],"locationId":109},{"id":10463,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10464],"locationId":114},{"id":10464,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10465],"locationId":114},{"id":10465,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10466],"locationId":114},{"id":10466,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10467],"locationId":114},{"id":10467,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10468],"locationId":114},{"id":10468,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10469],"locationId":114},{"id":10469,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10470],"locationId":114},{"id":10470,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10471],"locationId":114},{"id":10471,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":10479,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10480],"locationId":40},{"id":10480,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10481],"locationId":29},{"id":10481,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10478,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":10455,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":10482,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10483],"locationId":11},{"id":10483,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10484],"locationId":12},{"id":10484,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10485],"locationId":13},{"id":10485,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10486],"locationId":14},{"id":10486,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":10472,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10473],"locationId":157},{"id":10473,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[10474],"locationId":158},{"id":10474,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10475],"locationId":29},{"id":10475,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[10476],"locationId":159},{"id":10476,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[10477],"locationId":160},{"id":10477,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":10487,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10488],"locationId":3},{"id":10488,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10489],"locationId":4},{"id":10489,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10490],"locationId":1},{"id":10490,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10491,10521],"locationId":2},{"id":10491,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10492],"locationId":5},{"id":10492,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10493],"locationId":6},{"id":10493,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":1,"children":[10494],"positionTicks":[{"line":492,"ticks":1,"startLocationId":612,"endLocationId":613}],"locationId":7},{"id":10494,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10495],"locationId":6},{"id":10495,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10496],"locationId":8},{"id":10496,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10497],"locationId":9},{"id":10497,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10498],"locationId":6},{"id":10498,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10499,10500,10504],"locationId":10},{"id":10499,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":10500,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10501],"locationId":11},{"id":10501,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10502],"locationId":12},{"id":10502,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10503],"locationId":13},{"id":10503,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[10518],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213},{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":10518,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[10519],"locationId":64},{"id":10519,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[10520],"locationId":65},{"id":10520,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":10504,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10505],"locationId":84},{"id":10505,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10506],"locationId":6},{"id":10506,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10507],"locationId":85},{"id":10507,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10508],"locationId":86},{"id":10508,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10509],"locationId":87},{"id":10509,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10510],"locationId":88},{"id":10510,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10511],"locationId":74},{"id":10511,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[10512,10513,10514],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":10512,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":10513,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[10515],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":10515,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10516],"locationId":40},{"id":10516,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[10517],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":10517,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10514,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":10521,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10522],"locationId":3},{"id":10522,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10523],"locationId":4},{"id":10523,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10524],"locationId":1},{"id":10524,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10525,10561],"locationId":2},{"id":10525,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10526],"locationId":5},{"id":10526,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10527],"locationId":6},{"id":10527,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10528],"locationId":7},{"id":10528,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10529],"locationId":6},{"id":10529,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10530],"locationId":8},{"id":10530,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10531],"locationId":9},{"id":10531,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10532],"locationId":6},{"id":10532,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10533,10545,10548],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10533,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10534],"locationId":84},{"id":10534,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10535],"locationId":6},{"id":10535,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10536],"locationId":85},{"id":10536,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10537],"locationId":86},{"id":10537,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10538],"locationId":87},{"id":10538,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10539],"locationId":88},{"id":10539,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10540],"locationId":74},{"id":10540,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10541],"locationId":89},{"id":10541,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[10542,10546,10547],"locationId":90},{"id":10542,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10543],"locationId":40},{"id":10543,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[10544],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":10544,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10546,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[10556],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10556,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10557],"locationId":109},{"id":10557,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10558],"locationId":109},{"id":10558,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10559],"locationId":109},{"id":10559,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10560],"locationId":109},{"id":10560,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10547,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":10545,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10548,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10549],"locationId":11},{"id":10549,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10550],"locationId":12},{"id":10550,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10551],"locationId":13},{"id":10551,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[10552,10555],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":10552,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[10553],"locationId":36},{"id":10553,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10554],"locationId":40},{"id":10554,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":10555,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":10561,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10562],"locationId":3},{"id":10562,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10563],"locationId":4},{"id":10563,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10564],"locationId":1},{"id":10564,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10565,10594],"locationId":2},{"id":10565,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10566],"locationId":5},{"id":10566,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10567],"locationId":6},{"id":10567,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10568],"locationId":7},{"id":10568,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10569],"locationId":6},{"id":10569,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10570],"locationId":8},{"id":10570,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10571],"locationId":9},{"id":10571,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10572],"locationId":6},{"id":10572,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10573,10587,10589],"locationId":10},{"id":10573,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10574],"locationId":84},{"id":10574,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10575],"locationId":6},{"id":10575,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10576],"locationId":85},{"id":10576,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10577],"locationId":86},{"id":10577,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10578],"locationId":87},{"id":10578,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10579],"locationId":88},{"id":10579,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10580],"locationId":74},{"id":10580,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[10581],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":10581,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[10582,10588],"positionTicks":[{"line":48,"ticks":1,"startLocationId":488,"endLocationId":489},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":10582,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10583],"locationId":117},{"id":10583,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10584],"locationId":118},{"id":10584,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[10585],"locationId":123},{"id":10585,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10586],"locationId":29},{"id":10586,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10588,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10587,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10589,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10590],"locationId":11},{"id":10590,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10591],"locationId":12},{"id":10591,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10592],"locationId":13},{"id":10592,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[10593],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200},{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":10593,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":737,"ticks":1,"startLocationId":253,"endLocationId":254}],"locationId":33},{"id":10594,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10595],"locationId":3},{"id":10595,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10596],"locationId":4},{"id":10596,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10597],"locationId":1},{"id":10597,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10598,10626],"locationId":2},{"id":10598,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10599],"locationId":5},{"id":10599,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10600],"locationId":6},{"id":10600,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10601],"locationId":7},{"id":10601,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10602],"locationId":6},{"id":10602,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10603],"locationId":8},{"id":10603,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10604],"locationId":9},{"id":10604,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10605],"locationId":6},{"id":10605,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10606,10615,10616],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":10606,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10607],"locationId":84},{"id":10607,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10608],"locationId":6},{"id":10608,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10609],"locationId":85},{"id":10609,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10610],"locationId":86},{"id":10610,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10611],"locationId":87},{"id":10611,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10612],"locationId":88},{"id":10612,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10613],"locationId":74},{"id":10613,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10614],"locationId":89},{"id":10614,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":5,"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":10615,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10616,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10617],"locationId":11},{"id":10617,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10618],"locationId":12},{"id":10618,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10619],"locationId":13},{"id":10619,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[10620,10624],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":10620,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[10621],"locationId":36},{"id":10621,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10622],"locationId":40},{"id":10622,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10623],"locationId":29},{"id":10623,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10624,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[10625],"locationId":46},{"id":10625,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":280,"ticks":1,"startLocationId":52,"endLocationId":53}],"locationId":49},{"id":10626,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10627],"locationId":3},{"id":10627,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10628],"locationId":4},{"id":10628,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10629],"locationId":1},{"id":10629,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10630,10660],"locationId":2},{"id":10630,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10631],"locationId":5},{"id":10631,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10632],"locationId":6},{"id":10632,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10633],"locationId":7},{"id":10633,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10634],"locationId":6},{"id":10634,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10635],"locationId":8},{"id":10635,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10636],"locationId":9},{"id":10636,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10637],"locationId":6},{"id":10637,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10638,10639,10644],"locationId":10},{"id":10638,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":10639,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10640],"locationId":11},{"id":10640,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10641],"locationId":12},{"id":10641,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10642],"locationId":13},{"id":10642,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10643,10658],"locationId":14},{"id":10643,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"children":[10656],"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19},{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":10656,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[10657],"locationId":25},{"id":10657,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":10658,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[10659],"locationId":64},{"id":10659,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":10644,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10645],"locationId":84},{"id":10645,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10646],"locationId":6},{"id":10646,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10647],"locationId":85},{"id":10647,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10648],"locationId":86},{"id":10648,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10649],"locationId":87},{"id":10649,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10650],"locationId":88},{"id":10650,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10651],"locationId":74},{"id":10651,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":3,"children":[10652],"positionTicks":[{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":10652,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[10653],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":10653,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10654],"locationId":40},{"id":10654,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10655],"locationId":29},{"id":10655,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10660,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10661],"locationId":3},{"id":10661,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10662],"locationId":4},{"id":10662,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10663],"locationId":1},{"id":10663,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10664,10704],"locationId":2},{"id":10664,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10665],"locationId":5},{"id":10665,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10666],"locationId":6},{"id":10666,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10667,10673],"locationId":7},{"id":10667,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[10668],"locationId":196},{"id":10668,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[10669],"locationId":197},{"id":10669,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[10670],"locationId":198},{"id":10670,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10671],"locationId":29},{"id":10671,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[10672],"locationId":199},{"id":10672,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":10673,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10674],"locationId":6},{"id":10674,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10675],"locationId":8},{"id":10675,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10676],"locationId":9},{"id":10676,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10677],"locationId":6},{"id":10677,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10678,10683,10686,10699],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10678,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10679],"locationId":11},{"id":10679,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10680],"locationId":12},{"id":10680,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10681],"locationId":13},{"id":10681,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10682,10694],"locationId":14},{"id":10682,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[10684],"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":10684,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[10685],"locationId":25},{"id":10685,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":10694,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":10683,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10686,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10687],"locationId":84},{"id":10687,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10688],"locationId":6},{"id":10688,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10689],"locationId":85},{"id":10689,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10690],"locationId":86},{"id":10690,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10691],"locationId":87},{"id":10691,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10692],"locationId":88},{"id":10692,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10693],"locationId":74},{"id":10693,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[10695],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":10695,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[10696,10703],"locationId":90},{"id":10696,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"children":[10697],"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10697,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[10698],"locationId":97},{"id":10698,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10703,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10699,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10700],"locationId":157},{"id":10700,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[10701],"locationId":164},{"id":10701,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10702],"locationId":29},{"id":10702,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10704,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10705],"locationId":3},{"id":10705,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10706],"locationId":4},{"id":10706,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10707],"locationId":1},{"id":10707,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10708,10793],"locationId":2},{"id":10708,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10709],"locationId":5},{"id":10709,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10710],"locationId":6},{"id":10710,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10711],"locationId":7},{"id":10711,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10712],"locationId":6},{"id":10712,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10713],"locationId":8},{"id":10713,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10714],"locationId":9},{"id":10714,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10715],"locationId":6},{"id":10715,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10716,10717,10726],"locationId":10},{"id":10716,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10717,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10718],"locationId":84},{"id":10718,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10719],"locationId":6},{"id":10719,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10720],"locationId":85},{"id":10720,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10721],"locationId":86},{"id":10721,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10722],"locationId":87},{"id":10722,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10723],"locationId":88},{"id":10723,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10724],"locationId":74},{"id":10724,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10725],"locationId":89},{"id":10725,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[10735,10736,10741,10744],"positionTicks":[{"line":110,"ticks":1,"startLocationId":490,"endLocationId":491},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":10735,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10736,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10737],"locationId":117},{"id":10737,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10738],"locationId":118},{"id":10738,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[10739],"locationId":123},{"id":10739,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10740],"locationId":29},{"id":10740,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10741,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10742],"locationId":40},{"id":10742,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10743],"locationId":29},{"id":10743,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10744,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10745],"locationId":109},{"id":10745,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10746],"locationId":109},{"id":10746,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10747],"locationId":109},{"id":10747,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10748],"locationId":109},{"id":10748,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10749],"locationId":109},{"id":10749,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10750],"locationId":109},{"id":10750,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10751],"locationId":109},{"id":10751,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10752],"locationId":109},{"id":10752,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10753],"locationId":109},{"id":10753,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10754],"locationId":109},{"id":10754,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10755],"locationId":109},{"id":10755,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10756],"locationId":109},{"id":10756,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10757],"locationId":109},{"id":10757,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10758],"locationId":109},{"id":10758,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10759],"locationId":109},{"id":10759,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10760],"locationId":109},{"id":10760,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10761],"locationId":109},{"id":10761,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10762],"locationId":109},{"id":10762,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10763],"locationId":109},{"id":10763,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10764],"locationId":109},{"id":10764,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10765],"locationId":109},{"id":10765,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10766],"locationId":109},{"id":10766,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10767],"locationId":109},{"id":10767,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10768],"locationId":109},{"id":10768,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10769],"locationId":109},{"id":10769,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10770],"locationId":109},{"id":10770,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10771],"locationId":109},{"id":10771,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10772],"locationId":109},{"id":10772,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10773],"locationId":109},{"id":10773,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10774],"locationId":109},{"id":10774,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10775],"locationId":109},{"id":10775,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10776],"locationId":109},{"id":10776,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10777],"locationId":109},{"id":10777,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10778],"locationId":109},{"id":10778,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10779],"locationId":109},{"id":10779,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10780],"locationId":109},{"id":10780,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10781],"locationId":109},{"id":10781,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10782],"locationId":109},{"id":10782,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10783],"locationId":109},{"id":10783,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10784],"locationId":109},{"id":10784,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10785],"locationId":109},{"id":10785,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10786],"locationId":109},{"id":10786,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10787],"locationId":109},{"id":10787,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10788],"locationId":109},{"id":10788,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10789],"locationId":109},{"id":10789,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10790],"locationId":109},{"id":10790,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10791],"locationId":109},{"id":10791,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10792],"locationId":109},{"id":10792,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10726,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10727],"locationId":11},{"id":10727,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10728],"locationId":12},{"id":10728,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10729],"locationId":13},{"id":10729,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10730,10733,10734],"locationId":14},{"id":10730,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[10731],"locationId":15},{"id":10731,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[10732],"locationId":25},{"id":10732,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":10733,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":10734,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":10793,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10794],"locationId":3},{"id":10794,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10795],"locationId":4},{"id":10795,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10796],"locationId":1},{"id":10796,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10797,10828],"locationId":2},{"id":10797,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10798],"locationId":5},{"id":10798,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10799],"locationId":6},{"id":10799,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10800],"locationId":7},{"id":10800,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10801],"locationId":6},{"id":10801,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10802],"locationId":8},{"id":10802,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10803],"locationId":9},{"id":10803,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10804],"locationId":6},{"id":10804,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10805,10817,10820,10823],"locationId":10},{"id":10805,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10806],"locationId":84},{"id":10806,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10807],"locationId":6},{"id":10807,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10808],"locationId":85},{"id":10808,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10809],"locationId":86},{"id":10809,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10810],"locationId":87},{"id":10810,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10811],"locationId":88},{"id":10811,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10812],"locationId":74},{"id":10812,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10813],"locationId":89},{"id":10813,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[10814,10818,10822],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":10814,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10815],"locationId":117},{"id":10815,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10816],"locationId":118},{"id":10816,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":2,"positionTicks":[{"line":791,"ticks":2,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":10818,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10819],"locationId":109},{"id":10819,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10822,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":10817,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10820,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"children":[10821],"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150},{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":10821,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":10823,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10824],"locationId":11},{"id":10824,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10825],"locationId":12},{"id":10825,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10826],"locationId":13},{"id":10826,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10827],"locationId":14},{"id":10827,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":10828,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10829],"locationId":3},{"id":10829,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10830],"locationId":4},{"id":10830,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10831],"locationId":1},{"id":10831,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10832,10873],"locationId":2},{"id":10832,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10833],"locationId":5},{"id":10833,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10834],"locationId":6},{"id":10834,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10835],"locationId":7},{"id":10835,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10836],"locationId":6},{"id":10836,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10837,10862],"locationId":8},{"id":10837,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10838],"locationId":9},{"id":10838,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10839],"locationId":6},{"id":10839,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10840,10856,10872],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10840,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10841],"locationId":84},{"id":10841,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10842],"locationId":6},{"id":10842,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10843],"locationId":85},{"id":10843,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10844],"locationId":86},{"id":10844,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10845],"locationId":87},{"id":10845,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10846],"locationId":88},{"id":10846,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10847],"locationId":74},{"id":10847,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10848,10860],"locationId":89},{"id":10848,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[10849,10852],"locationId":90},{"id":10849,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10850],"locationId":40},{"id":10850,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10851],"locationId":29},{"id":10851,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10852,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[10853],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10853,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10854],"locationId":114},{"id":10854,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10855],"locationId":114},{"id":10855,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":10860,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":10856,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10857,10861],"locationId":11},{"id":10857,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10858],"locationId":12},{"id":10858,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10859],"locationId":13},{"id":10859,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[10868],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":10868,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[10869],"locationId":36},{"id":10869,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10870],"locationId":40},{"id":10870,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10871],"locationId":29},{"id":10871,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10861,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":723,"ticks":1,"startLocationId":712,"endLocationId":713}],"locationId":33},{"id":10872,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":10862,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10863],"locationId":157},{"id":10863,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[10864],"locationId":158},{"id":10864,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10865],"locationId":29},{"id":10865,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[10866],"locationId":159},{"id":10866,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[10867],"locationId":160},{"id":10867,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":10873,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10874],"locationId":3},{"id":10874,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10875],"locationId":4},{"id":10875,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10876],"locationId":1},{"id":10876,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10877,10926],"locationId":2},{"id":10877,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10878],"locationId":5},{"id":10878,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10879],"locationId":6},{"id":10879,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10880],"locationId":7},{"id":10880,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10881],"locationId":6},{"id":10881,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10882],"locationId":8},{"id":10882,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10883],"locationId":9},{"id":10883,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10884],"locationId":6},{"id":10884,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[10885,10886],"locationId":10},{"id":10885,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":10886,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10887],"locationId":84},{"id":10887,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10888],"locationId":6},{"id":10888,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10889],"locationId":85},{"id":10889,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10890],"locationId":86},{"id":10890,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10891],"locationId":87},{"id":10891,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10892],"locationId":88},{"id":10892,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10893],"locationId":74},{"id":10893,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":3,"children":[10894],"positionTicks":[{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":10894,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[10895,10898],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":27,"ticks":2,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":10895,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10896],"locationId":40},{"id":10896,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10897],"locationId":29},{"id":10897,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10898,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[10899],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10899,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10900],"locationId":109},{"id":10900,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10901],"locationId":109},{"id":10901,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10902,10907],"locationId":109},{"id":10902,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10903],"locationId":114},{"id":10903,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10904],"locationId":114},{"id":10904,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10905],"locationId":114},{"id":10905,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[10906],"locationId":114},{"id":10906,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":10907,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10908],"locationId":109},{"id":10908,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10909],"locationId":109},{"id":10909,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10910],"locationId":109},{"id":10910,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10911],"locationId":109},{"id":10911,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10912],"locationId":109},{"id":10912,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10913],"locationId":109},{"id":10913,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10914],"locationId":109},{"id":10914,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10915],"locationId":109},{"id":10915,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10916],"locationId":109},{"id":10916,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10917],"locationId":109},{"id":10917,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10918],"locationId":109},{"id":10918,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10919],"locationId":109},{"id":10919,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10920],"locationId":109},{"id":10920,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10921],"locationId":109},{"id":10921,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10922],"locationId":109},{"id":10922,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10923],"locationId":109},{"id":10923,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10924],"locationId":109},{"id":10924,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10925],"locationId":109},{"id":10925,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":10926,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10927],"locationId":3},{"id":10927,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10928],"locationId":4},{"id":10928,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10929],"locationId":1},{"id":10929,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10930,10965],"locationId":2},{"id":10930,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10931],"locationId":5},{"id":10931,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10932],"locationId":6},{"id":10932,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10933],"locationId":7},{"id":10933,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10934],"locationId":6},{"id":10934,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10935,10947],"locationId":8},{"id":10935,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10936],"locationId":9},{"id":10936,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10937],"locationId":6},{"id":10937,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10938,10955,10957],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10938,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10939],"locationId":84},{"id":10939,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10940],"locationId":6},{"id":10940,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10941],"locationId":85},{"id":10941,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10942],"locationId":86},{"id":10942,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10943],"locationId":87},{"id":10943,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10944],"locationId":88},{"id":10944,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10945],"locationId":74},{"id":10945,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[10946],"locationId":89},{"id":10946,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":4,"children":[10950,10956],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":10950,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[10951],"locationId":117},{"id":10951,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[10952],"locationId":118},{"id":10952,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[10953],"locationId":123},{"id":10953,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10954],"locationId":29},{"id":10954,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10956,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":10955,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":10957,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10958],"locationId":11},{"id":10958,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10959],"locationId":12},{"id":10959,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10960],"locationId":13},{"id":10960,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10961],"locationId":14},{"id":10961,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[10962],"locationId":36},{"id":10962,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[10963],"locationId":40},{"id":10963,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10964],"locationId":29},{"id":10964,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10947,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[10948],"locationId":157},{"id":10948,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[10949],"locationId":164},{"id":10949,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":10965,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[10966],"locationId":3},{"id":10966,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[10967],"locationId":4},{"id":10967,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[10968],"locationId":1},{"id":10968,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[10969,11017],"locationId":2},{"id":10969,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[10970],"locationId":5},{"id":10970,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10971],"locationId":6},{"id":10971,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[10972],"locationId":7},{"id":10972,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10973],"locationId":6},{"id":10973,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[10974],"locationId":8},{"id":10974,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[10975],"locationId":9},{"id":10975,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10976],"locationId":6},{"id":10976,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[10977,10988],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":10977,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[10978],"locationId":11},{"id":10978,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[10979],"locationId":12},{"id":10979,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[10980],"locationId":13},{"id":10980,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[10981],"locationId":14},{"id":10981,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[10982],"locationId":46},{"id":10982,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[10983],"locationId":54},{"id":10983,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[10984],"locationId":55},{"id":10984,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[10985],"locationId":56},{"id":10985,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[10986],"locationId":28},{"id":10986,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[10987],"locationId":29},{"id":10987,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":10988,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[10989],"locationId":84},{"id":10989,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[10990],"locationId":6},{"id":10990,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[10991],"locationId":85},{"id":10991,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[10992],"locationId":86},{"id":10992,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[10993],"locationId":87},{"id":10993,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[10994],"locationId":88},{"id":10994,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[10995],"locationId":74},{"id":10995,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[10996,11003],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":10996,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[10997,10999,11010,11015],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":10997,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[10998],"locationId":109},{"id":10998,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[11006],"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":11006,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11007],"locationId":109},{"id":11007,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11008],"locationId":114},{"id":11008,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11009],"locationId":114},{"id":11009,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":10999,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[11000],"locationId":239},{"id":11000,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":0,"children":[11001],"locationId":240},{"id":11001,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":0,"children":[11002],"locationId":262},{"id":11002,"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":418,"endLocationId":419}],"locationId":417},{"id":11010,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11011],"locationId":117},{"id":11011,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11012],"locationId":118},{"id":11012,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11013],"locationId":123},{"id":11013,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11014],"locationId":29},{"id":11014,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11015,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11016],"locationId":97},{"id":11016,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11003,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":0,"children":[11004],"locationId":129},{"id":11004,"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"hitCount":0,"children":[11005],"locationId":308},{"id":11005,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":269,"ticks":1,"startLocationId":311,"endLocationId":312}],"locationId":69},{"id":11017,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11018],"locationId":3},{"id":11018,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11019],"locationId":4},{"id":11019,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11020],"locationId":1},{"id":11020,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11021,11055],"locationId":2},{"id":11021,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11022],"locationId":5},{"id":11022,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11023],"locationId":6},{"id":11023,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11024],"locationId":7},{"id":11024,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11025],"locationId":6},{"id":11025,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11026],"locationId":8},{"id":11026,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11027],"locationId":9},{"id":11027,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11028],"locationId":6},{"id":11028,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[11029,11046,11050],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":11029,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11030],"locationId":84},{"id":11030,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11031],"locationId":6},{"id":11031,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11032],"locationId":85},{"id":11032,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11033],"locationId":86},{"id":11033,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11034],"locationId":87},{"id":11034,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11035],"locationId":88},{"id":11035,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11036],"locationId":74},{"id":11036,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11037,11047],"locationId":89},{"id":11037,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[11038,11043,11045],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":11038,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11039],"locationId":117},{"id":11039,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11040],"locationId":118},{"id":11040,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11041],"locationId":123},{"id":11041,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11042],"locationId":29},{"id":11042,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11043,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11044],"locationId":109},{"id":11044,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11045,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[11048],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":11048,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11049],"locationId":97},{"id":11049,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":11047,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":11046,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":11050,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11051],"locationId":11},{"id":11051,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11052],"locationId":12},{"id":11052,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11053],"locationId":13},{"id":11053,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11054],"locationId":14},{"id":11054,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":11055,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11056],"locationId":3},{"id":11056,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11057],"locationId":4},{"id":11057,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11058],"locationId":1},{"id":11058,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11059,11101],"locationId":2},{"id":11059,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11060],"locationId":5},{"id":11060,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11061],"locationId":6},{"id":11061,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11062],"locationId":7},{"id":11062,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11063],"locationId":6},{"id":11063,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11064],"locationId":8},{"id":11064,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11065],"locationId":9},{"id":11065,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11066],"locationId":6},{"id":11066,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11067,11076,11088,11099],"locationId":10},{"id":11067,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11068],"locationId":84},{"id":11068,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11069],"locationId":6},{"id":11069,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11070],"locationId":85},{"id":11070,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11071],"locationId":86},{"id":11071,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11072],"locationId":87},{"id":11072,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11073],"locationId":88},{"id":11073,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11074],"locationId":74},{"id":11074,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11075],"locationId":89},{"id":11075,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[11077,11082,11093],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":11077,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11078],"locationId":117},{"id":11078,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11079],"locationId":118},{"id":11079,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11080],"locationId":123},{"id":11080,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11081],"locationId":29},{"id":11081,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11082,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11083],"locationId":109},{"id":11083,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11084],"locationId":109},{"id":11084,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11085],"locationId":109},{"id":11085,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11086],"locationId":114},{"id":11086,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11087],"locationId":114},{"id":11087,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11093,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[11094],"locationId":102},{"id":11094,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[11095],"locationId":247},{"id":11095,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[11096],"locationId":248},{"id":11096,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[11097],"locationId":249},{"id":11097,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":82,"ticks":1,"startLocationId":251,"endLocationId":252}],"locationId":250},{"id":11076,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":11088,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11089],"locationId":11},{"id":11089,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11090],"locationId":12},{"id":11090,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11091],"locationId":13},{"id":11091,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11092,11098],"locationId":14},{"id":11092,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":11098,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":11099,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[11100],"locationId":151},{"id":11100,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":441,"ticks":1,"startLocationId":584,"endLocationId":585}],"locationId":151},{"id":11101,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11102],"locationId":3},{"id":11102,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11103],"locationId":4},{"id":11103,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11104],"locationId":1},{"id":11104,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11105,11136],"locationId":2},{"id":11105,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11106],"locationId":5},{"id":11106,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11107],"locationId":6},{"id":11107,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11108],"locationId":7},{"id":11108,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11109],"locationId":6},{"id":11109,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11110],"locationId":8},{"id":11110,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11111],"locationId":9},{"id":11111,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11112],"locationId":6},{"id":11112,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11113,11114],"locationId":10},{"id":11113,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":11114,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11115],"locationId":84},{"id":11115,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11116],"locationId":6},{"id":11116,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11117],"locationId":85},{"id":11117,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11118],"locationId":86},{"id":11118,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11119],"locationId":87},{"id":11119,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11120],"locationId":88},{"id":11120,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11121],"locationId":74},{"id":11121,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[11122,11124],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11122,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[11123,11127,11130],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":11123,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[11125],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11125,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11126],"locationId":97},{"id":11126,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11127,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11128],"locationId":117},{"id":11128,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[11129],"positionTicks":[{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":11129,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":11130,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11131],"locationId":109},{"id":11131,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11132],"locationId":109},{"id":11132,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11133],"locationId":109},{"id":11133,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11134],"locationId":109},{"id":11134,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11135],"locationId":109},{"id":11135,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11124,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":11136,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11137],"locationId":3},{"id":11137,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11138],"locationId":4},{"id":11138,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11139],"locationId":1},{"id":11139,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11140,11179],"locationId":2},{"id":11140,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11141],"locationId":5},{"id":11141,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11142],"locationId":6},{"id":11142,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11143],"locationId":7},{"id":11143,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11144],"locationId":6},{"id":11144,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11145],"locationId":8},{"id":11145,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11146],"locationId":9},{"id":11146,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11147],"locationId":6},{"id":11147,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[11148,11159,11168],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":11148,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11149],"locationId":84},{"id":11149,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11150],"locationId":6},{"id":11150,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11151],"locationId":85},{"id":11151,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11152],"locationId":86},{"id":11152,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11153],"locationId":87},{"id":11153,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11154],"locationId":88},{"id":11154,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11155],"locationId":74},{"id":11155,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[11156],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11156,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11157,11160,11163],"locationId":90},{"id":11157,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11158,11175],"locationId":109},{"id":11158,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[11164],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11164,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11165],"locationId":114},{"id":11165,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11166],"locationId":114},{"id":11166,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11167],"locationId":114},{"id":11167,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11175,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11176],"locationId":114},{"id":11176,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11177],"locationId":114},{"id":11177,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11178],"locationId":114},{"id":11178,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":11160,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11161],"locationId":40},{"id":11161,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11162],"locationId":29},{"id":11162,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11163,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11159,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":11168,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11169],"locationId":11},{"id":11169,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11170],"locationId":12},{"id":11170,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11171],"locationId":13},{"id":11171,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11172,11174],"locationId":14},{"id":11172,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[11173],"locationId":15},{"id":11173,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":11174,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222}],"locationId":36},{"id":11179,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11180],"locationId":3},{"id":11180,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11181],"locationId":4},{"id":11181,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11182],"locationId":1},{"id":11182,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11183,11220],"locationId":2},{"id":11183,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11184],"locationId":5},{"id":11184,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11185],"locationId":6},{"id":11185,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11186,11191],"locationId":7},{"id":11186,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[11187],"locationId":196},{"id":11187,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[11188],"locationId":197},{"id":11188,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[11189],"locationId":198},{"id":11189,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11190],"locationId":29},{"id":11190,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11191,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11192],"locationId":6},{"id":11192,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11193,11201],"locationId":8},{"id":11193,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11194],"locationId":9},{"id":11194,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11195],"locationId":6},{"id":11195,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11196,11200,11204],"locationId":10},{"id":11196,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11197],"locationId":11},{"id":11197,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11198],"locationId":12},{"id":11198,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11199],"locationId":13},{"id":11199,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":11200,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":11204,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11205],"locationId":84},{"id":11205,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11206],"locationId":6},{"id":11206,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11207],"locationId":85},{"id":11207,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11208],"locationId":86},{"id":11208,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11209],"locationId":87},{"id":11209,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11210],"locationId":88},{"id":11210,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11211],"locationId":74},{"id":11211,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[11212],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11212,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11213,11214,11215],"locationId":90},{"id":11213,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11214,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11215,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11216],"locationId":117},{"id":11216,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11217],"locationId":118},{"id":11217,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11218],"locationId":123},{"id":11218,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11219],"locationId":29},{"id":11219,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11201,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[11202],"locationId":157},{"id":11202,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[11203],"locationId":158},{"id":11203,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":11220,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11221],"locationId":3},{"id":11221,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11222],"locationId":4},{"id":11222,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11223],"locationId":1},{"id":11223,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11224,11272],"locationId":2},{"id":11224,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11225],"locationId":5},{"id":11225,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11226],"locationId":6},{"id":11226,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11227],"locationId":7},{"id":11227,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11228],"locationId":6},{"id":11228,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":1,"children":[11229],"positionTicks":[{"line":622,"ticks":1,"startLocationId":714,"endLocationId":715}],"locationId":8},{"id":11229,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11230],"locationId":9},{"id":11230,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11231],"locationId":6},{"id":11231,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11232,11243,11249],"locationId":10},{"id":11232,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11233],"locationId":84},{"id":11233,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11234],"locationId":6},{"id":11234,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11235],"locationId":85},{"id":11235,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11236],"locationId":86},{"id":11236,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11237],"locationId":87},{"id":11237,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11238],"locationId":88},{"id":11238,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11239],"locationId":74},{"id":11239,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11240],"locationId":89},{"id":11240,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11241,11251],"locationId":90},{"id":11241,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[11242,11268],"locationId":102},{"id":11242,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":11268,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[11269],"locationId":247},{"id":11269,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[11270],"locationId":248},{"id":11270,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[11271],"locationId":249},{"id":11271,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":82,"ticks":1,"startLocationId":251,"endLocationId":252}],"locationId":250},{"id":11251,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11252],"locationId":109},{"id":11252,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11253],"locationId":109},{"id":11253,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11254],"locationId":109},{"id":11254,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11255],"locationId":109},{"id":11255,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11256],"locationId":109},{"id":11256,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11257],"locationId":109},{"id":11257,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11258],"locationId":114},{"id":11258,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11259],"locationId":114},{"id":11259,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11260],"locationId":114},{"id":11260,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11261],"locationId":114},{"id":11261,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11262],"locationId":114},{"id":11262,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11263],"locationId":114},{"id":11263,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11264],"locationId":114},{"id":11264,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11265],"locationId":114},{"id":11265,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11266],"locationId":114},{"id":11266,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11267],"locationId":114},{"id":11267,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":11243,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11244],"locationId":11},{"id":11244,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11245],"locationId":12},{"id":11245,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11246],"locationId":13},{"id":11246,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11247,11250],"locationId":14},{"id":11247,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[11248],"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":11248,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":11250,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":633,"ticks":1,"startLocationId":527,"endLocationId":255}],"locationId":36},{"id":11249,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":11272,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11273],"locationId":3},{"id":11273,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11274],"locationId":4},{"id":11274,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11275],"locationId":1},{"id":11275,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11276,11321],"locationId":2},{"id":11276,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11277],"locationId":5},{"id":11277,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11278],"locationId":6},{"id":11278,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11279],"locationId":7},{"id":11279,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11280],"locationId":6},{"id":11280,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11281],"locationId":8},{"id":11281,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11282],"locationId":9},{"id":11282,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11283],"locationId":6},{"id":11283,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11284,11296],"locationId":10},{"id":11284,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11285],"locationId":84},{"id":11285,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11286],"locationId":6},{"id":11286,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11287],"locationId":85},{"id":11287,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11288],"locationId":86},{"id":11288,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11289],"locationId":87},{"id":11289,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11290],"locationId":88},{"id":11290,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11291],"locationId":74},{"id":11291,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11292],"locationId":89},{"id":11292,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[11293,11306,11312],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":11293,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11294],"locationId":117},{"id":11294,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11295,11303],"locationId":118},{"id":11295,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":11303,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11304],"locationId":123},{"id":11304,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11305],"locationId":29},{"id":11305,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11306,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11307],"locationId":109},{"id":11307,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11308],"locationId":109},{"id":11308,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11309],"locationId":109},{"id":11309,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11310],"locationId":109},{"id":11310,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11311],"locationId":109},{"id":11311,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11312,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11296,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11297],"locationId":11},{"id":11297,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11298],"locationId":12},{"id":11298,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11299],"locationId":13},{"id":11299,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11300,11313,11320],"locationId":14},{"id":11300,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[11301],"locationId":15},{"id":11301,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[11302],"locationId":25},{"id":11302,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":2,"positionTicks":[{"line":338,"ticks":2,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":11313,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[11314],"locationId":46},{"id":11314,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[11315],"locationId":54},{"id":11315,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[11316],"locationId":55},{"id":11316,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[11317],"locationId":56},{"id":11317,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[11318],"locationId":28},{"id":11318,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11319],"locationId":29},{"id":11319,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11320,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":11321,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11322],"locationId":3},{"id":11322,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11323],"locationId":4},{"id":11323,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11324],"locationId":1},{"id":11324,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11325,11368],"locationId":2},{"id":11325,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11326],"locationId":5},{"id":11326,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11327],"locationId":6},{"id":11327,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11328,11333],"locationId":7},{"id":11328,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[11329],"locationId":196},{"id":11329,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[11330],"locationId":197},{"id":11330,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[11331],"locationId":198},{"id":11331,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11332],"locationId":29},{"id":11332,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11333,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11334],"locationId":6},{"id":11334,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":1,"children":[11335],"positionTicks":[{"line":485,"ticks":1,"startLocationId":243,"endLocationId":244}],"locationId":8},{"id":11335,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11336],"locationId":9},{"id":11336,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11337],"locationId":6},{"id":11337,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11338,11346,11347,11367],"locationId":10},{"id":11338,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11339],"locationId":11},{"id":11339,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11340],"locationId":12},{"id":11340,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11341],"locationId":13},{"id":11341,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11342,11359],"locationId":14},{"id":11342,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[11343],"locationId":36},{"id":11343,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11344],"locationId":40},{"id":11344,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11345],"locationId":29},{"id":11345,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11359,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[11360],"locationId":15},{"id":11360,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[11361],"locationId":25},{"id":11361,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":11346,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":11347,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11348],"locationId":84},{"id":11348,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11349],"locationId":6},{"id":11349,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11350],"locationId":85},{"id":11350,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11351],"locationId":86},{"id":11351,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11352],"locationId":87},{"id":11352,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11353],"locationId":88},{"id":11353,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11354],"locationId":74},{"id":11354,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[11355],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11355,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11356,11362],"locationId":90},{"id":11356,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11357],"locationId":97},{"id":11357,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11358],"locationId":97},{"id":11358,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11362,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11363],"locationId":117},{"id":11363,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11364],"locationId":118},{"id":11364,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11365],"locationId":123},{"id":11365,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11366],"locationId":29},{"id":11366,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11367,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":11368,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11369],"locationId":3},{"id":11369,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11370],"locationId":4},{"id":11370,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11371],"locationId":1},{"id":11371,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11372,11424],"locationId":2},{"id":11372,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11373],"locationId":5},{"id":11373,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11374],"locationId":6},{"id":11374,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11375],"locationId":7},{"id":11375,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11376],"locationId":6},{"id":11376,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11377,11384],"locationId":8},{"id":11377,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[11378],"locationId":157},{"id":11378,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[11379],"locationId":158},{"id":11379,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11380],"locationId":29},{"id":11380,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[11381],"locationId":159},{"id":11381,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[11382],"locationId":198},{"id":11382,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11383],"locationId":29},{"id":11383,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11384,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11385],"locationId":9},{"id":11385,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11386],"locationId":6},{"id":11386,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[11387,11401,11409],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":11387,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11388],"locationId":84},{"id":11388,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11389],"locationId":6},{"id":11389,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11390],"locationId":85},{"id":11390,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11391],"locationId":86},{"id":11391,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11392],"locationId":87},{"id":11392,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11393],"locationId":88},{"id":11393,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11394],"locationId":74},{"id":11394,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11395],"locationId":89},{"id":11395,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11396,11410],"locationId":90},{"id":11396,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11397],"locationId":117},{"id":11397,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11398],"locationId":118},{"id":11398,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11399],"locationId":123},{"id":11399,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11400],"locationId":29},{"id":11400,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11410,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11411,11415],"locationId":109},{"id":11411,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11412],"locationId":109},{"id":11412,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11413],"locationId":114},{"id":11413,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11414],"locationId":114},{"id":11414,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11415,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11416],"locationId":114},{"id":11416,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11417],"locationId":114},{"id":11417,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11418],"locationId":114},{"id":11418,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11419],"locationId":114},{"id":11419,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11420],"locationId":114},{"id":11420,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11421],"locationId":114},{"id":11421,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11422],"locationId":114},{"id":11422,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11423],"locationId":114},{"id":11423,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11401,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11402],"locationId":11},{"id":11402,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11403],"locationId":12},{"id":11403,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11404],"locationId":13},{"id":11404,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11405],"locationId":14},{"id":11405,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"children":[11406],"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":11406,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11407],"locationId":40},{"id":11407,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11408],"locationId":29},{"id":11408,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11409,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":11424,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11425],"locationId":3},{"id":11425,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11426],"locationId":4},{"id":11426,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11427],"locationId":1},{"id":11427,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11428,11468],"locationId":2},{"id":11428,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11429],"locationId":5},{"id":11429,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11430],"locationId":6},{"id":11430,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11431],"locationId":7},{"id":11431,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11432],"locationId":6},{"id":11432,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11433,11462],"locationId":8},{"id":11433,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11434],"locationId":9},{"id":11434,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11435],"locationId":6},{"id":11435,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11436,11446,11461],"locationId":10},{"id":11436,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11437],"locationId":84},{"id":11437,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11438],"locationId":6},{"id":11438,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11439],"locationId":85},{"id":11439,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11440],"locationId":86},{"id":11440,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11441],"locationId":87},{"id":11441,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11442],"locationId":88},{"id":11442,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11443],"locationId":74},{"id":11443,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[11444,11460],"positionTicks":[{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":11444,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[11445,11457],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":11445,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[11453],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11453,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11454],"locationId":109},{"id":11454,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11455],"locationId":109},{"id":11455,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11456],"locationId":109},{"id":11456,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11457,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11458],"locationId":97},{"id":11458,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11459],"locationId":97},{"id":11459,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11460,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":187,"ticks":1,"startLocationId":306,"endLocationId":307}],"locationId":129},{"id":11446,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11447],"locationId":11},{"id":11447,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11448],"locationId":12},{"id":11448,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11449],"locationId":13},{"id":11449,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11450],"locationId":14},{"id":11450,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[11451],"locationId":15},{"id":11451,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[11452],"locationId":25},{"id":11452,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":11461,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":11462,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[11463],"locationId":157},{"id":11463,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[11464],"locationId":158},{"id":11464,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11465],"locationId":29},{"id":11465,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[11466],"locationId":159},{"id":11466,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[11467],"locationId":160},{"id":11467,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":11468,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11469],"locationId":3},{"id":11469,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11470],"locationId":4},{"id":11470,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11471],"locationId":1},{"id":11471,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11472,11511],"locationId":2},{"id":11472,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11473],"locationId":5},{"id":11473,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11474],"locationId":6},{"id":11474,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11475],"locationId":7},{"id":11475,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11476],"locationId":6},{"id":11476,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11477,11483],"locationId":8},{"id":11477,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[11478],"locationId":157},{"id":11478,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[11479],"locationId":158},{"id":11479,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11480],"locationId":29},{"id":11480,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[11481],"locationId":159},{"id":11481,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[11482],"locationId":160},{"id":11482,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":11483,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11484],"locationId":9},{"id":11484,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11485],"locationId":6},{"id":11485,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11486,11502],"locationId":10},{"id":11486,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11487],"locationId":84},{"id":11487,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11488],"locationId":6},{"id":11488,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11489],"locationId":85},{"id":11489,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11490],"locationId":86},{"id":11490,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11491],"locationId":87},{"id":11491,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11492],"locationId":88},{"id":11492,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11493],"locationId":74},{"id":11493,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":4,"children":[11494,11495,11496],"positionTicks":[{"line":39,"ticks":4,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11494,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":11495,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":11496,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[11497,11510],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":11497,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11498],"locationId":117},{"id":11498,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11499],"locationId":118},{"id":11499,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11500],"locationId":123},{"id":11500,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11501],"locationId":29},{"id":11501,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11510,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11502,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11503],"locationId":11},{"id":11503,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11504],"locationId":12},{"id":11504,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11505],"locationId":13},{"id":11505,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11506],"locationId":14},{"id":11506,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[11507],"locationId":36},{"id":11507,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11508],"locationId":40},{"id":11508,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11509],"locationId":29},{"id":11509,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11511,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11512],"locationId":3},{"id":11512,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11513],"locationId":4},{"id":11513,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11514],"locationId":1},{"id":11514,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11515,11559],"locationId":2},{"id":11515,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11516],"locationId":5},{"id":11516,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11517],"locationId":6},{"id":11517,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11518],"locationId":7},{"id":11518,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11519],"locationId":6},{"id":11519,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11520,11551],"locationId":8},{"id":11520,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11521],"locationId":9},{"id":11521,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11522],"locationId":6},{"id":11522,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11523,11524],"locationId":10},{"id":11523,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":11524,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11525],"locationId":84},{"id":11525,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11526],"locationId":6},{"id":11526,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11527],"locationId":85},{"id":11527,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11528],"locationId":86},{"id":11528,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11529],"locationId":87},{"id":11529,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11530],"locationId":88},{"id":11530,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11531],"locationId":74},{"id":11531,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[11532],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11532,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11533,11538,11541],"locationId":90},{"id":11533,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11534],"locationId":117},{"id":11534,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11535],"locationId":118},{"id":11535,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11536],"locationId":123},{"id":11536,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11537],"locationId":29},{"id":11537,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11538,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11539],"locationId":40},{"id":11539,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11540],"locationId":29},{"id":11540,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11541,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11542],"locationId":109},{"id":11542,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11543],"locationId":109},{"id":11543,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11544,11556],"locationId":109},{"id":11544,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11545],"locationId":109},{"id":11545,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11546],"locationId":109},{"id":11546,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11547],"locationId":114},{"id":11547,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11548],"locationId":114},{"id":11548,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11549],"locationId":114},{"id":11549,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11550],"locationId":114},{"id":11550,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11556,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11557],"locationId":114},{"id":11557,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11558],"locationId":114},{"id":11558,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11551,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[11552],"locationId":157},{"id":11552,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[11553],"locationId":158},{"id":11553,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11554],"locationId":29},{"id":11554,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[11555],"locationId":159},{"id":11555,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":81,"ticks":1,"startLocationId":354,"endLocationId":355}],"locationId":160},{"id":11559,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11560],"locationId":3},{"id":11560,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11561],"locationId":4},{"id":11561,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11562],"locationId":1},{"id":11562,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11563,11594],"locationId":2},{"id":11563,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11564],"locationId":5},{"id":11564,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11565],"locationId":6},{"id":11565,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11566],"locationId":7},{"id":11566,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11567],"locationId":6},{"id":11567,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11568],"locationId":8},{"id":11568,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11569],"locationId":9},{"id":11569,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11570],"locationId":6},{"id":11570,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11571,11575,11576],"locationId":10},{"id":11571,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11572],"locationId":12},{"id":11572,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11573],"locationId":13},{"id":11573,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11574],"locationId":14},{"id":11574,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":668,"ticks":1,"startLocationId":48,"endLocationId":156}],"locationId":46},{"id":11575,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":11576,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11577],"locationId":84},{"id":11577,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11578],"locationId":6},{"id":11578,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11579],"locationId":85},{"id":11579,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11580],"locationId":86},{"id":11580,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11581],"locationId":87},{"id":11581,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11582],"locationId":88},{"id":11582,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11583],"locationId":74},{"id":11583,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11584],"locationId":89},{"id":11584,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[11585,11587],"positionTicks":[{"line":26,"ticks":1,"startLocationId":191,"endLocationId":370},{"line":791,"ticks":1,"startLocationId":494,"endLocationId":495}],"locationId":90},{"id":11585,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"children":[11586,11591],"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11586,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[11588],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11588,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11589],"locationId":114},{"id":11589,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11590],"locationId":114},{"id":11590,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11591,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11592],"locationId":109},{"id":11592,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11593],"locationId":109},{"id":11593,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11587,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11594,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11595],"locationId":3},{"id":11595,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11596],"locationId":4},{"id":11596,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11597],"locationId":1},{"id":11597,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11598,11627],"locationId":2},{"id":11598,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11599],"locationId":5},{"id":11599,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11600],"locationId":6},{"id":11600,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11601,11626],"locationId":7},{"id":11601,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11602],"locationId":6},{"id":11602,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11603],"locationId":8},{"id":11603,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11604],"locationId":9},{"id":11604,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11605],"locationId":6},{"id":11605,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11606,11620],"locationId":10},{"id":11606,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11607],"locationId":84},{"id":11607,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11608],"locationId":6},{"id":11608,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11609],"locationId":85},{"id":11609,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11610],"locationId":86},{"id":11610,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11611],"locationId":87},{"id":11611,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11612],"locationId":88},{"id":11612,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11613],"locationId":74},{"id":11613,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[11614,11619],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11614,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[11615,11618],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210},{"line":791,"ticks":1,"startLocationId":494,"endLocationId":495}],"locationId":90},{"id":11615,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11616],"locationId":40},{"id":11616,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[11617],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":11617,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11618,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":1,"positionTicks":[{"line":254,"ticks":1,"startLocationId":106,"endLocationId":716}],"locationId":102},{"id":11619,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139}],"locationId":129},{"id":11620,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11621],"locationId":11},{"id":11621,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11622],"locationId":12},{"id":11622,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11623],"locationId":13},{"id":11623,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11624,11625],"locationId":14},{"id":11624,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":11625,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":11626,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":1,"positionTicks":[{"line":513,"ticks":1,"startLocationId":284,"endLocationId":285}],"locationId":283},{"id":11627,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11628],"locationId":3},{"id":11628,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11629],"locationId":4},{"id":11629,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11630],"locationId":1},{"id":11630,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11631,11660],"locationId":2},{"id":11631,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11632],"locationId":5},{"id":11632,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11633],"locationId":6},{"id":11633,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11634],"locationId":7},{"id":11634,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11635],"locationId":6},{"id":11635,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11636],"locationId":8},{"id":11636,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11637],"locationId":9},{"id":11637,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11638],"locationId":6},{"id":11638,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11639,11651,11652],"locationId":10},{"id":11639,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11640],"locationId":84},{"id":11640,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11641],"locationId":6},{"id":11641,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11642],"locationId":85},{"id":11642,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11643],"locationId":86},{"id":11643,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11644],"locationId":87},{"id":11644,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11645],"locationId":88},{"id":11645,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11646],"locationId":74},{"id":11646,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11647],"locationId":89},{"id":11647,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[11648],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":11648,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11649],"locationId":40},{"id":11649,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11650],"locationId":29},{"id":11650,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11651,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":11652,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11653],"locationId":11},{"id":11653,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11654,11659],"locationId":12},{"id":11654,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11655],"locationId":13},{"id":11655,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[11656],"positionTicks":[{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":11656,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[11657],"locationId":15},{"id":11657,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"children":[11658],"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":11658,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":11659,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":887,"ticks":1,"startLocationId":319,"endLocationId":320}],"locationId":72},{"id":11660,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11661],"locationId":3},{"id":11661,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11662],"locationId":4},{"id":11662,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11663],"locationId":1},{"id":11663,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11664,11701],"locationId":2},{"id":11664,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11665],"locationId":5},{"id":11665,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11666],"locationId":6},{"id":11666,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11667],"locationId":7},{"id":11667,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11668],"locationId":6},{"id":11668,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11669,11693],"locationId":8},{"id":11669,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11670],"locationId":9},{"id":11670,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11671],"locationId":6},{"id":11671,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11672,11673,11682],"locationId":10},{"id":11672,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":11673,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11674],"locationId":84},{"id":11674,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11675],"locationId":6},{"id":11675,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11676],"locationId":85},{"id":11676,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11677],"locationId":86},{"id":11677,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11678],"locationId":87},{"id":11678,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11679],"locationId":88},{"id":11679,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11680],"locationId":74},{"id":11680,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[11681,11689],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11681,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":11689,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11690,11694,11697],"locationId":90},{"id":11690,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11691],"locationId":40},{"id":11691,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11692],"locationId":29},{"id":11692,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11694,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11695],"locationId":109},{"id":11695,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11696],"locationId":109},{"id":11696,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11697,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[11698],"locationId":239},{"id":11698,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":0,"children":[11699],"locationId":240},{"id":11699,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":0,"children":[11700],"locationId":262},{"id":11700,"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":418,"endLocationId":419}],"locationId":417},{"id":11682,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11683],"locationId":11},{"id":11683,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11684],"locationId":12},{"id":11684,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11685],"locationId":13},{"id":11685,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11686],"locationId":14},{"id":11686,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[11687],"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":11687,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[11688],"locationId":25},{"id":11688,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":11693,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":608,"ticks":1,"startLocationId":717,"endLocationId":718}],"locationId":157},{"id":11701,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11702],"locationId":3},{"id":11702,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11703],"locationId":4},{"id":11703,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11704],"locationId":1},{"id":11704,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11705,11739],"locationId":2},{"id":11705,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11706],"locationId":5},{"id":11706,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11707],"locationId":6},{"id":11707,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11708],"locationId":7},{"id":11708,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11709],"locationId":6},{"id":11709,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11710,11712],"locationId":8},{"id":11710,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[11711],"locationId":157},{"id":11711,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":11712,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11713],"locationId":9},{"id":11713,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11714],"locationId":6},{"id":11714,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11715,11724],"locationId":10},{"id":11715,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11716],"locationId":84},{"id":11716,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11717],"locationId":6},{"id":11717,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11718],"locationId":85},{"id":11718,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11719],"locationId":86},{"id":11719,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11720],"locationId":87},{"id":11720,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11721],"locationId":88},{"id":11721,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11722],"locationId":74},{"id":11722,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":3,"children":[11723],"positionTicks":[{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11723,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[11737,11738],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":11737,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11738,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11724,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11725],"locationId":11},{"id":11725,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11726],"locationId":12},{"id":11726,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11727],"locationId":13},{"id":11727,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11728,11735,11736],"locationId":14},{"id":11728,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[11729],"locationId":46},{"id":11729,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[11730],"locationId":54},{"id":11730,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[11731],"locationId":55},{"id":11731,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[11732],"locationId":56},{"id":11732,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[11733],"locationId":28},{"id":11733,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11734],"locationId":29},{"id":11734,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11735,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":11736,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":726,"ticks":2,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":11739,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11740],"locationId":3},{"id":11740,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11741],"locationId":4},{"id":11741,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11742],"locationId":1},{"id":11742,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11743,11776],"locationId":2},{"id":11743,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11744],"locationId":5},{"id":11744,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11745],"locationId":6},{"id":11745,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11746],"locationId":7},{"id":11746,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11747],"locationId":6},{"id":11747,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11748],"locationId":8},{"id":11748,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11749],"locationId":9},{"id":11749,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11750],"locationId":6},{"id":11750,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[11751,11770],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":11751,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11752],"locationId":84},{"id":11752,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11753],"locationId":6},{"id":11753,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11754],"locationId":85},{"id":11754,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11755],"locationId":86},{"id":11755,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11756],"locationId":87},{"id":11756,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11757],"locationId":88},{"id":11757,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11758],"locationId":74},{"id":11758,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[11759,11769],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11759,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[11760,11761],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":11760,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[11764],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11764,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11765],"locationId":109},{"id":11765,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11766],"locationId":109},{"id":11766,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11767],"locationId":109},{"id":11767,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11768],"locationId":114},{"id":11768,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11761,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11762],"locationId":40},{"id":11762,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[11763],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":11763,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11769,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":195,"ticks":1,"startLocationId":132,"endLocationId":133}],"locationId":129},{"id":11770,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11771],"locationId":11},{"id":11771,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11772,11773],"locationId":12},{"id":11772,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369}],"locationId":256},{"id":11773,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11774],"locationId":13},{"id":11774,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11775],"locationId":14},{"id":11775,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":11776,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11777],"locationId":3},{"id":11777,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11778],"locationId":4},{"id":11778,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11779],"locationId":1},{"id":11779,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11780,11822],"locationId":2},{"id":11780,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11781],"locationId":5},{"id":11781,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11782],"locationId":6},{"id":11782,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11783],"locationId":7},{"id":11783,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11784],"locationId":6},{"id":11784,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11785,11798],"locationId":8},{"id":11785,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11786],"locationId":9},{"id":11786,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11787],"locationId":6},{"id":11787,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[11788,11797],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260},{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":11788,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11789],"locationId":84},{"id":11789,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11790],"locationId":6},{"id":11790,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11791],"locationId":85},{"id":11791,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11792],"locationId":86},{"id":11792,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11793],"locationId":87},{"id":11793,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11794],"locationId":88},{"id":11794,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11795],"locationId":74},{"id":11795,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11796,11814],"locationId":89},{"id":11796,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[11807,11811,11815,11818],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":11807,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11808],"locationId":97},{"id":11808,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11809],"locationId":97},{"id":11809,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11810],"locationId":97},{"id":11810,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":11811,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11812],"locationId":40},{"id":11812,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11813],"locationId":29},{"id":11813,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11815,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11816],"locationId":117},{"id":11816,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11817],"locationId":118},{"id":11817,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":11818,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11819],"locationId":109},{"id":11819,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11820],"locationId":109},{"id":11820,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[11821],"locationId":109},{"id":11821,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11814,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305}],"locationId":129},{"id":11797,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":11798,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[11799],"locationId":157},{"id":11799,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[11800],"locationId":164},{"id":11800,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11801],"locationId":29},{"id":11801,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[11802],"locationId":165},{"id":11802,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[11803],"locationId":166},{"id":11803,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11804],"locationId":29},{"id":11804,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[11805],"locationId":167},{"id":11805,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":0,"children":[11806],"locationId":168},{"id":11806,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":139,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":147,"ticks":1,"startLocationId":170,"endLocationId":171}],"locationId":169},{"id":11822,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11823],"locationId":3},{"id":11823,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11824],"locationId":4},{"id":11824,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11825],"locationId":1},{"id":11825,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11826,11856],"locationId":2},{"id":11826,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11827],"locationId":5},{"id":11827,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11828],"locationId":6},{"id":11828,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11829],"locationId":7},{"id":11829,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11830],"locationId":6},{"id":11830,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11831],"locationId":8},{"id":11831,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11832],"locationId":9},{"id":11832,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11833],"locationId":6},{"id":11833,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":3,"children":[11834,11840],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205},{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":11834,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11835,11839],"locationId":11},{"id":11835,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11836],"locationId":12},{"id":11836,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11837],"locationId":13},{"id":11837,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11838],"locationId":14},{"id":11838,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":11839,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":65,"ticks":1,"startLocationId":607,"endLocationId":642}],"locationId":339},{"id":11840,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11841],"locationId":84},{"id":11841,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11842],"locationId":6},{"id":11842,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11843],"locationId":85},{"id":11843,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11844],"locationId":86},{"id":11844,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11845],"locationId":87},{"id":11845,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11846],"locationId":88},{"id":11846,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11847],"locationId":74},{"id":11847,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11848],"locationId":89},{"id":11848,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[11849,11852,11853],"positionTicks":[{"line":77,"ticks":1,"startLocationId":94,"endLocationId":96},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":11849,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11850],"locationId":40},{"id":11850,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11851],"locationId":29},{"id":11851,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11852,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11853,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11854],"locationId":117},{"id":11854,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11855],"locationId":118},{"id":11855,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":11856,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11857],"locationId":3},{"id":11857,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11858],"locationId":4},{"id":11858,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11859],"locationId":1},{"id":11859,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11860,11900],"locationId":2},{"id":11860,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11861],"locationId":5},{"id":11861,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11862],"locationId":6},{"id":11862,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11863],"locationId":7},{"id":11863,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11864],"locationId":6},{"id":11864,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11865],"locationId":8},{"id":11865,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11866],"locationId":9},{"id":11866,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11867],"locationId":6},{"id":11867,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[11868,11888],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":11868,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11869],"locationId":84},{"id":11869,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11870],"locationId":6},{"id":11870,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11871],"locationId":85},{"id":11871,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11872],"locationId":86},{"id":11872,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11873],"locationId":87},{"id":11873,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11874],"locationId":88},{"id":11874,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11875],"locationId":74},{"id":11875,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11876],"locationId":89},{"id":11876,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11877,11879,11884,11885],"locationId":90},{"id":11877,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[11878,11899],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11878,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11899,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11879,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[11880],"locationId":102},{"id":11880,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[11881],"locationId":247},{"id":11881,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[11882],"locationId":248},{"id":11882,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[11883],"locationId":249},{"id":11883,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":67,"ticks":1,"startLocationId":636,"endLocationId":637}],"locationId":250},{"id":11884,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[11896],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11896,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11897],"locationId":97},{"id":11897,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[11898],"locationId":97},{"id":11898,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":11885,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[11886],"locationId":117},{"id":11886,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[11887,11893],"locationId":118},{"id":11887,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":11893,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[11894],"locationId":123},{"id":11894,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11895],"locationId":29},{"id":11895,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":11888,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11889],"locationId":11},{"id":11889,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11890],"locationId":12},{"id":11890,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11891],"locationId":13},{"id":11891,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[11892],"positionTicks":[{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":11892,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":737,"ticks":1,"startLocationId":253,"endLocationId":254}],"locationId":33},{"id":11900,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11901],"locationId":3},{"id":11901,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11902],"locationId":4},{"id":11902,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11903],"locationId":1},{"id":11903,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11904,11949],"locationId":2},{"id":11904,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11905],"locationId":5},{"id":11905,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11906],"locationId":6},{"id":11906,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11907],"locationId":7},{"id":11907,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11908],"locationId":6},{"id":11908,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11909,11923],"locationId":8},{"id":11909,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11910],"locationId":9},{"id":11910,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11911],"locationId":6},{"id":11911,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11912,11931,11948],"locationId":10},{"id":11912,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11913],"locationId":84},{"id":11913,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11914],"locationId":6},{"id":11914,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11915],"locationId":85},{"id":11915,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11916],"locationId":86},{"id":11916,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11917],"locationId":87},{"id":11917,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11918],"locationId":88},{"id":11918,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11919],"locationId":74},{"id":11919,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[11920],"locationId":89},{"id":11920,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[11921],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":11921,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[11922,11943],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11922,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":11943,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11944],"locationId":114},{"id":11944,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11945],"locationId":114},{"id":11945,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11946],"locationId":114},{"id":11946,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[11947],"locationId":114},{"id":11947,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":11931,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11932],"locationId":11},{"id":11932,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11933],"locationId":12},{"id":11933,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[11934],"locationId":72},{"id":11934,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[11935],"locationId":73},{"id":11935,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11936],"locationId":74},{"id":11936,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[11937],"locationId":75},{"id":11937,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":71,"ticks":1,"startLocationId":79,"endLocationId":80}],"locationId":78},{"id":11948,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":11923,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[11924,11938],"locationId":157},{"id":11924,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[11925],"locationId":164},{"id":11925,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11926],"locationId":29},{"id":11926,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[11927],"locationId":165},{"id":11927,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[11928],"locationId":166},{"id":11928,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11929],"locationId":29},{"id":11929,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[11930],"locationId":167},{"id":11930,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":11938,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[11939],"locationId":158},{"id":11939,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11940],"locationId":29},{"id":11940,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[11941],"locationId":159},{"id":11941,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[11942],"locationId":160},{"id":11942,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207},{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":11949,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[11950],"locationId":3},{"id":11950,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[11951],"locationId":4},{"id":11951,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[11952],"locationId":1},{"id":11952,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[11953,12011],"locationId":2},{"id":11953,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[11954],"locationId":5},{"id":11954,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11955],"locationId":6},{"id":11955,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[11956],"locationId":7},{"id":11956,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11957],"locationId":6},{"id":11957,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[11958],"locationId":8},{"id":11958,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[11959],"locationId":9},{"id":11959,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11960],"locationId":6},{"id":11960,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[11961,11974,12008],"locationId":10},{"id":11961,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[11962],"locationId":84},{"id":11962,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[11963],"locationId":6},{"id":11963,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[11964],"locationId":85},{"id":11964,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[11965],"locationId":86},{"id":11965,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[11966],"locationId":87},{"id":11966,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[11967],"locationId":88},{"id":11967,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[11968],"locationId":74},{"id":11968,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[11969,11973,11980],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":11969,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[11970,12007,12009],"locationId":90},{"id":11970,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[11971],"locationId":40},{"id":11971,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[11972],"locationId":29},{"id":11972,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":12007,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":12009,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[12010],"locationId":117},{"id":12010,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":11973,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":11980,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":11974,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[11975],"locationId":11},{"id":11975,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[11976],"locationId":12},{"id":11976,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[11977],"locationId":13},{"id":11977,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[11978],"locationId":14},{"id":11978,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[11979],"positionTicks":[{"line":766,"ticks":1,"startLocationId":532,"endLocationId":533}],"locationId":15},{"id":11979,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":12008,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":12011,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12012],"locationId":3},{"id":12012,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12013],"locationId":4},{"id":12013,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12014],"locationId":1},{"id":12014,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12015],"locationId":2},{"id":12015,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[12016],"locationId":5},{"id":12016,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12017],"locationId":6},{"id":12017,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[12018],"locationId":7},{"id":12018,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12019],"locationId":6},{"id":12019,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[12020],"locationId":8},{"id":12020,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[12021],"locationId":9},{"id":12021,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12022],"locationId":6},{"id":12022,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":3,"children":[12546],"positionTicks":[{"line":542,"ticks":3,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":12546,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":14448,"callFrame":{"functionName":"execute","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":848,"columnNumber":22},"hitCount":0,"children":[14449],"locationId":719},{"id":14449,"callFrame":{"functionName":"run","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":2092,"columnNumber":16},"hitCount":0,"children":[14450],"locationId":720},{"id":14450,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[14451],"locationId":721},{"id":14451,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[14452],"locationId":721},{"id":14452,"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"hitCount":0,"children":[14453,14461,21538],"locationId":722},{"id":14453,"callFrame":{"functionName":"createCompiled","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1667,"columnNumber":29},"hitCount":2,"children":[14454],"positionTicks":[{"line":1721,"ticks":2,"startLocationId":724,"endLocationId":725}],"locationId":723},{"id":14454,"callFrame":{"functionName":"interpolate","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1783,"columnNumber":26},"hitCount":2,"children":[14455],"positionTicks":[{"line":1786,"ticks":2,"startLocationId":727,"endLocationId":728}],"locationId":726},{"id":14455,"callFrame":{"functionName":"template","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":14837,"columnNumber":21},"hitCount":0,"children":[14456],"locationId":729},{"id":14456,"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":6611,"columnNumber":21},"hitCount":0,"children":[14457],"locationId":682},{"id":14457,"callFrame":{"functionName":"apply","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":484,"columnNumber":16},"hitCount":0,"children":[14458],"locationId":683},{"id":14458,"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":15323,"columnNumber":35},"hitCount":0,"children":[14459],"locationId":730},{"id":14459,"callFrame":{"functionName":"apply","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":484,"columnNumber":16},"hitCount":0,"children":[14460],"locationId":683},{"id":14460,"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":14940,"columnNumber":35},"hitCount":4,"positionTicks":[{"line":14942,"ticks":4,"startLocationId":732,"endLocationId":733}],"locationId":731},{"id":14461,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14462],"locationId":398},{"id":14462,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14463],"locationId":399},{"id":14463,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14464,14510],"locationId":2},{"id":14464,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14465],"locationId":5},{"id":14465,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14466],"locationId":6},{"id":14466,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14467],"locationId":7},{"id":14467,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14468],"locationId":6},{"id":14468,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14469,14475],"locationId":8},{"id":14469,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[14470],"locationId":157},{"id":14470,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[14471],"locationId":158},{"id":14471,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14472],"locationId":29},{"id":14472,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[14473],"locationId":159},{"id":14473,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[14474],"locationId":160},{"id":14474,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":14475,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14476],"locationId":9},{"id":14476,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14477],"locationId":6},{"id":14477,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14478,14482,14483,14506],"locationId":10},{"id":14478,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14479],"locationId":11},{"id":14479,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14480],"locationId":12},{"id":14480,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14481],"locationId":13},{"id":14481,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[14502],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":14502,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[14503],"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":14503,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[14504],"locationId":25},{"id":14504,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":14482,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":14483,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14484],"locationId":84},{"id":14484,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14485],"locationId":6},{"id":14485,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14486],"locationId":85},{"id":14486,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14487],"locationId":86},{"id":14487,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14488],"locationId":87},{"id":14488,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14489],"locationId":88},{"id":14489,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14490],"locationId":74},{"id":14490,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":3,"children":[14491],"positionTicks":[{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":14491,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[14492,14505,14507],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":14492,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14493],"locationId":109},{"id":14493,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14494],"locationId":109},{"id":14494,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14495],"locationId":109},{"id":14495,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14496],"locationId":109},{"id":14496,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14497],"locationId":114},{"id":14497,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14498],"locationId":114},{"id":14498,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14499],"locationId":114},{"id":14499,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14500],"locationId":114},{"id":14500,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14501],"locationId":114},{"id":14501,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14505,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":14507,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[14508],"locationId":40},{"id":14508,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14509],"locationId":29},{"id":14509,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14506,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":14510,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14511],"locationId":3},{"id":14511,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14512],"locationId":398},{"id":14512,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14513],"locationId":399},{"id":14513,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14514,14551],"locationId":2},{"id":14514,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14515],"locationId":5},{"id":14515,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14516],"locationId":6},{"id":14516,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14517],"locationId":7},{"id":14517,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14518],"locationId":6},{"id":14518,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14519],"locationId":8},{"id":14519,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14520],"locationId":9},{"id":14520,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14521],"locationId":6},{"id":14521,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14522,14524,14525,14550],"locationId":10},{"id":14522,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14523],"locationId":11},{"id":14523,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":2,"children":[14534],"positionTicks":[{"line":568,"ticks":1,"startLocationId":400,"endLocationId":401},{"line":570,"ticks":1,"startLocationId":510,"endLocationId":511}],"locationId":12},{"id":14534,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14535],"locationId":13},{"id":14535,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[14536],"locationId":14},{"id":14536,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[14537],"locationId":46},{"id":14537,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[14538],"locationId":54},{"id":14538,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[14539],"locationId":55},{"id":14539,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[14540],"locationId":56},{"id":14540,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[14541],"locationId":28},{"id":14541,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14542],"locationId":29},{"id":14542,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14524,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":14525,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14526],"locationId":84},{"id":14526,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14527],"locationId":6},{"id":14527,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14528],"locationId":85},{"id":14528,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14529],"locationId":86},{"id":14529,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14530],"locationId":87},{"id":14530,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14531],"locationId":88},{"id":14531,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14532],"locationId":74},{"id":14532,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14533,14549],"locationId":89},{"id":14533,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[14543,14546],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":14543,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[14544],"locationId":117},{"id":14544,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[14545],"locationId":118},{"id":14545,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":14546,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[14547],"locationId":40},{"id":14547,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14548],"locationId":29},{"id":14548,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14549,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":14550,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":14551,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":1,"children":[14552],"positionTicks":[{"line":718,"ticks":1,"startLocationId":734,"endLocationId":735}],"locationId":3},{"id":14552,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14553],"locationId":398},{"id":14553,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14554],"locationId":399},{"id":14554,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14555,14587],"locationId":2},{"id":14555,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14556],"locationId":5},{"id":14556,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14557],"locationId":6},{"id":14557,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14558],"locationId":7},{"id":14558,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14559],"locationId":6},{"id":14559,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14560],"locationId":8},{"id":14560,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14561],"locationId":9},{"id":14561,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14562],"locationId":6},{"id":14562,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14563,14572],"locationId":10},{"id":14563,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14564],"locationId":84},{"id":14564,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14565],"locationId":6},{"id":14565,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14566],"locationId":85},{"id":14566,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14567],"locationId":86},{"id":14567,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14568],"locationId":87},{"id":14568,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14569],"locationId":88},{"id":14569,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14570],"locationId":74},{"id":14570,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[14571],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":14571,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[14576,14581,14585],"positionTicks":[{"line":221,"ticks":1,"startLocationId":475,"endLocationId":476},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":14576,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[14577],"locationId":117},{"id":14577,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[14578],"locationId":118},{"id":14578,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[14579],"locationId":123},{"id":14579,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14580],"locationId":29},{"id":14580,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14581,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"children":[14582],"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":14582,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14583,14584],"locationId":29},{"id":14583,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14584,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":54},"hitCount":1,"positionTicks":[{"line":412,"ticks":1,"startLocationId":736,"endLocationId":737}],"locationId":561},{"id":14585,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[14586],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14586,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14572,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14573],"locationId":11},{"id":14573,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14574],"locationId":12},{"id":14574,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14575],"locationId":13},{"id":14575,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":14587,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14588],"locationId":3},{"id":14588,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14589],"locationId":398},{"id":14589,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14590],"locationId":399},{"id":14590,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14591,14617],"locationId":2},{"id":14591,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14592],"locationId":5},{"id":14592,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14593],"locationId":6},{"id":14593,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14594],"locationId":7},{"id":14594,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14595],"locationId":6},{"id":14595,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14596],"locationId":8},{"id":14596,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14597],"locationId":9},{"id":14597,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14598],"locationId":6},{"id":14598,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":3,"children":[14599,14600,14605],"positionTicks":[{"line":542,"ticks":3,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":14599,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":14600,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14601],"locationId":11},{"id":14601,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14602],"locationId":12},{"id":14602,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14603],"locationId":13},{"id":14603,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[14604],"locationId":14},{"id":14604,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":766,"ticks":1,"startLocationId":532,"endLocationId":533}],"locationId":15},{"id":14605,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14606],"locationId":84},{"id":14606,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14607],"locationId":6},{"id":14607,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14608],"locationId":85},{"id":14608,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14609],"locationId":86},{"id":14609,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14610],"locationId":87},{"id":14610,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14611],"locationId":88},{"id":14611,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14612],"locationId":74},{"id":14612,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14613],"locationId":89},{"id":14613,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":4,"children":[14614,14615],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94},{"line":26,"ticks":1,"startLocationId":191,"endLocationId":370},{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":14614,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14615,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[14616],"locationId":97},{"id":14616,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":14617,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14618],"locationId":3},{"id":14618,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14619],"locationId":398},{"id":14619,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14620],"locationId":399},{"id":14620,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14621,14671],"locationId":2},{"id":14621,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14622],"locationId":5},{"id":14622,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14623],"locationId":6},{"id":14623,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14624],"locationId":7},{"id":14624,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14625],"locationId":6},{"id":14625,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14626,14661],"locationId":8},{"id":14626,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14627],"locationId":9},{"id":14627,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14628],"locationId":6},{"id":14628,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14629,14630,14654,14665],"locationId":10},{"id":14629,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":14630,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14631],"locationId":84},{"id":14631,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14632],"locationId":6},{"id":14632,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14633],"locationId":85},{"id":14633,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14634],"locationId":86},{"id":14634,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14635],"locationId":87},{"id":14635,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14636],"locationId":88},{"id":14636,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14637],"locationId":74},{"id":14637,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[14638],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":14638,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[14639,14642],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":14639,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[14640],"locationId":40},{"id":14640,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14641],"locationId":29},{"id":14641,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14642,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14643],"locationId":109},{"id":14643,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14644,14666],"locationId":109},{"id":14644,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14645],"locationId":114},{"id":14645,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14646],"locationId":114},{"id":14646,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14647],"locationId":114},{"id":14647,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14648],"locationId":114},{"id":14648,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14649],"locationId":114},{"id":14649,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14650],"locationId":114},{"id":14650,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14651],"locationId":114},{"id":14651,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14652],"locationId":114},{"id":14652,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14653],"locationId":114},{"id":14653,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":14666,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14667],"locationId":109},{"id":14667,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14668],"locationId":109},{"id":14668,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14669],"locationId":109},{"id":14669,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14670],"locationId":109},{"id":14670,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14654,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14655],"locationId":11},{"id":14655,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14656],"locationId":12},{"id":14656,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14657],"locationId":13},{"id":14657,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[14658],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":14658,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[14659],"locationId":64},{"id":14659,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[14660],"locationId":65},{"id":14660,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":14665,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":384,"ticks":1,"startLocationId":435,"endLocationId":436}],"locationId":151},{"id":14661,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[14662],"locationId":157},{"id":14662,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[14663],"locationId":158},{"id":14663,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14664],"locationId":29},{"id":14664,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":14671,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14672],"locationId":3},{"id":14672,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14673],"locationId":398},{"id":14673,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14674],"locationId":399},{"id":14674,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14675,14711],"locationId":2},{"id":14675,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14676],"locationId":5},{"id":14676,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14677],"locationId":6},{"id":14677,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14678],"locationId":7},{"id":14678,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14679],"locationId":6},{"id":14679,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14680],"locationId":8},{"id":14680,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14681],"locationId":9},{"id":14681,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14682],"locationId":6},{"id":14682,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[14683,14703,14710],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":14683,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14684],"locationId":84},{"id":14684,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14685],"locationId":6},{"id":14685,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14686],"locationId":85},{"id":14686,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14687],"locationId":86},{"id":14687,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14688],"locationId":87},{"id":14688,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14689],"locationId":88},{"id":14689,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14690],"locationId":74},{"id":14690,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[14691],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":14691,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[14692,14694,14698,14708],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":14692,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[14693],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":14693,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":14694,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14695],"locationId":109},{"id":14695,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14696],"locationId":109},{"id":14696,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14697],"locationId":114},{"id":14697,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14698,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[14699],"locationId":117},{"id":14699,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[14700],"locationId":118},{"id":14700,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[14701],"locationId":123},{"id":14701,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14702],"locationId":29},{"id":14702,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14708,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[14709],"locationId":102},{"id":14709,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":14703,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14704],"locationId":11},{"id":14704,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14705],"locationId":12},{"id":14705,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14706],"locationId":13},{"id":14706,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[14707],"locationId":14},{"id":14707,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":14710,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":14711,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14712],"locationId":3},{"id":14712,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14713],"locationId":398},{"id":14713,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14714],"locationId":399},{"id":14714,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14715,14780],"locationId":2},{"id":14715,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14716],"locationId":5},{"id":14716,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14717],"locationId":6},{"id":14717,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14718],"locationId":7},{"id":14718,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14719],"locationId":6},{"id":14719,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14720],"locationId":8},{"id":14720,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14721],"locationId":9},{"id":14721,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14722],"locationId":6},{"id":14722,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[14723,14732,14739],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":14723,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14724],"locationId":84},{"id":14724,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14725],"locationId":6},{"id":14725,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14726],"locationId":85},{"id":14726,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14727],"locationId":86},{"id":14727,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14728],"locationId":87},{"id":14728,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14729],"locationId":88},{"id":14729,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14730],"locationId":74},{"id":14730,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14731,14733],"locationId":89},{"id":14731,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":14733,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[14734,14744,14778],"positionTicks":[{"line":791,"ticks":1,"startLocationId":494,"endLocationId":495}],"locationId":90},{"id":14734,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[14735],"locationId":117},{"id":14735,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[14736],"locationId":118},{"id":14736,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[14737],"locationId":123},{"id":14737,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14738],"locationId":29},{"id":14738,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14744,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14745,14752],"locationId":109},{"id":14745,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14746],"locationId":114},{"id":14746,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14747],"locationId":114},{"id":14747,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14748],"locationId":114},{"id":14748,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14749],"locationId":114},{"id":14749,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14750],"locationId":114},{"id":14750,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14751],"locationId":114},{"id":14751,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14752,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14753],"locationId":109},{"id":14753,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14754],"locationId":109},{"id":14754,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14755,14779],"locationId":109},{"id":14755,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14756],"locationId":109},{"id":14756,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14757],"locationId":109},{"id":14757,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14758],"locationId":109},{"id":14758,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14759],"locationId":109},{"id":14759,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14760],"locationId":109},{"id":14760,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14761],"locationId":109},{"id":14761,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14762],"locationId":109},{"id":14762,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14763],"locationId":109},{"id":14763,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14764],"locationId":109},{"id":14764,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14765],"locationId":109},{"id":14765,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14766],"locationId":109},{"id":14766,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14767],"locationId":109},{"id":14767,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14768],"locationId":109},{"id":14768,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14769],"locationId":109},{"id":14769,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14770],"locationId":109},{"id":14770,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14771],"locationId":109},{"id":14771,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14772],"locationId":109},{"id":14772,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14773],"locationId":109},{"id":14773,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14774],"locationId":109},{"id":14774,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14775],"locationId":109},{"id":14775,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14776],"locationId":109},{"id":14776,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14777],"locationId":109},{"id":14777,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14779,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14778,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":14732,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":14739,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14740],"locationId":11},{"id":14740,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14741],"locationId":12},{"id":14741,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14742],"locationId":13},{"id":14742,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[14743],"locationId":14},{"id":14743,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":14780,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14781],"locationId":3},{"id":14781,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14782],"locationId":398},{"id":14782,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14783],"locationId":399},{"id":14783,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14784,14831],"locationId":2},{"id":14784,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14785],"locationId":5},{"id":14785,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14786],"locationId":6},{"id":14786,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14787],"locationId":7},{"id":14787,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14788],"locationId":6},{"id":14788,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14789,14815],"locationId":8},{"id":14789,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14790],"locationId":9},{"id":14790,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14791],"locationId":6},{"id":14791,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14792,14808,14812],"locationId":10},{"id":14792,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14793],"locationId":84},{"id":14793,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14794],"locationId":6},{"id":14794,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14795],"locationId":85},{"id":14795,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14796],"locationId":86},{"id":14796,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14797,14798],"locationId":87},{"id":14797,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":144,"ticks":1,"startLocationId":738,"endLocationId":739}],"locationId":140},{"id":14798,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14799],"locationId":88},{"id":14799,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14800],"locationId":74},{"id":14800,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14801],"locationId":89},{"id":14801,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[14802,14809,14825],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":14802,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[14803],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14803,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14804,14821],"locationId":109},{"id":14804,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14805],"locationId":109},{"id":14805,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14806],"locationId":109},{"id":14806,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14807],"locationId":109},{"id":14807,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14821,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14822],"locationId":114},{"id":14822,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14809,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[14810],"locationId":40},{"id":14810,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14811],"locationId":29},{"id":14811,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14825,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[14826],"locationId":117},{"id":14826,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[14827],"locationId":118},{"id":14827,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[14828],"locationId":123},{"id":14828,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14829],"locationId":29},{"id":14829,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14808,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":14812,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14813],"locationId":11},{"id":14813,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14814,14823],"locationId":12},{"id":14814,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369}],"locationId":256},{"id":14823,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14824],"locationId":13},{"id":14824,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[14830],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":14830,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":790,"ticks":1,"startLocationId":16,"endLocationId":17}],"locationId":15},{"id":14815,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[14816],"locationId":157},{"id":14816,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[14817],"locationId":158},{"id":14817,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14818],"locationId":29},{"id":14818,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[14819],"locationId":159},{"id":14819,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[14820],"locationId":160},{"id":14820,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":14831,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14832],"locationId":3},{"id":14832,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14833],"locationId":398},{"id":14833,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14834],"locationId":399},{"id":14834,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14835,14899],"locationId":2},{"id":14835,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14836],"locationId":5},{"id":14836,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14837],"locationId":6},{"id":14837,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14838],"locationId":7},{"id":14838,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14839],"locationId":6},{"id":14839,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14840],"locationId":8},{"id":14840,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14841],"locationId":9},{"id":14841,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14842],"locationId":6},{"id":14842,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[14843,14844,14893,14894],"locationId":10},{"id":14843,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":14844,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14845],"locationId":84},{"id":14845,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14846],"locationId":6},{"id":14846,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14847],"locationId":85},{"id":14847,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14848],"locationId":86},{"id":14848,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14849],"locationId":87},{"id":14849,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14850],"locationId":88},{"id":14850,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14851],"locationId":74},{"id":14851,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[14852],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":14852,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[14853,14856],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":14853,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[14854],"locationId":40},{"id":14854,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[14855],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":14855,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14856,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14857],"locationId":109},{"id":14857,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14858],"locationId":109},{"id":14858,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14859,14891],"locationId":109},{"id":14859,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14860],"locationId":109},{"id":14860,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14861],"locationId":109},{"id":14861,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14862],"locationId":109},{"id":14862,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14863],"locationId":109},{"id":14863,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14864],"locationId":109},{"id":14864,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14865],"locationId":109},{"id":14865,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14866],"locationId":109},{"id":14866,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14867],"locationId":109},{"id":14867,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14868],"locationId":109},{"id":14868,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14869],"locationId":109},{"id":14869,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14870],"locationId":109},{"id":14870,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14871],"locationId":109},{"id":14871,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14872],"locationId":109},{"id":14872,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14873],"locationId":109},{"id":14873,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14874],"locationId":109},{"id":14874,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14875],"locationId":109},{"id":14875,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14876],"locationId":109},{"id":14876,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14877],"locationId":109},{"id":14877,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14878],"locationId":109},{"id":14878,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14879],"locationId":109},{"id":14879,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14880],"locationId":109},{"id":14880,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14881],"locationId":109},{"id":14881,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14882],"locationId":109},{"id":14882,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14883],"locationId":109},{"id":14883,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14884],"locationId":109},{"id":14884,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14885],"locationId":109},{"id":14885,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14886],"locationId":109},{"id":14886,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14887],"locationId":109},{"id":14887,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14888],"locationId":109},{"id":14888,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14889],"locationId":109},{"id":14889,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14890],"locationId":109},{"id":14890,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14891,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14892],"locationId":114},{"id":14892,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14893,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":14894,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14895],"locationId":11},{"id":14895,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14896],"locationId":12},{"id":14896,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14897],"locationId":13},{"id":14897,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[14898],"locationId":14},{"id":14898,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":741,"ticks":1,"startLocationId":696,"endLocationId":697}],"locationId":33},{"id":14899,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14900],"locationId":3},{"id":14900,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14901],"locationId":398},{"id":14901,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14902],"locationId":399},{"id":14902,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14903,14951],"locationId":2},{"id":14903,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14904],"locationId":5},{"id":14904,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14905],"locationId":6},{"id":14905,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14906],"locationId":7},{"id":14906,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14907],"locationId":6},{"id":14907,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14908],"locationId":8},{"id":14908,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14909],"locationId":9},{"id":14909,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14910],"locationId":6},{"id":14910,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[14911,14926,14931,14949],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":14911,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14912],"locationId":84},{"id":14912,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14913],"locationId":6},{"id":14913,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14914],"locationId":85},{"id":14914,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14915],"locationId":86},{"id":14915,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14916],"locationId":87},{"id":14916,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14917],"locationId":88},{"id":14917,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14918],"locationId":74},{"id":14918,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[14919,14932],"locationId":89},{"id":14919,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[14920,14946],"positionTicks":[{"line":110,"ticks":1,"startLocationId":490,"endLocationId":491}],"locationId":90},{"id":14920,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[14921],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14921,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14922],"locationId":109},{"id":14922,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14923],"locationId":109},{"id":14923,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14924,14933],"locationId":109},{"id":14924,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[14925],"locationId":114},{"id":14925,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":14933,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14934],"locationId":109},{"id":14934,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14935],"locationId":109},{"id":14935,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14936],"locationId":109},{"id":14936,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14937],"locationId":109},{"id":14937,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14938],"locationId":109},{"id":14938,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14939],"locationId":109},{"id":14939,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14940],"locationId":109},{"id":14940,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14941],"locationId":109},{"id":14941,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14942],"locationId":109},{"id":14942,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14943],"locationId":109},{"id":14943,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14944],"locationId":109},{"id":14944,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[14945],"locationId":109},{"id":14945,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":14946,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[14947],"locationId":117},{"id":14947,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[14948],"locationId":118},{"id":14948,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":14932,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":211,"ticks":1,"startLocationId":504,"endLocationId":505}],"locationId":129},{"id":14926,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[14927],"locationId":11},{"id":14927,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[14928],"locationId":12},{"id":14928,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[14929],"locationId":13},{"id":14929,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[14930],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":14930,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":14931,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":14949,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[14950],"locationId":157},{"id":14950,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":14951,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14952],"locationId":3},{"id":14952,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14953],"locationId":398},{"id":14953,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14954],"locationId":399},{"id":14954,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14955,14983],"locationId":2},{"id":14955,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14956],"locationId":5},{"id":14956,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14957],"locationId":6},{"id":14957,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14958],"locationId":7},{"id":14958,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14959],"locationId":6},{"id":14959,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14960],"locationId":8},{"id":14960,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14961],"locationId":9},{"id":14961,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14962],"locationId":6},{"id":14962,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[14963,14981,14982],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":14963,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14964],"locationId":84},{"id":14964,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14965],"locationId":6},{"id":14965,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14966],"locationId":85},{"id":14966,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14967],"locationId":86},{"id":14967,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[14968],"locationId":87},{"id":14968,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[14969],"locationId":88},{"id":14969,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[14970],"locationId":74},{"id":14970,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[14971],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":14971,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[14972,14977,14978],"locationId":90},{"id":14972,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[14973],"locationId":117},{"id":14973,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[14974,14980],"locationId":118},{"id":14974,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[14975],"locationId":123},{"id":14975,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[14976],"locationId":29},{"id":14976,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":14980,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":14977,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":14978,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[14979],"locationId":40},{"id":14979,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":14981,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":346,"ticks":2,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":14982,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":14983,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[14984],"locationId":3},{"id":14984,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[14985],"locationId":398},{"id":14985,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[14986],"locationId":399},{"id":14986,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[14987,15019],"locationId":2},{"id":14987,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[14988],"locationId":5},{"id":14988,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14989],"locationId":6},{"id":14989,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[14990],"locationId":7},{"id":14990,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14991],"locationId":6},{"id":14991,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[14992],"locationId":8},{"id":14992,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[14993],"locationId":9},{"id":14993,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14994],"locationId":6},{"id":14994,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[14995,15009,15012],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":14995,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[14996],"locationId":84},{"id":14996,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[14997],"locationId":6},{"id":14997,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[14998],"locationId":85},{"id":14998,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[14999],"locationId":86},{"id":14999,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15000],"locationId":87},{"id":15000,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15001],"locationId":88},{"id":15001,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15002],"locationId":74},{"id":15002,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15003],"locationId":89},{"id":15003,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15004,15010,15013,15016],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":15004,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15005],"locationId":117},{"id":15005,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[15006],"locationId":118},{"id":15006,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[15007],"locationId":123},{"id":15007,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15008],"locationId":29},{"id":15008,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15010,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15011],"locationId":109},{"id":15011,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15013,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15014],"locationId":40},{"id":15014,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15015],"locationId":29},{"id":15015,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15016,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[15017],"locationId":102},{"id":15017,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[15018],"locationId":217},{"id":15018,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":470,"ticks":1,"startLocationId":303,"endLocationId":219}],"locationId":218},{"id":15009,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209},{"line":350,"ticks":1,"startLocationId":335,"endLocationId":336}],"locationId":148},{"id":15012,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15019,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15020],"locationId":3},{"id":15020,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15021],"locationId":398},{"id":15021,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15022],"locationId":399},{"id":15022,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15023,15059],"locationId":2},{"id":15023,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15024],"locationId":5},{"id":15024,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15025],"locationId":6},{"id":15025,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15026,15031],"locationId":7},{"id":15026,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[15027],"locationId":196},{"id":15027,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[15028],"locationId":197},{"id":15028,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[15029],"locationId":198},{"id":15029,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15030],"locationId":29},{"id":15030,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15031,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15032],"locationId":6},{"id":15032,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15033],"locationId":8},{"id":15033,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15034],"locationId":9},{"id":15034,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15035],"locationId":6},{"id":15035,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15036,15039,15057],"locationId":10},{"id":15036,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15037],"locationId":11},{"id":15037,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15038,15051],"locationId":12},{"id":15038,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369}],"locationId":256},{"id":15051,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15052],"locationId":13},{"id":15052,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15053,15056],"locationId":14},{"id":15053,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[15054],"locationId":15},{"id":15054,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[15055],"locationId":25},{"id":15055,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":15056,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":15039,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15040],"locationId":84},{"id":15040,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15041],"locationId":6},{"id":15041,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15042],"locationId":85},{"id":15042,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15043],"locationId":86},{"id":15043,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15044],"locationId":87},{"id":15044,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15045],"locationId":88},{"id":15045,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15046],"locationId":74},{"id":15046,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15047],"locationId":89},{"id":15047,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[15048,15058],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":15048,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15049],"locationId":40},{"id":15049,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15050],"locationId":29},{"id":15050,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15058,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15057,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15059,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15060],"locationId":3},{"id":15060,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15061],"locationId":398},{"id":15061,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15062],"locationId":399},{"id":15062,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15063,15099],"locationId":2},{"id":15063,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15064],"locationId":5},{"id":15064,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15065],"locationId":6},{"id":15065,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15066,15072],"locationId":7},{"id":15066,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[15067],"locationId":196},{"id":15067,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[15068],"locationId":197},{"id":15068,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[15069],"locationId":198},{"id":15069,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15070],"locationId":29},{"id":15070,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[15071],"locationId":199},{"id":15071,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":15072,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15073],"locationId":6},{"id":15073,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15074],"locationId":8},{"id":15074,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15075],"locationId":9},{"id":15075,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15076],"locationId":6},{"id":15076,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[15077,15086,15098],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":15077,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15078],"locationId":11},{"id":15078,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15079],"locationId":12},{"id":15079,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15080],"locationId":13},{"id":15080,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15081,15084],"locationId":14},{"id":15081,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[15082],"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":15082,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[15083],"locationId":25},{"id":15083,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":15084,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[15085],"locationId":64},{"id":15085,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":15086,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15087],"locationId":84},{"id":15087,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15088],"locationId":6},{"id":15088,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15089],"locationId":85},{"id":15089,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15090],"locationId":86},{"id":15090,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15091],"locationId":87},{"id":15091,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15092],"locationId":88},{"id":15092,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15093],"locationId":74},{"id":15093,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15094],"locationId":89},{"id":15094,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[15095],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":15095,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15096],"locationId":109},{"id":15096,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15097],"locationId":114},{"id":15097,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15098,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":15099,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15100],"locationId":3},{"id":15100,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15101],"locationId":398},{"id":15101,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15102],"locationId":399},{"id":15102,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15103,15148],"locationId":2},{"id":15103,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15104],"locationId":5},{"id":15104,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15105],"locationId":6},{"id":15105,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15106,15107],"locationId":7},{"id":15106,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":15107,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15108],"locationId":6},{"id":15108,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15109],"locationId":8},{"id":15109,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15110],"locationId":9},{"id":15110,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15111],"locationId":6},{"id":15111,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15112,15120,15121,15147],"locationId":10},{"id":15112,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15113],"locationId":11},{"id":15113,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15114],"locationId":12},{"id":15114,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15115],"locationId":13},{"id":15115,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[15116],"positionTicks":[{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":15116,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[15117],"locationId":36},{"id":15117,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15118],"locationId":40},{"id":15118,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15119],"locationId":29},{"id":15119,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15120,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15121,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15122],"locationId":84},{"id":15122,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15123],"locationId":6},{"id":15123,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15124],"locationId":85},{"id":15124,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15125],"locationId":86},{"id":15125,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15126],"locationId":87},{"id":15126,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15127],"locationId":88},{"id":15127,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15128],"locationId":74},{"id":15128,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15129],"locationId":89},{"id":15129,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[15130,15132,15137,15145],"locationId":90},{"id":15130,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15131],"locationId":117},{"id":15131,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":15132,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[15133],"locationId":102},{"id":15133,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[15134],"locationId":247},{"id":15134,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[15135],"locationId":248},{"id":15135,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[15136],"locationId":249},{"id":15136,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":82,"ticks":1,"startLocationId":251,"endLocationId":252}],"locationId":250},{"id":15137,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15138],"locationId":109},{"id":15138,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15139],"locationId":109},{"id":15139,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15140],"locationId":109},{"id":15140,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15141],"locationId":109},{"id":15141,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15142],"locationId":114},{"id":15142,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15143],"locationId":114},{"id":15143,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15144],"locationId":114},{"id":15144,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15145,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[15146],"locationId":97},{"id":15146,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15147,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":15148,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15149],"locationId":3},{"id":15149,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15150],"locationId":398},{"id":15150,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15151],"locationId":399},{"id":15151,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15152,15217],"locationId":2},{"id":15152,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15153],"locationId":5},{"id":15153,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15154],"locationId":6},{"id":15154,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15155,15156],"locationId":7},{"id":15155,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":15156,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15157],"locationId":6},{"id":15157,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15158,15173],"locationId":8},{"id":15158,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15159],"locationId":9},{"id":15159,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15160],"locationId":6},{"id":15160,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15161,15207],"locationId":10},{"id":15161,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15162],"locationId":84},{"id":15162,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15163],"locationId":6},{"id":15163,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15164],"locationId":85},{"id":15164,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15165],"locationId":86},{"id":15165,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15166],"locationId":87},{"id":15166,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15167],"locationId":88},{"id":15167,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15168],"locationId":74},{"id":15168,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15169],"locationId":89},{"id":15169,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15170,15176,15204],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":15170,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15171],"locationId":40},{"id":15171,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15172],"locationId":29},{"id":15172,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15176,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15177,15179],"locationId":109},{"id":15177,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15178],"locationId":114},{"id":15178,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15179,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15180],"locationId":109},{"id":15180,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15181],"locationId":109},{"id":15181,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15182],"locationId":109},{"id":15182,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[15183],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15183,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15184],"locationId":109},{"id":15184,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15185],"locationId":109},{"id":15185,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15186],"locationId":109},{"id":15186,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15187],"locationId":109},{"id":15187,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15188],"locationId":109},{"id":15188,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15189],"locationId":109},{"id":15189,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15190],"locationId":109},{"id":15190,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15191],"locationId":109},{"id":15191,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15192],"locationId":109},{"id":15192,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15193],"locationId":109},{"id":15193,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15194],"locationId":109},{"id":15194,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15195],"locationId":109},{"id":15195,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15196],"locationId":109},{"id":15196,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15197],"locationId":109},{"id":15197,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15198],"locationId":109},{"id":15198,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15199],"locationId":109},{"id":15199,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15200],"locationId":109},{"id":15200,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15201],"locationId":109},{"id":15201,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15202],"locationId":109},{"id":15202,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15203],"locationId":109},{"id":15203,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15204,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[15205],"locationId":97},{"id":15205,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[15206],"locationId":97},{"id":15206,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15207,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15208],"locationId":11},{"id":15208,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15209],"locationId":12},{"id":15209,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15210],"locationId":13},{"id":15210,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15211,15213],"locationId":14},{"id":15211,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[15212],"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":15212,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":15213,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[15214],"locationId":36},{"id":15214,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15215],"locationId":40},{"id":15215,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15216],"locationId":29},{"id":15216,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15173,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[15174],"locationId":157},{"id":15174,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[15175],"locationId":158},{"id":15175,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":15217,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15218],"locationId":3},{"id":15218,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15219],"locationId":398},{"id":15219,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15220],"locationId":399},{"id":15220,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15221,15261],"locationId":2},{"id":15221,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15222],"locationId":5},{"id":15222,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15223],"locationId":6},{"id":15223,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15224,15228],"locationId":7},{"id":15224,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[15225],"locationId":196},{"id":15225,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[15226],"locationId":197},{"id":15226,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[15227],"locationId":198},{"id":15227,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":15228,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15229],"locationId":6},{"id":15229,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15230,15253],"locationId":8},{"id":15230,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15231],"locationId":9},{"id":15231,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15232],"locationId":6},{"id":15232,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15233,15237,15241],"locationId":10},{"id":15233,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15234],"locationId":11},{"id":15234,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15235],"locationId":12},{"id":15235,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15236],"locationId":13},{"id":15236,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[15238],"positionTicks":[{"line":576,"ticks":2,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":15238,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[15239],"locationId":64},{"id":15239,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[15240],"locationId":65},{"id":15240,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":15237,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15241,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15242],"locationId":84},{"id":15242,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15243],"locationId":6},{"id":15243,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15244],"locationId":85},{"id":15244,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15245],"locationId":86},{"id":15245,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15246,15260],"locationId":87},{"id":15246,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15247],"locationId":88},{"id":15247,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15248],"locationId":74},{"id":15248,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15249,15252],"locationId":89},{"id":15249,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15250,15259],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":15250,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15251],"locationId":40},{"id":15251,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":15259,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15252,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139}],"locationId":129},{"id":15260,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":156,"ticks":1,"startLocationId":740,"endLocationId":741}],"locationId":140},{"id":15253,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[15254],"locationId":157},{"id":15254,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[15255],"locationId":158},{"id":15255,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15256],"locationId":29},{"id":15256,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[15257],"locationId":159},{"id":15257,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[15258],"locationId":160},{"id":15258,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":15261,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15262],"locationId":3},{"id":15262,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15263],"locationId":398},{"id":15263,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15264],"locationId":399},{"id":15264,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15265,15309],"locationId":2},{"id":15265,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15266],"locationId":5},{"id":15266,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15267],"locationId":6},{"id":15267,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15268,15274],"locationId":7},{"id":15268,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[15269],"locationId":196},{"id":15269,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[15270],"locationId":197},{"id":15270,"callFrame":{"functionName":"getOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":325,"columnNumber":15},"hitCount":0,"children":[15271],"locationId":363},{"id":15271,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[15272],"locationId":166},{"id":15272,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15273],"locationId":29},{"id":15273,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15274,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15275],"locationId":6},{"id":15275,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15276],"locationId":8},{"id":15276,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15277],"locationId":9},{"id":15277,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15278],"locationId":6},{"id":15278,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15279,15286,15288],"locationId":10},{"id":15279,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15280],"locationId":11},{"id":15280,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15281],"locationId":12},{"id":15281,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15282],"locationId":13},{"id":15282,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[15283,15287],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":15283,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[15284],"locationId":36},{"id":15284,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15285],"locationId":40},{"id":15285,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":15287,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[15297],"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":15297,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[15298],"locationId":28},{"id":15298,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15299],"locationId":29},{"id":15299,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":182,"ticks":1,"startLocationId":31,"endLocationId":32}],"locationId":30},{"id":15286,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":545,"ticks":3,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15288,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15289],"locationId":84},{"id":15289,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15290],"locationId":6},{"id":15290,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15291],"locationId":85},{"id":15291,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15292],"locationId":86},{"id":15292,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15293],"locationId":87},{"id":15293,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15294],"locationId":88},{"id":15294,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15295],"locationId":74},{"id":15295,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15296],"locationId":89},{"id":15296,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15300],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":15300,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15301],"locationId":109},{"id":15301,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15302],"locationId":109},{"id":15302,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15303],"locationId":114},{"id":15303,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15304],"locationId":114},{"id":15304,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15305],"locationId":114},{"id":15305,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15306],"locationId":114},{"id":15306,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15307],"locationId":114},{"id":15307,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15308],"locationId":114},{"id":15308,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15309,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15310],"locationId":3},{"id":15310,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15311],"locationId":398},{"id":15311,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15312],"locationId":399},{"id":15312,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15313,15351],"locationId":2},{"id":15313,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15314],"locationId":5},{"id":15314,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15315],"locationId":6},{"id":15315,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15316,15317],"locationId":7},{"id":15316,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":15317,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15318],"locationId":6},{"id":15318,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15319],"locationId":8},{"id":15319,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15320],"locationId":9},{"id":15320,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15321],"locationId":6},{"id":15321,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15322,15327,15328,15345],"locationId":10},{"id":15322,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15323],"locationId":11},{"id":15323,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15324],"locationId":12},{"id":15324,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15325],"locationId":13},{"id":15325,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15326,15347,15350],"locationId":14},{"id":15326,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":15347,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[15348],"locationId":15},{"id":15348,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[15349],"locationId":25},{"id":15349,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":15350,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":15327,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":15328,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15329],"locationId":84},{"id":15329,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15330],"locationId":6},{"id":15330,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15331],"locationId":85},{"id":15331,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15332],"locationId":86},{"id":15332,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15333],"locationId":87},{"id":15333,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15334],"locationId":88},{"id":15334,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15335],"locationId":74},{"id":15335,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15336],"locationId":89},{"id":15336,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15337,15340,15346],"positionTicks":[{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383}],"locationId":90},{"id":15337,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15338],"locationId":40},{"id":15338,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[15339],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":15339,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15340,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15341],"locationId":109},{"id":15341,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15342],"locationId":109},{"id":15342,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15343],"locationId":109},{"id":15343,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15344],"locationId":109},{"id":15344,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15346,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15345,"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":622,"ticks":1,"startLocationId":742,"endLocationId":743}],"locationId":342},{"id":15351,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15352],"locationId":3},{"id":15352,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15353],"locationId":398},{"id":15353,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15354],"locationId":399},{"id":15354,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15355,15399],"locationId":2},{"id":15355,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15356],"locationId":5},{"id":15356,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15357],"locationId":6},{"id":15357,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15358,15366],"locationId":7},{"id":15358,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[15359],"locationId":196},{"id":15359,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[15360],"locationId":197},{"id":15360,"callFrame":{"functionName":"getOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":325,"columnNumber":15},"hitCount":0,"children":[15361],"locationId":363},{"id":15361,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[15362],"locationId":166},{"id":15362,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15363],"locationId":29},{"id":15363,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[15364],"locationId":167},{"id":15364,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":0,"children":[15365],"locationId":168},{"id":15365,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":139,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":148,"ticks":1,"startLocationId":171,"endLocationId":172}],"locationId":169},{"id":15366,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15367],"locationId":6},{"id":15367,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15368],"locationId":8},{"id":15368,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15369],"locationId":9},{"id":15369,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15370],"locationId":6},{"id":15370,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15371,15380,15381],"locationId":10},{"id":15371,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15372],"locationId":84},{"id":15372,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15373],"locationId":6},{"id":15373,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15374],"locationId":85},{"id":15374,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15375],"locationId":86},{"id":15375,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15376],"locationId":87},{"id":15376,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15377],"locationId":88},{"id":15377,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15378],"locationId":74},{"id":15378,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15379,15386],"locationId":89},{"id":15379,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":15386,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[15387,15396],"locationId":90},{"id":15387,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15388],"locationId":117},{"id":15388,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[15389],"locationId":118},{"id":15389,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[15390],"locationId":123},{"id":15390,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15391],"locationId":29},{"id":15391,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15396,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15397],"locationId":40},{"id":15397,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[15398],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":15398,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15380,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":15381,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15382],"locationId":11},{"id":15382,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15383],"locationId":12},{"id":15383,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15384],"locationId":13},{"id":15384,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[15385,15392],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":15385,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":15392,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[15393],"locationId":36},{"id":15393,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15394],"locationId":40},{"id":15394,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15395],"locationId":29},{"id":15395,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15399,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15400],"locationId":3},{"id":15400,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15401],"locationId":398},{"id":15401,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15402],"locationId":399},{"id":15402,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15403,15426],"locationId":2},{"id":15403,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15404],"locationId":5},{"id":15404,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15405],"locationId":6},{"id":15405,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15406],"locationId":7},{"id":15406,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15407],"locationId":6},{"id":15407,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15408],"locationId":8},{"id":15408,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15409],"locationId":9},{"id":15409,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15410],"locationId":6},{"id":15410,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[15411,15415,15416,15425],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":15411,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15412],"locationId":12},{"id":15412,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15413],"locationId":13},{"id":15413,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15414],"locationId":14},{"id":15414,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":662,"ticks":1,"startLocationId":376,"endLocationId":377}],"locationId":46},{"id":15415,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15416,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15417],"locationId":84},{"id":15417,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15418],"locationId":6},{"id":15418,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15419],"locationId":85},{"id":15419,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15420],"locationId":86},{"id":15420,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15421],"locationId":87},{"id":15421,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15422],"locationId":88},{"id":15422,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15423],"locationId":74},{"id":15423,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[15424],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":15424,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383}],"locationId":90},{"id":15425,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334},{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":15426,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15427],"locationId":3},{"id":15427,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15428],"locationId":398},{"id":15428,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15429],"locationId":399},{"id":15429,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15430,15468],"locationId":2},{"id":15430,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15431],"locationId":5},{"id":15431,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15432],"locationId":6},{"id":15432,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15433],"locationId":7},{"id":15433,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15434],"locationId":6},{"id":15434,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15435,15441],"locationId":8},{"id":15435,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[15436],"locationId":157},{"id":15436,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[15437],"locationId":158},{"id":15437,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15438],"locationId":29},{"id":15438,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[15439],"locationId":159},{"id":15439,"callFrame":{"functionName":"SymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":8,"columnNumber":15},"hitCount":0,"children":[15440],"locationId":705},{"id":15440,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":15441,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15442],"locationId":9},{"id":15442,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15443],"locationId":6},{"id":15443,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15444,15458],"locationId":10},{"id":15444,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15445],"locationId":84},{"id":15445,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15446],"locationId":6},{"id":15446,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15447],"locationId":85},{"id":15447,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15448],"locationId":86},{"id":15448,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15449],"locationId":87},{"id":15449,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15450],"locationId":88},{"id":15450,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15451],"locationId":74},{"id":15451,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[15452,15464],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":15452,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[15453,15456,15459,15466],"locationId":90},{"id":15453,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[15454,15455,15465],"locationId":102},{"id":15454,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":1,"positionTicks":[{"line":399,"ticks":1,"startLocationId":297,"endLocationId":298}],"locationId":217},{"id":15455,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":15465,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":304,"ticks":1,"startLocationId":275,"endLocationId":276}],"locationId":247},{"id":15456,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[15457],"locationId":97},{"id":15457,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":15459,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15460],"locationId":117},{"id":15460,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[15461],"locationId":118},{"id":15461,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[15462],"locationId":123},{"id":15462,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15463],"locationId":29},{"id":15463,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15466,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15467],"locationId":109},{"id":15467,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15464,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":15458,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":15468,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15469],"locationId":3},{"id":15469,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15470],"locationId":398},{"id":15470,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15471],"locationId":399},{"id":15471,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15472,15519],"locationId":2},{"id":15472,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15473],"locationId":5},{"id":15473,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15474],"locationId":6},{"id":15474,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15475],"locationId":7},{"id":15475,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15476],"locationId":6},{"id":15476,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15477,15495],"locationId":8},{"id":15477,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15478],"locationId":9},{"id":15478,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15479],"locationId":6},{"id":15479,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15480,15481,15502],"locationId":10},{"id":15480,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15481,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15482],"locationId":84},{"id":15482,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15483],"locationId":6},{"id":15483,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15484],"locationId":85},{"id":15484,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15485],"locationId":86},{"id":15485,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15486],"locationId":87},{"id":15486,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15487],"locationId":88},{"id":15487,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15488],"locationId":74},{"id":15488,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[15489,15509],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":15489,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15490,15510,15511,15516],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":15490,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15491],"locationId":109},{"id":15491,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15492],"locationId":109},{"id":15492,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15493],"locationId":114},{"id":15493,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15494],"locationId":114},{"id":15494,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15510,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15511,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15512],"locationId":117},{"id":15512,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[15513],"locationId":118},{"id":15513,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[15514],"locationId":123},{"id":15514,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15515],"locationId":29},{"id":15515,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15516,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15517],"locationId":40},{"id":15517,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15518],"locationId":29},{"id":15518,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15509,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":15502,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15503],"locationId":11},{"id":15503,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15504],"locationId":12},{"id":15504,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15505],"locationId":13},{"id":15505,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15506],"locationId":14},{"id":15506,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[15507],"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":15507,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[15508],"locationId":25},{"id":15508,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":15495,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[15496],"locationId":157},{"id":15496,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[15497],"locationId":164},{"id":15497,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15498],"locationId":29},{"id":15498,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[15499],"locationId":165},{"id":15499,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[15500],"locationId":166},{"id":15500,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15501],"locationId":29},{"id":15501,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":340,"ticks":1,"startLocationId":625,"endLocationId":420}],"locationId":167},{"id":15519,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15520],"locationId":3},{"id":15520,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15521],"locationId":398},{"id":15521,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15522],"locationId":399},{"id":15522,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15523,15563],"locationId":2},{"id":15523,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15524],"locationId":5},{"id":15524,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15525],"locationId":6},{"id":15525,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15526],"locationId":7},{"id":15526,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15527],"locationId":6},{"id":15527,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15528,15550],"locationId":8},{"id":15528,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15529],"locationId":9},{"id":15529,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15530],"locationId":6},{"id":15530,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15531,15542,15549],"locationId":10},{"id":15531,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15532],"locationId":84},{"id":15532,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15533],"locationId":6},{"id":15533,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15534],"locationId":85},{"id":15534,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15535],"locationId":86},{"id":15535,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15536],"locationId":87},{"id":15536,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15537],"locationId":88},{"id":15537,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15538],"locationId":74},{"id":15538,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15539,15556],"locationId":89},{"id":15539,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15540,15557,15561],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":15540,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15541],"locationId":40},{"id":15541,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":15557,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15558,15562],"locationId":109},{"id":15558,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15559],"locationId":109},{"id":15559,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[15560],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15560,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":15562,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15561,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15556,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305}],"locationId":129},{"id":15542,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15543],"locationId":11},{"id":15543,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15544],"locationId":12},{"id":15544,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15545],"locationId":13},{"id":15545,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15546,15555],"locationId":14},{"id":15546,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[15547],"locationId":15},{"id":15547,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[15548],"locationId":25},{"id":15548,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":15555,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":15549,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15550,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[15551],"locationId":157},{"id":15551,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[15552],"locationId":158},{"id":15552,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15553],"locationId":29},{"id":15553,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[15554],"locationId":159},{"id":15554,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":350,"endLocationId":351}],"locationId":160},{"id":15563,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15564],"locationId":3},{"id":15564,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15565],"locationId":398},{"id":15565,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15566],"locationId":399},{"id":15566,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15567,15596],"locationId":2},{"id":15567,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15568],"locationId":5},{"id":15568,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15569],"locationId":6},{"id":15569,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15570],"locationId":7},{"id":15570,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15571],"locationId":6},{"id":15571,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15572],"locationId":8},{"id":15572,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15573],"locationId":9},{"id":15573,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15574],"locationId":6},{"id":15574,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[15575,15586,15591],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":15575,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15576],"locationId":84},{"id":15576,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15577],"locationId":6},{"id":15577,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15578],"locationId":85},{"id":15578,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15579],"locationId":86},{"id":15579,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15580],"locationId":87},{"id":15580,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15581],"locationId":88},{"id":15581,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15582],"locationId":74},{"id":15582,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[15583],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":15583,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[15584,15594],"locationId":90},{"id":15584,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15585],"locationId":109},{"id":15585,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[15595],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15595,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15594,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15586,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15587],"locationId":11},{"id":15587,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15588],"locationId":12},{"id":15588,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15589],"locationId":13},{"id":15589,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[15590,15592,15593],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":15590,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":15592,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":539,"endLocationId":540}],"locationId":64},{"id":15593,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":15591,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":15596,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15597],"locationId":3},{"id":15597,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15598],"locationId":398},{"id":15598,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15599],"locationId":399},{"id":15599,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15600,15648],"locationId":2},{"id":15600,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15601],"locationId":5},{"id":15601,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15602],"locationId":6},{"id":15602,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15603],"locationId":7},{"id":15603,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15604],"locationId":6},{"id":15604,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15605],"locationId":8},{"id":15605,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15606],"locationId":9},{"id":15606,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15607],"locationId":6},{"id":15607,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[15608,15616],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":15608,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15609],"locationId":84},{"id":15609,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15610],"locationId":6},{"id":15610,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15611],"locationId":85},{"id":15611,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15612],"locationId":86},{"id":15612,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15613],"locationId":87},{"id":15613,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15614],"locationId":88},{"id":15614,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15615],"locationId":74},{"id":15615,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[15622,15642],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":15622,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[15623,15628,15645],"locationId":90},{"id":15623,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15624],"locationId":117},{"id":15624,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[15625],"locationId":118},{"id":15625,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[15626],"locationId":123},{"id":15626,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15627],"locationId":29},{"id":15627,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15628,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15629],"locationId":109},{"id":15629,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15630,15643],"locationId":109},{"id":15630,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15631],"locationId":109},{"id":15631,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15632],"locationId":109},{"id":15632,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15633],"locationId":109},{"id":15633,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15634],"locationId":109},{"id":15634,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15635],"locationId":109},{"id":15635,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15636],"locationId":109},{"id":15636,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15637],"locationId":109},{"id":15637,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15638],"locationId":109},{"id":15638,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15639],"locationId":109},{"id":15639,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15640],"locationId":109},{"id":15640,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15641],"locationId":109},{"id":15641,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15643,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15644],"locationId":114},{"id":15644,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15645,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15646],"locationId":40},{"id":15646,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15647],"locationId":29},{"id":15647,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15642,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":15616,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15617],"locationId":11},{"id":15617,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15618,15620],"locationId":12},{"id":15618,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15619],"locationId":13},{"id":15619,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[15621],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":15621,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":525,"endLocationId":526}],"locationId":36},{"id":15620,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369}],"locationId":256},{"id":15648,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15649],"locationId":3},{"id":15649,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15650],"locationId":398},{"id":15650,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15651],"locationId":399},{"id":15651,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15652,15682],"locationId":2},{"id":15652,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15653],"locationId":5},{"id":15653,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15654],"locationId":6},{"id":15654,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15655],"locationId":7},{"id":15655,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15656],"locationId":6},{"id":15656,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15657],"locationId":8},{"id":15657,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15658],"locationId":9},{"id":15658,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15659],"locationId":6},{"id":15659,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15660,15673,15674],"locationId":10},{"id":15660,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15661],"locationId":84},{"id":15661,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15662],"locationId":6},{"id":15662,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15663],"locationId":85},{"id":15663,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15664],"locationId":86},{"id":15664,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15665],"locationId":87},{"id":15665,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15666],"locationId":88},{"id":15666,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15667],"locationId":74},{"id":15667,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15668],"locationId":89},{"id":15668,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[15669,15670],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":112,"ticks":1,"startLocationId":487,"endLocationId":392},{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":15669,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15670,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15671],"locationId":40},{"id":15671,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[15672],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":15672,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15673,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15674,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15675],"locationId":11},{"id":15675,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15676],"locationId":12},{"id":15676,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15677],"locationId":13},{"id":15677,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15678,15681],"locationId":14},{"id":15678,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[15679],"locationId":15},{"id":15679,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[15680],"locationId":25},{"id":15680,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":15681,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222}],"locationId":36},{"id":15682,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15683],"locationId":3},{"id":15683,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15684],"locationId":398},{"id":15684,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15685],"locationId":399},{"id":15685,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15686,15721],"locationId":2},{"id":15686,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15687],"locationId":5},{"id":15687,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15688],"locationId":6},{"id":15688,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":1,"children":[15689],"positionTicks":[{"line":13,"ticks":1,"startLocationId":744,"endLocationId":745}],"locationId":7},{"id":15689,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15690],"locationId":6},{"id":15690,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15691,15703],"locationId":8},{"id":15691,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15692],"locationId":9},{"id":15692,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15693],"locationId":6},{"id":15693,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[15694,15702,15711],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":15694,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15695],"locationId":11},{"id":15695,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15696],"locationId":12},{"id":15696,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15697],"locationId":13},{"id":15697,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15698],"locationId":14},{"id":15698,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"children":[15699],"positionTicks":[{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222}],"locationId":36},{"id":15699,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15700],"locationId":40},{"id":15700,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15701],"locationId":29},{"id":15701,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15702,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15711,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15712],"locationId":84},{"id":15712,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15713],"locationId":6},{"id":15713,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15714],"locationId":85},{"id":15714,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15715],"locationId":86},{"id":15715,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15716],"locationId":87},{"id":15716,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15717],"locationId":88},{"id":15717,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15718],"locationId":74},{"id":15718,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15719],"locationId":89},{"id":15719,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15720],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":15720,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15703,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[15704],"locationId":157},{"id":15704,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[15705],"locationId":164},{"id":15705,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15706],"locationId":29},{"id":15706,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[15707],"locationId":165},{"id":15707,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[15708],"locationId":166},{"id":15708,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15709],"locationId":29},{"id":15709,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[15710],"locationId":167},{"id":15710,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":69,"ticks":1,"startLocationId":327,"endLocationId":328}],"locationId":168},{"id":15721,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15722],"locationId":3},{"id":15722,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15723],"locationId":398},{"id":15723,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15724],"locationId":399},{"id":15724,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15725,15811],"locationId":2},{"id":15725,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15726],"locationId":5},{"id":15726,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15727],"locationId":6},{"id":15727,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15728],"locationId":7},{"id":15728,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15729],"locationId":6},{"id":15729,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15730],"locationId":8},{"id":15730,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15731],"locationId":9},{"id":15731,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15732],"locationId":6},{"id":15732,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15733,15734],"locationId":10},{"id":15733,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":15734,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15735],"locationId":84},{"id":15735,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15736],"locationId":6},{"id":15736,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15737],"locationId":85},{"id":15737,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15738],"locationId":86},{"id":15738,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15739],"locationId":87},{"id":15739,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15740],"locationId":88},{"id":15740,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15741],"locationId":74},{"id":15741,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15742],"locationId":89},{"id":15742,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15743,15748,15752,15755],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":15743,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15744],"locationId":117},{"id":15744,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[15745],"locationId":118},{"id":15745,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[15746],"locationId":123},{"id":15746,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15747],"locationId":29},{"id":15747,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15748,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[15749],"locationId":97},{"id":15749,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[15750],"locationId":97},{"id":15750,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[15751],"locationId":97},{"id":15751,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":15752,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15753],"locationId":40},{"id":15753,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15754],"locationId":29},{"id":15754,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15755,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15756],"locationId":109},{"id":15756,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15757],"locationId":109},{"id":15757,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15758,15810],"locationId":109},{"id":15758,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15759,15761],"locationId":109},{"id":15759,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15760],"locationId":114},{"id":15760,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[15805],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15805,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15806],"locationId":114},{"id":15806,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15807],"locationId":114},{"id":15807,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15808],"locationId":114},{"id":15808,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15809],"locationId":114},{"id":15809,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15761,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15762],"locationId":109},{"id":15762,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15763],"locationId":109},{"id":15763,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15764],"locationId":109},{"id":15764,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15765],"locationId":109},{"id":15765,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15766],"locationId":109},{"id":15766,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15767],"locationId":109},{"id":15767,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15768],"locationId":109},{"id":15768,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15769],"locationId":109},{"id":15769,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15770],"locationId":109},{"id":15770,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15771],"locationId":109},{"id":15771,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15772],"locationId":109},{"id":15772,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15773],"locationId":109},{"id":15773,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15774],"locationId":109},{"id":15774,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15775],"locationId":109},{"id":15775,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15776],"locationId":109},{"id":15776,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15777],"locationId":109},{"id":15777,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15778],"locationId":109},{"id":15778,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15779],"locationId":109},{"id":15779,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15780],"locationId":109},{"id":15780,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15781],"locationId":109},{"id":15781,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15782],"locationId":109},{"id":15782,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15783],"locationId":109},{"id":15783,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15784],"locationId":109},{"id":15784,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15785],"locationId":109},{"id":15785,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15786],"locationId":109},{"id":15786,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15787],"locationId":109},{"id":15787,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15788],"locationId":109},{"id":15788,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15789],"locationId":109},{"id":15789,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15790],"locationId":109},{"id":15790,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15791],"locationId":109},{"id":15791,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15792],"locationId":109},{"id":15792,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15793],"locationId":109},{"id":15793,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15794],"locationId":109},{"id":15794,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15795],"locationId":109},{"id":15795,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15796],"locationId":109},{"id":15796,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15797],"locationId":109},{"id":15797,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15798],"locationId":109},{"id":15798,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15799],"locationId":109},{"id":15799,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15800],"locationId":109},{"id":15800,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15801],"locationId":109},{"id":15801,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15802],"locationId":109},{"id":15802,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15803],"locationId":109},{"id":15803,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15804],"locationId":109},{"id":15804,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15810,"callFrame":{"functionName":"get parent","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":332,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":333,"ticks":1,"startLocationId":746,"endLocationId":632}],"locationId":631},{"id":15811,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15812],"locationId":3},{"id":15812,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15813],"locationId":398},{"id":15813,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15814],"locationId":399},{"id":15814,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15815,15850],"locationId":2},{"id":15815,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15816],"locationId":5},{"id":15816,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15817],"locationId":6},{"id":15817,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15818],"locationId":7},{"id":15818,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15819],"locationId":6},{"id":15819,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15820],"locationId":8},{"id":15820,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15821],"locationId":9},{"id":15821,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15822],"locationId":6},{"id":15822,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[15823,15835,15846],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":15823,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15824],"locationId":84},{"id":15824,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15825],"locationId":6},{"id":15825,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15826],"locationId":85},{"id":15826,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15827],"locationId":86},{"id":15827,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":1,"children":[15828],"positionTicks":[{"line":29,"ticks":1,"startLocationId":483,"endLocationId":484}],"locationId":87},{"id":15828,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15829],"locationId":88},{"id":15829,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15830],"locationId":74},{"id":15830,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15831],"locationId":89},{"id":15831,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[15832,15836,15841,15847],"locationId":90},{"id":15832,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[15833],"locationId":239},{"id":15833,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":0,"children":[15834],"locationId":240},{"id":15834,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":263,"endLocationId":264}],"locationId":262},{"id":15836,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15837],"locationId":117},{"id":15837,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[15838],"locationId":118},{"id":15838,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[15839],"locationId":123},{"id":15839,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15840],"locationId":29},{"id":15840,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15841,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[15842],"locationId":102},{"id":15842,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[15843],"locationId":247},{"id":15843,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[15844],"locationId":248},{"id":15844,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[15845],"locationId":249},{"id":15845,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":82,"ticks":1,"startLocationId":251,"endLocationId":252}],"locationId":250},{"id":15847,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15848],"locationId":40},{"id":15848,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15849],"locationId":29},{"id":15849,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15835,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15846,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":15850,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15851],"locationId":3},{"id":15851,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15852],"locationId":398},{"id":15852,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15853],"locationId":399},{"id":15853,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15854,15909],"locationId":2},{"id":15854,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15855],"locationId":5},{"id":15855,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15856],"locationId":6},{"id":15856,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15857],"locationId":7},{"id":15857,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15858],"locationId":6},{"id":15858,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15859],"locationId":8},{"id":15859,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15860],"locationId":9},{"id":15860,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15861],"locationId":6},{"id":15861,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15862,15863,15867],"locationId":10},{"id":15862,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15863,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15864],"locationId":11},{"id":15864,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15865],"locationId":12},{"id":15865,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15866],"locationId":13},{"id":15866,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[15897,15905],"positionTicks":[{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":15897,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[15898],"locationId":36},{"id":15898,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15899],"locationId":40},{"id":15899,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15900],"locationId":29},{"id":15900,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15905,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":15867,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15868],"locationId":84},{"id":15868,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15869],"locationId":6},{"id":15869,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15870],"locationId":85},{"id":15870,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15871],"locationId":86},{"id":15871,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15872],"locationId":87},{"id":15872,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15873],"locationId":88},{"id":15873,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15874],"locationId":74},{"id":15874,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[15875],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":15875,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[15876,15877,15906],"locationId":90},{"id":15876,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15877,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15878,15901],"locationId":109},{"id":15878,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15879],"locationId":109},{"id":15879,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15880],"locationId":109},{"id":15880,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15881],"locationId":109},{"id":15881,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15882],"locationId":109},{"id":15882,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15883],"locationId":109},{"id":15883,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15884],"locationId":109},{"id":15884,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15885],"locationId":109},{"id":15885,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15886],"locationId":109},{"id":15886,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15887],"locationId":109},{"id":15887,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15888],"locationId":109},{"id":15888,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15889],"locationId":109},{"id":15889,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15890],"locationId":109},{"id":15890,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15891],"locationId":109},{"id":15891,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15892],"locationId":109},{"id":15892,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15893],"locationId":109},{"id":15893,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15894],"locationId":109},{"id":15894,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15895],"locationId":109},{"id":15895,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15896],"locationId":109},{"id":15896,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15901,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15902],"locationId":114},{"id":15902,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15903],"locationId":114},{"id":15903,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15904],"locationId":114},{"id":15904,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15906,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15907],"locationId":40},{"id":15907,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15908],"locationId":29},{"id":15908,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15909,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15910],"locationId":3},{"id":15910,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15911],"locationId":398},{"id":15911,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":1,"children":[15912],"positionTicks":[{"line":4,"ticks":1,"startLocationId":747,"endLocationId":748}],"locationId":399},{"id":15912,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15913,15954],"locationId":2},{"id":15913,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15914],"locationId":5},{"id":15914,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15915],"locationId":6},{"id":15915,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15916],"locationId":7},{"id":15916,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15917],"locationId":6},{"id":15917,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15918],"locationId":8},{"id":15918,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15919],"locationId":9},{"id":15919,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15920],"locationId":6},{"id":15920,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[15921,15941,15942,15953],"locationId":10},{"id":15921,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15922],"locationId":84},{"id":15922,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15923],"locationId":6},{"id":15923,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15924],"locationId":85},{"id":15924,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15925],"locationId":86},{"id":15925,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15926],"locationId":87},{"id":15926,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15927],"locationId":88},{"id":15927,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15928],"locationId":74},{"id":15928,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[15929],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":15929,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[15930],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":15930,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[15931],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":15931,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15932],"locationId":109},{"id":15932,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15933],"locationId":109},{"id":15933,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15934],"locationId":109},{"id":15934,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15935],"locationId":114},{"id":15935,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15936],"locationId":114},{"id":15936,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15937],"locationId":114},{"id":15937,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15938],"locationId":114},{"id":15938,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15939],"locationId":114},{"id":15939,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15940],"locationId":114},{"id":15940,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15941,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15942,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[15943],"locationId":11},{"id":15943,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[15944,15947],"locationId":12},{"id":15944,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[15945],"locationId":372},{"id":15945,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[15946],"locationId":373},{"id":15946,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":1,"positionTicks":[{"line":245,"ticks":1,"startLocationId":547,"endLocationId":548}],"locationId":545},{"id":15947,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[15948],"locationId":13},{"id":15948,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[15949],"locationId":14},{"id":15949,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[15950],"locationId":36},{"id":15950,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[15951],"locationId":40},{"id":15951,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15952],"locationId":29},{"id":15952,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15953,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":15954,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15955],"locationId":3},{"id":15955,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15956],"locationId":398},{"id":15956,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15957],"locationId":399},{"id":15957,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15958,15990],"locationId":2},{"id":15958,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15959],"locationId":5},{"id":15959,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15960],"locationId":6},{"id":15960,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15961],"locationId":7},{"id":15961,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15962],"locationId":6},{"id":15962,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15963],"locationId":8},{"id":15963,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[15964],"locationId":9},{"id":15964,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15965],"locationId":6},{"id":15965,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[15966,15983,15988],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260},{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":15966,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[15967],"locationId":84},{"id":15967,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15968],"locationId":6},{"id":15968,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[15969],"locationId":85},{"id":15969,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[15970],"locationId":86},{"id":15970,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[15971],"locationId":87},{"id":15971,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[15972],"locationId":88},{"id":15972,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[15973],"locationId":74},{"id":15973,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[15974],"locationId":89},{"id":15974,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[15975,15978,15984,15989],"locationId":90},{"id":15975,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[15976],"locationId":102},{"id":15976,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15977],"locationId":29},{"id":15977,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15978,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[15979],"locationId":117},{"id":15979,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[15980],"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":15980,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[15981],"locationId":123},{"id":15981,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[15982],"locationId":29},{"id":15982,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":15984,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[15985],"locationId":109},{"id":15985,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15986],"locationId":114},{"id":15986,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[15987],"locationId":114},{"id":15987,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":15989,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":15983,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":15988,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":15990,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[15991],"locationId":3},{"id":15991,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[15992],"locationId":398},{"id":15992,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[15993],"locationId":399},{"id":15993,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[15994,16042],"locationId":2},{"id":15994,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[15995],"locationId":5},{"id":15995,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15996],"locationId":6},{"id":15996,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[15997],"locationId":7},{"id":15997,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[15998],"locationId":6},{"id":15998,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[15999],"locationId":8},{"id":15999,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16000],"locationId":9},{"id":16000,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16001],"locationId":6},{"id":16001,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[16002,16011],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":16002,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16003],"locationId":84},{"id":16003,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16004],"locationId":6},{"id":16004,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16005],"locationId":85},{"id":16005,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16006],"locationId":86},{"id":16006,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16007],"locationId":87},{"id":16007,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16008],"locationId":88},{"id":16008,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16009],"locationId":74},{"id":16009,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16010,16025,16041],"locationId":89},{"id":16010,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":16025,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16026,16031,16038,16039],"locationId":90},{"id":16026,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16027],"locationId":117},{"id":16027,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16028],"locationId":118},{"id":16028,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16029],"locationId":123},{"id":16029,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16030],"locationId":29},{"id":16030,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16031,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16032],"locationId":109},{"id":16032,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16033],"locationId":114},{"id":16033,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16034],"locationId":114},{"id":16034,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16035],"locationId":114},{"id":16035,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16036],"locationId":114},{"id":16036,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16037],"locationId":114},{"id":16037,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16038,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":16039,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16040],"locationId":40},{"id":16040,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":16041,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305}],"locationId":129},{"id":16011,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16012],"locationId":11},{"id":16012,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16013,16019],"locationId":12},{"id":16013,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16014],"locationId":13},{"id":16014,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16015],"locationId":14},{"id":16015,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[16016],"locationId":36},{"id":16016,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16017],"locationId":40},{"id":16017,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16018],"locationId":29},{"id":16018,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16019,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[16020],"locationId":72},{"id":16020,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[16021],"locationId":73},{"id":16021,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16022],"locationId":74},{"id":16022,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[16023],"locationId":75},{"id":16023,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[16024],"locationId":68},{"id":16024,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":16042,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16043],"locationId":3},{"id":16043,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16044],"locationId":398},{"id":16044,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16045],"locationId":399},{"id":16045,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16046,16083],"locationId":2},{"id":16046,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16047],"locationId":5},{"id":16047,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16048],"locationId":6},{"id":16048,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16049],"locationId":7},{"id":16049,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16050],"locationId":6},{"id":16050,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16051],"locationId":8},{"id":16051,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16052],"locationId":9},{"id":16052,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16053],"locationId":6},{"id":16053,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16054,16063,16075],"locationId":10},{"id":16054,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16055],"locationId":84},{"id":16055,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16056],"locationId":6},{"id":16056,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16057],"locationId":85},{"id":16057,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16058],"locationId":86},{"id":16058,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16059],"locationId":87},{"id":16059,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16060],"locationId":88},{"id":16060,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16061],"locationId":74},{"id":16061,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16062],"locationId":89},{"id":16062,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[16064],"positionTicks":[{"line":73,"ticks":2,"startLocationId":210,"endLocationId":188},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":16064,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16065,16067],"locationId":109},{"id":16065,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16066],"locationId":109},{"id":16066,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16071],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16071,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16072],"locationId":109},{"id":16072,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16073],"locationId":114},{"id":16073,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16074],"locationId":114},{"id":16074,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16067,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[16068],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16068,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16069],"locationId":114},{"id":16069,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16070],"locationId":114},{"id":16070,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16063,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16075,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16076],"locationId":11},{"id":16076,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16077],"locationId":12},{"id":16077,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16078],"locationId":13},{"id":16078,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[16079],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":16079,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[16080],"locationId":36},{"id":16080,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16081],"locationId":40},{"id":16081,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16082],"locationId":29},{"id":16082,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16083,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16084],"locationId":3},{"id":16084,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16085],"locationId":398},{"id":16085,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16086],"locationId":399},{"id":16086,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16087,16129],"locationId":2},{"id":16087,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16088],"locationId":5},{"id":16088,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16089],"locationId":6},{"id":16089,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16090],"locationId":7},{"id":16090,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16091],"locationId":6},{"id":16091,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16092],"locationId":8},{"id":16092,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16093],"locationId":9},{"id":16093,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16094],"locationId":6},{"id":16094,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16095,16098,16119,16123],"locationId":10},{"id":16095,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16096],"locationId":11},{"id":16096,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16097,16113],"locationId":12},{"id":16097,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":887,"ticks":1,"startLocationId":319,"endLocationId":320}],"locationId":72},{"id":16113,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16114],"locationId":13},{"id":16114,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16115],"locationId":14},{"id":16115,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[16116],"locationId":36},{"id":16116,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16117],"locationId":40},{"id":16117,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16118],"locationId":29},{"id":16118,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16098,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16099],"locationId":84},{"id":16099,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16100],"locationId":6},{"id":16100,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16101],"locationId":85},{"id":16101,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16102],"locationId":86},{"id":16102,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16103],"locationId":87},{"id":16103,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16104],"locationId":88},{"id":16104,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16105],"locationId":74},{"id":16105,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[16106],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16106,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16107,16109,16112,16121],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":16107,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16108],"locationId":109},{"id":16108,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16124],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16124,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16125],"locationId":114},{"id":16125,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16126],"locationId":114},{"id":16126,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16127],"locationId":114},{"id":16127,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16128],"locationId":114},{"id":16128,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16109,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16110],"locationId":40},{"id":16110,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16111],"locationId":29},{"id":16111,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16112,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16121,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16122],"locationId":117},{"id":16122,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":16119,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":0,"children":[16120],"locationId":148},{"id":16120,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":16123,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16129,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16130],"locationId":3},{"id":16130,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16131],"locationId":398},{"id":16131,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16132],"locationId":399},{"id":16132,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16133,16192],"locationId":2},{"id":16133,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16134],"locationId":5},{"id":16134,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16135],"locationId":6},{"id":16135,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16136],"locationId":7},{"id":16136,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16137],"locationId":6},{"id":16137,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16138],"locationId":8},{"id":16138,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16139],"locationId":9},{"id":16139,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16140],"locationId":6},{"id":16140,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16141,16142,16147],"locationId":10},{"id":16141,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16142,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16143],"locationId":11},{"id":16143,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16144],"locationId":12},{"id":16144,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16145],"locationId":13},{"id":16145,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16146,16191],"locationId":14},{"id":16146,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":16191,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":3,"positionTicks":[{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24},{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19},{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":16147,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16148],"locationId":84},{"id":16148,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16149],"locationId":6},{"id":16149,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16150],"locationId":85},{"id":16150,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16151],"locationId":86},{"id":16151,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16152],"locationId":87},{"id":16152,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16153],"locationId":88},{"id":16153,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16154],"locationId":74},{"id":16154,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16155],"locationId":89},{"id":16155,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16156,16183,16188],"locationId":90},{"id":16156,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16157],"locationId":109},{"id":16157,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16158,16166],"locationId":109},{"id":16158,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16159],"locationId":114},{"id":16159,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16160],"locationId":114},{"id":16160,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16161],"locationId":114},{"id":16161,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16162],"locationId":114},{"id":16162,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16163],"locationId":114},{"id":16163,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16164],"locationId":114},{"id":16164,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16165],"locationId":114},{"id":16165,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16166,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16167],"locationId":109},{"id":16167,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16168],"locationId":109},{"id":16168,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16169],"locationId":109},{"id":16169,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16170],"locationId":109},{"id":16170,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16171],"locationId":109},{"id":16171,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16172],"locationId":109},{"id":16172,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16173],"locationId":109},{"id":16173,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16174],"locationId":109},{"id":16174,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16175],"locationId":109},{"id":16175,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16176],"locationId":109},{"id":16176,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16177],"locationId":109},{"id":16177,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16178],"locationId":109},{"id":16178,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16179],"locationId":109},{"id":16179,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16180],"locationId":109},{"id":16180,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16181],"locationId":109},{"id":16181,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16182],"locationId":109},{"id":16182,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16183,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16184],"locationId":117},{"id":16184,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16185],"locationId":118},{"id":16185,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16186],"locationId":123},{"id":16186,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[16187],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":16187,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16188,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16189],"locationId":40},{"id":16189,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16190],"locationId":29},{"id":16190,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16192,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16193],"locationId":3},{"id":16193,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16194],"locationId":398},{"id":16194,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16195],"locationId":399},{"id":16195,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16196,16237],"locationId":2},{"id":16196,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16197],"locationId":5},{"id":16197,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16198],"locationId":6},{"id":16198,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16199,16205],"locationId":7},{"id":16199,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[16200],"locationId":196},{"id":16200,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[16201],"locationId":197},{"id":16201,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[16202],"locationId":198},{"id":16202,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16203],"locationId":29},{"id":16203,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[16204],"locationId":199},{"id":16204,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":16205,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16206],"locationId":6},{"id":16206,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16207,16232],"locationId":8},{"id":16207,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16208],"locationId":9},{"id":16208,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16209],"locationId":6},{"id":16209,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16210,16217,16236],"locationId":10},{"id":16210,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16211],"locationId":11},{"id":16211,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16212],"locationId":12},{"id":16212,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16213],"locationId":13},{"id":16213,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[16214,16215,16226,16227],"positionTicks":[{"line":576,"ticks":2,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":16214,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":16215,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[16216],"locationId":46},{"id":16216,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":16226,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":16227,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[16228],"locationId":15},{"id":16228,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":16217,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16218],"locationId":84},{"id":16218,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16219],"locationId":6},{"id":16219,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16220],"locationId":85},{"id":16220,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16221],"locationId":86},{"id":16221,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16222],"locationId":87},{"id":16222,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16223],"locationId":88},{"id":16223,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16224],"locationId":74},{"id":16224,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16225],"locationId":89},{"id":16225,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16229],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":16229,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16230],"locationId":109},{"id":16230,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16231],"locationId":109},{"id":16231,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16236,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16232,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[16233],"locationId":157},{"id":16233,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[16234],"locationId":158},{"id":16234,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16235],"locationId":29},{"id":16235,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":16237,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16238],"locationId":3},{"id":16238,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16239],"locationId":398},{"id":16239,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16240],"locationId":399},{"id":16240,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16241,16276],"locationId":2},{"id":16241,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16242],"locationId":5},{"id":16242,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16243],"locationId":6},{"id":16243,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16244],"locationId":7},{"id":16244,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16245],"locationId":6},{"id":16245,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16246,16268],"locationId":8},{"id":16246,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16247],"locationId":9},{"id":16247,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16248],"locationId":6},{"id":16248,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[16249,16250,16259,16274],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":16249,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":16250,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16251],"locationId":84},{"id":16251,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16252],"locationId":6},{"id":16252,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16253],"locationId":85},{"id":16253,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16254],"locationId":86},{"id":16254,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16255],"locationId":87},{"id":16255,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16256],"locationId":88},{"id":16256,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16257],"locationId":74},{"id":16257,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16258,16265],"locationId":89},{"id":16258,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":16265,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16266],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":16266,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16267],"locationId":117},{"id":16267,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":16259,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16260],"locationId":11},{"id":16260,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16261],"locationId":12},{"id":16261,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16262],"locationId":13},{"id":16262,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[16263,16273],"positionTicks":[{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":16263,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[16264],"locationId":15},{"id":16264,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":16273,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":16274,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16268,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[16269],"locationId":157},{"id":16269,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[16270],"locationId":158},{"id":16270,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16271],"locationId":29},{"id":16271,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[16272],"locationId":159},{"id":16272,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"children":[16275],"positionTicks":[{"line":94,"ticks":1,"startLocationId":353,"endLocationId":348}],"locationId":160},{"id":16275,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":16276,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16277],"locationId":3},{"id":16277,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16278],"locationId":398},{"id":16278,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16279],"locationId":399},{"id":16279,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16280,16320],"locationId":2},{"id":16280,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16281],"locationId":5},{"id":16281,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16282],"locationId":6},{"id":16282,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16283],"locationId":7},{"id":16283,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16284],"locationId":6},{"id":16284,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16285],"locationId":8},{"id":16285,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16286],"locationId":9},{"id":16286,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16287],"locationId":6},{"id":16287,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16288,16295,16309],"locationId":10},{"id":16288,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16289],"locationId":12},{"id":16289,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[16290],"locationId":372},{"id":16290,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[16291],"locationId":373},{"id":16291,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":0,"children":[16292],"locationId":545},{"id":16292,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16293],"locationId":13},{"id":16293,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[16294],"locationId":68},{"id":16294,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":16295,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16296],"locationId":84},{"id":16296,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16297],"locationId":6},{"id":16297,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16298],"locationId":85},{"id":16298,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16299],"locationId":86},{"id":16299,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16300],"locationId":87},{"id":16300,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16301],"locationId":88},{"id":16301,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16302],"locationId":74},{"id":16302,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16303,16304],"locationId":89},{"id":16303,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":2,"positionTicks":[{"line":42,"ticks":2,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":16304,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16305,16306],"locationId":90},{"id":16305,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"children":[16314],"positionTicks":[{"line":26,"ticks":1,"startLocationId":127,"endLocationId":128}],"locationId":40},{"id":16314,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16315],"locationId":29},{"id":16315,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16306,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16307],"locationId":109},{"id":16307,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16308],"locationId":109},{"id":16308,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16309,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16310,16313],"locationId":11},{"id":16310,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16311],"locationId":12},{"id":16311,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16312],"locationId":13},{"id":16312,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[16316,16317],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213},{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":16316,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":16317,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[16318],"locationId":36},{"id":16318,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16319],"locationId":40},{"id":16319,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":16313,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":21,"ticks":1,"startLocationId":608,"endLocationId":609}],"locationId":339},{"id":16320,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16321],"locationId":3},{"id":16321,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16322],"locationId":398},{"id":16322,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16323],"locationId":399},{"id":16323,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16324,16356],"locationId":2},{"id":16324,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16325],"locationId":5},{"id":16325,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16326],"locationId":6},{"id":16326,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16327,16328],"locationId":7},{"id":16327,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":16328,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16329],"locationId":6},{"id":16329,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16330,16336],"locationId":8},{"id":16330,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[16331],"locationId":157},{"id":16331,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[16332],"locationId":158},{"id":16332,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[16333],"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":16333,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[16334],"locationId":159},{"id":16334,"callFrame":{"functionName":"SymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":8,"columnNumber":15},"hitCount":0,"children":[16335],"locationId":705},{"id":16335,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":16336,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16337],"locationId":9},{"id":16337,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16338],"locationId":6},{"id":16338,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16339,16340],"locationId":10},{"id":16339,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16340,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16341],"locationId":84},{"id":16341,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16342],"locationId":6},{"id":16342,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16343],"locationId":85},{"id":16343,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16344],"locationId":86},{"id":16344,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16345],"locationId":87},{"id":16345,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16346],"locationId":88},{"id":16346,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16347],"locationId":74},{"id":16347,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16348],"locationId":89},{"id":16348,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16349,16350],"locationId":90},{"id":16349,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16350,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16351,16353],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16351,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16352],"locationId":114},{"id":16352,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16353,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16354],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16354,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16355],"locationId":109},{"id":16355,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16356,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16357],"locationId":3},{"id":16357,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16358],"locationId":398},{"id":16358,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16359],"locationId":399},{"id":16359,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16360,16395],"locationId":2},{"id":16360,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16361],"locationId":5},{"id":16361,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16362],"locationId":6},{"id":16362,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16363],"locationId":7},{"id":16363,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16364],"locationId":6},{"id":16364,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16365],"locationId":8},{"id":16365,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16366],"locationId":9},{"id":16366,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16367],"locationId":6},{"id":16367,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[16368,16369,16381],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":16368,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":16369,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16370],"locationId":84},{"id":16370,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16371],"locationId":6},{"id":16371,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16372],"locationId":85},{"id":16372,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16373],"locationId":86},{"id":16373,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16374],"locationId":87},{"id":16374,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16375],"locationId":88},{"id":16375,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16376],"locationId":74},{"id":16376,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16377],"locationId":89},{"id":16377,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16378,16394],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":16378,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16379],"locationId":40},{"id":16379,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16380],"locationId":29},{"id":16380,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16394,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16381,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16382],"locationId":11},{"id":16382,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16383],"locationId":12},{"id":16383,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16384],"locationId":13},{"id":16384,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16385,16389,16390,16391],"locationId":14},{"id":16385,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[16386],"locationId":36},{"id":16386,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16387],"locationId":40},{"id":16387,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16388],"locationId":29},{"id":16388,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16389,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":663,"ticks":1,"startLocationId":377,"endLocationId":313}],"locationId":46},{"id":16390,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":16391,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[16392],"locationId":64},{"id":16392,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[16393],"locationId":65},{"id":16393,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":16395,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16396],"locationId":3},{"id":16396,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16397],"locationId":398},{"id":16397,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16398],"locationId":399},{"id":16398,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16399,16434],"locationId":2},{"id":16399,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16400],"locationId":5},{"id":16400,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16401],"locationId":6},{"id":16401,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16402],"locationId":7},{"id":16402,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16403],"locationId":6},{"id":16403,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16404],"locationId":8},{"id":16404,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16405],"locationId":9},{"id":16405,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16406],"locationId":6},{"id":16406,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[16407,16412],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":16407,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16408],"locationId":11},{"id":16408,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16409],"locationId":12},{"id":16409,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16410],"locationId":13},{"id":16410,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16411],"locationId":14},{"id":16411,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[16432],"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":16432,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[16433],"locationId":25},{"id":16433,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":16412,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16413],"locationId":84},{"id":16413,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16414],"locationId":6},{"id":16414,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16415],"locationId":85},{"id":16415,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16416],"locationId":86},{"id":16416,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16417],"locationId":87},{"id":16417,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16418],"locationId":88},{"id":16418,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16419],"locationId":74},{"id":16419,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16420],"locationId":89},{"id":16420,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16421,16426,16429],"locationId":90},{"id":16421,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16422],"locationId":117},{"id":16422,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[16423],"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":16423,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16424],"locationId":123},{"id":16424,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[16425],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":16425,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16426,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16427],"locationId":40},{"id":16427,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16428],"locationId":29},{"id":16428,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16429,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16430],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16430,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16431],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16431,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16434,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16435],"locationId":3},{"id":16435,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16436],"locationId":398},{"id":16436,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16437],"locationId":399},{"id":16437,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16438,16476],"locationId":2},{"id":16438,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16439],"locationId":5},{"id":16439,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16440],"locationId":6},{"id":16440,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16441],"locationId":7},{"id":16441,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16442],"locationId":6},{"id":16442,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16443],"locationId":8},{"id":16443,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16444],"locationId":9},{"id":16444,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16445],"locationId":6},{"id":16445,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16446,16458,16464,16473,16475],"locationId":10},{"id":16446,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16447],"locationId":84},{"id":16447,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16448],"locationId":6},{"id":16448,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16449],"locationId":85},{"id":16449,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16450],"locationId":86},{"id":16450,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16451],"locationId":87},{"id":16451,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16452],"locationId":88},{"id":16452,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16453],"locationId":74},{"id":16453,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[16454],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16454,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16455,16459],"locationId":90},{"id":16455,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16456],"locationId":40},{"id":16456,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16457],"locationId":29},{"id":16457,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16459,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16460],"locationId":117},{"id":16460,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16461],"locationId":118},{"id":16461,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16462],"locationId":123},{"id":16462,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16463],"locationId":29},{"id":16463,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16458,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150},{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":16464,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16465],"locationId":11},{"id":16465,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16466],"locationId":12},{"id":16466,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16467],"locationId":13},{"id":16467,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16468,16472],"locationId":14},{"id":16468,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[16469],"locationId":36},{"id":16469,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16470],"locationId":40},{"id":16470,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16471],"locationId":29},{"id":16471,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16472,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":16473,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[16474],"locationId":151},{"id":16474,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":441,"ticks":1,"startLocationId":584,"endLocationId":585}],"locationId":151},{"id":16475,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16476,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16477],"locationId":3},{"id":16477,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16478],"locationId":398},{"id":16478,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16479],"locationId":399},{"id":16479,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16480,16502],"locationId":2},{"id":16480,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16481],"locationId":5},{"id":16481,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16482],"locationId":6},{"id":16482,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16483],"locationId":7},{"id":16483,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16484],"locationId":6},{"id":16484,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16485],"locationId":8},{"id":16485,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16486],"locationId":9},{"id":16486,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16487],"locationId":6},{"id":16487,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[16488,16489,16497],"positionTicks":[{"line":553,"ticks":1,"startLocationId":422,"endLocationId":423}],"locationId":10},{"id":16488,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16489,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16490],"locationId":84},{"id":16490,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16491],"locationId":6},{"id":16491,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16492],"locationId":85},{"id":16492,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16493],"locationId":86},{"id":16493,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16494],"locationId":87},{"id":16494,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16495],"locationId":88},{"id":16495,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16496],"locationId":74},{"id":16496,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[16498],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16498,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[16499,16500],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94},{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":16499,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16500,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16501],"locationId":109},{"id":16501,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16497,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209},{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":16502,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16503],"locationId":3},{"id":16503,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16504],"locationId":398},{"id":16504,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16505],"locationId":399},{"id":16505,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16506,16542],"locationId":2},{"id":16506,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16507],"locationId":5},{"id":16507,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16508],"locationId":6},{"id":16508,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16509],"locationId":7},{"id":16509,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16510],"locationId":6},{"id":16510,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16511],"locationId":8},{"id":16511,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16512],"locationId":9},{"id":16512,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16513],"locationId":6},{"id":16513,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16514,16515,16523],"locationId":10},{"id":16514,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16515,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16516],"locationId":84},{"id":16516,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16517],"locationId":6},{"id":16517,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16518],"locationId":85},{"id":16518,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16519],"locationId":86},{"id":16519,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16520],"locationId":87},{"id":16520,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16521],"locationId":88},{"id":16521,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16522],"locationId":74},{"id":16522,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[16532],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16532,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16533,16536,16537],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":16533,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16534],"locationId":117},{"id":16534,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16535],"locationId":118},{"id":16535,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":16536,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":16537,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16538],"locationId":109},{"id":16538,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16539],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16539,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16540],"locationId":114},{"id":16540,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16541],"locationId":114},{"id":16541,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16523,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16524],"locationId":11},{"id":16524,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16525],"locationId":12},{"id":16525,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16526],"locationId":13},{"id":16526,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[16527,16530,16531],"positionTicks":[{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":16527,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[16528],"locationId":64},{"id":16528,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[16529],"locationId":65},{"id":16529,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":16530,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":16531,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":16542,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16543],"locationId":3},{"id":16543,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16544],"locationId":398},{"id":16544,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16545],"locationId":399},{"id":16545,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16546,16595],"locationId":2},{"id":16546,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16547],"locationId":5},{"id":16547,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16548],"locationId":6},{"id":16548,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16549],"locationId":7},{"id":16549,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16550],"locationId":6},{"id":16550,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16551],"locationId":8},{"id":16551,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16552],"locationId":9},{"id":16552,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16553],"locationId":6},{"id":16553,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16554,16569],"locationId":10},{"id":16554,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16555],"locationId":84},{"id":16555,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16556],"locationId":6},{"id":16556,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16557],"locationId":85},{"id":16557,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16558],"locationId":86},{"id":16558,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16559],"locationId":87},{"id":16559,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16560],"locationId":88},{"id":16560,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16561],"locationId":74},{"id":16561,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16562,16568],"locationId":89},{"id":16562,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[16563,16579,16586],"positionTicks":[{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":16563,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16564],"locationId":117},{"id":16564,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16565],"locationId":118},{"id":16565,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16566],"locationId":123},{"id":16566,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16567],"locationId":29},{"id":16567,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16579,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16580],"locationId":109},{"id":16580,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16581,16587],"locationId":109},{"id":16581,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16582,16590],"locationId":109},{"id":16582,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16583],"locationId":109},{"id":16583,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16584],"locationId":114},{"id":16584,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16585],"locationId":114},{"id":16585,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16590,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16591],"locationId":114},{"id":16591,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16592],"locationId":114},{"id":16592,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16593],"locationId":114},{"id":16593,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16594],"locationId":114},{"id":16594,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16587,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16588],"locationId":114},{"id":16588,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16589],"locationId":114},{"id":16589,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16586,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16568,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":16569,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16570],"locationId":11},{"id":16570,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16571],"locationId":12},{"id":16571,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16572],"locationId":13},{"id":16572,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16573,16576],"locationId":14},{"id":16573,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[16574],"locationId":15},{"id":16574,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[16575],"locationId":25},{"id":16575,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":2,"positionTicks":[{"line":338,"ticks":2,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":16576,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[16577],"locationId":36},{"id":16577,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16578],"locationId":40},{"id":16578,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":16595,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16596],"locationId":3},{"id":16596,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16597],"locationId":398},{"id":16597,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16598],"locationId":399},{"id":16598,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16599,16655],"locationId":2},{"id":16599,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16600],"locationId":5},{"id":16600,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16601],"locationId":6},{"id":16601,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16602],"locationId":7},{"id":16602,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16603],"locationId":6},{"id":16603,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16604,16617],"locationId":8},{"id":16604,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16605],"locationId":9},{"id":16605,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16606],"locationId":6},{"id":16606,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16607,16608,16622],"locationId":10},{"id":16607,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16608,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16609],"locationId":84},{"id":16609,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16610],"locationId":6},{"id":16610,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16611],"locationId":85},{"id":16611,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16612],"locationId":86},{"id":16612,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16613],"locationId":87},{"id":16613,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16614],"locationId":88},{"id":16614,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16615],"locationId":74},{"id":16615,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[16616,16631],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187},{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":16616,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16632,16635],"positionTicks":[{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383}],"locationId":90},{"id":16632,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16633],"locationId":109},{"id":16633,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16634,16637],"locationId":109},{"id":16634,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16637,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16638],"locationId":109},{"id":16638,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16639],"locationId":109},{"id":16639,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16640],"locationId":109},{"id":16640,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16641],"locationId":109},{"id":16641,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16642],"locationId":109},{"id":16642,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16643],"locationId":109},{"id":16643,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16644],"locationId":109},{"id":16644,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16645],"locationId":109},{"id":16645,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16646],"locationId":109},{"id":16646,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16647],"locationId":109},{"id":16647,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16648],"locationId":109},{"id":16648,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16649],"locationId":109},{"id":16649,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16650],"locationId":109},{"id":16650,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16651],"locationId":109},{"id":16651,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16652],"locationId":109},{"id":16652,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16653],"locationId":109},{"id":16653,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16654],"locationId":109},{"id":16654,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16635,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[16636],"locationId":97},{"id":16636,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16631,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":16622,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16623],"locationId":11},{"id":16623,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16624],"locationId":12},{"id":16624,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16625],"locationId":13},{"id":16625,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16626,16630],"locationId":14},{"id":16626,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[16627],"locationId":36},{"id":16627,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16628],"locationId":40},{"id":16628,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16629],"locationId":29},{"id":16629,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16630,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":16617,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[16618],"locationId":157},{"id":16618,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[16619],"locationId":158},{"id":16619,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16620],"locationId":29},{"id":16620,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[16621],"locationId":159},{"id":16621,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":81,"ticks":1,"startLocationId":354,"endLocationId":355}],"locationId":160},{"id":16655,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16656],"locationId":3},{"id":16656,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16657],"locationId":398},{"id":16657,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16658],"locationId":399},{"id":16658,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16659,16714],"locationId":2},{"id":16659,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16660],"locationId":5},{"id":16660,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16661],"locationId":6},{"id":16661,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16662],"locationId":7},{"id":16662,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16663],"locationId":6},{"id":16663,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16664],"locationId":8},{"id":16664,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16665],"locationId":9},{"id":16665,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16666],"locationId":6},{"id":16666,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16667,16679,16684],"locationId":10},{"id":16667,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16668],"locationId":84},{"id":16668,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16669],"locationId":6},{"id":16669,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16670],"locationId":85},{"id":16670,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16671],"locationId":86},{"id":16671,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16672],"locationId":87},{"id":16672,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16673],"locationId":88},{"id":16673,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16674],"locationId":74},{"id":16674,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16675],"locationId":89},{"id":16675,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16676,16686],"locationId":90},{"id":16676,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16677],"locationId":40},{"id":16677,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16678],"locationId":29},{"id":16678,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16686,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16687],"locationId":109},{"id":16687,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16688],"locationId":109},{"id":16688,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16696],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16696,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16697],"locationId":109},{"id":16697,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16698],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16698,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16699],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16699,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16700],"locationId":109},{"id":16700,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16701],"locationId":109},{"id":16701,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16702],"locationId":109},{"id":16702,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16703],"locationId":109},{"id":16703,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16704],"locationId":109},{"id":16704,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16705],"locationId":109},{"id":16705,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16706],"locationId":109},{"id":16706,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16707],"locationId":109},{"id":16707,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16708],"locationId":109},{"id":16708,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16709],"locationId":109},{"id":16709,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16710],"locationId":109},{"id":16710,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16711],"locationId":109},{"id":16711,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16712],"locationId":109},{"id":16712,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16713],"locationId":109},{"id":16713,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16679,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16680],"locationId":11},{"id":16680,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16681],"locationId":12},{"id":16681,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16682],"locationId":13},{"id":16682,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16683,16685,16689],"locationId":14},{"id":16683,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":16685,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":16689,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[16690],"locationId":46},{"id":16690,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[16691],"locationId":54},{"id":16691,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[16692],"locationId":55},{"id":16692,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[16693],"locationId":56},{"id":16693,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[16694],"locationId":28},{"id":16694,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16695],"locationId":29},{"id":16695,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16684,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16714,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16715],"locationId":3},{"id":16715,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16716],"locationId":398},{"id":16716,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16717],"locationId":399},{"id":16717,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16718,16771],"locationId":2},{"id":16718,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16719],"locationId":5},{"id":16719,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16720],"locationId":6},{"id":16720,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16721],"locationId":7},{"id":16721,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16722],"locationId":6},{"id":16722,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16723,16737],"locationId":8},{"id":16723,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16724],"locationId":9},{"id":16724,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16725],"locationId":6},{"id":16725,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16726,16736,16743],"locationId":10},{"id":16726,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16727],"locationId":84},{"id":16727,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16728],"locationId":6},{"id":16728,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16729],"locationId":85},{"id":16729,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16730],"locationId":86},{"id":16730,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16731],"locationId":87},{"id":16731,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16732],"locationId":88},{"id":16732,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16733],"locationId":74},{"id":16733,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16734],"locationId":89},{"id":16734,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16735,16750],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":16735,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16750,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16751],"locationId":109},{"id":16751,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16752],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16752,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16753],"locationId":109},{"id":16753,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16754],"locationId":109},{"id":16754,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16755,16761],"locationId":109},{"id":16755,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16756],"locationId":114},{"id":16756,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16757],"locationId":114},{"id":16757,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16758],"locationId":114},{"id":16758,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16759],"locationId":114},{"id":16759,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16760],"locationId":114},{"id":16760,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16761,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16762],"locationId":109},{"id":16762,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16763],"locationId":109},{"id":16763,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16764],"locationId":109},{"id":16764,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16765],"locationId":109},{"id":16765,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16766],"locationId":109},{"id":16766,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16767],"locationId":109},{"id":16767,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16768],"locationId":109},{"id":16768,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16769],"locationId":109},{"id":16769,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16770],"locationId":109},{"id":16770,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16736,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16743,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16744],"locationId":11},{"id":16744,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16745],"locationId":12},{"id":16745,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16746],"locationId":13},{"id":16746,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16747],"locationId":14},{"id":16747,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[16748],"positionTicks":[{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":16748,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[16749],"locationId":25},{"id":16749,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":16737,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[16738],"locationId":157},{"id":16738,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[16739],"locationId":158},{"id":16739,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16740],"locationId":29},{"id":16740,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[16741],"locationId":159},{"id":16741,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[16742],"locationId":160},{"id":16742,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":16771,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16772],"locationId":3},{"id":16772,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16773],"locationId":398},{"id":16773,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16774],"locationId":399},{"id":16774,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16775,16809],"locationId":2},{"id":16775,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16776],"locationId":5},{"id":16776,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16777],"locationId":6},{"id":16777,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16778],"locationId":7},{"id":16778,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16779],"locationId":6},{"id":16779,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16780,16795],"locationId":8},{"id":16780,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16781],"locationId":9},{"id":16781,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16782],"locationId":6},{"id":16782,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16783,16802],"locationId":10},{"id":16783,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16784],"locationId":84},{"id":16784,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16785],"locationId":6},{"id":16785,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16786],"locationId":85},{"id":16786,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16787],"locationId":86},{"id":16787,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16788],"locationId":87},{"id":16788,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16789],"locationId":88},{"id":16789,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16790],"locationId":74},{"id":16790,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[16791,16801],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16791,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16792,16803,16804],"positionTicks":[{"line":77,"ticks":1,"startLocationId":94,"endLocationId":96}],"locationId":90},{"id":16792,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16793],"locationId":109},{"id":16793,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16794],"locationId":109},{"id":16794,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16803,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16804,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16805],"locationId":117},{"id":16805,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16806],"locationId":118},{"id":16806,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16807],"locationId":123},{"id":16807,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16808],"locationId":29},{"id":16808,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16801,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":16802,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":16795,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[16796],"locationId":157},{"id":16796,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[16797],"locationId":158},{"id":16797,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16798],"locationId":29},{"id":16798,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[16799],"locationId":159},{"id":16799,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[16800],"locationId":160},{"id":16800,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":16809,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16810],"locationId":3},{"id":16810,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16811],"locationId":398},{"id":16811,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16812],"locationId":399},{"id":16812,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16813,16844],"locationId":2},{"id":16813,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16814],"locationId":5},{"id":16814,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16815],"locationId":6},{"id":16815,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16816],"locationId":7},{"id":16816,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16817],"locationId":6},{"id":16817,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16818],"locationId":8},{"id":16818,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16819],"locationId":9},{"id":16819,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16820],"locationId":6},{"id":16820,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16821,16822,16834],"locationId":10},{"id":16821,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":16822,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16823],"locationId":84},{"id":16823,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16824],"locationId":6},{"id":16824,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16825],"locationId":85},{"id":16825,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16826],"locationId":86},{"id":16826,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16827],"locationId":87},{"id":16827,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16828],"locationId":88},{"id":16828,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16829],"locationId":74},{"id":16829,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[16830],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16830,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16831,16837,16842],"locationId":90},{"id":16831,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16832],"locationId":40},{"id":16832,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[16833],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":16833,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16837,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16838],"locationId":117},{"id":16838,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16839],"locationId":118},{"id":16839,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16840],"locationId":123},{"id":16840,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16841],"locationId":29},{"id":16841,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16842,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16843],"locationId":109},{"id":16843,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16834,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[16835],"locationId":198},{"id":16835,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16836],"locationId":29},{"id":16836,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16844,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16845],"locationId":3},{"id":16845,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16846],"locationId":398},{"id":16846,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16847],"locationId":399},{"id":16847,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16848,16885],"locationId":2},{"id":16848,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16849],"locationId":5},{"id":16849,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16850],"locationId":6},{"id":16850,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16851],"locationId":7},{"id":16851,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16852],"locationId":6},{"id":16852,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16853],"locationId":8},{"id":16853,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16854],"locationId":9},{"id":16854,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16855],"locationId":6},{"id":16855,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16856,16857,16861],"locationId":10},{"id":16856,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":16857,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16858],"locationId":11},{"id":16858,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16859,16884],"locationId":12},{"id":16859,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16860],"locationId":13},{"id":16860,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[16882,16883],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":16882,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":729,"ticks":1,"startLocationId":530,"endLocationId":531}],"locationId":33},{"id":16883,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":16884,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":810,"ticks":1,"startLocationId":379,"endLocationId":380}],"locationId":256},{"id":16861,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16862],"locationId":84},{"id":16862,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16863],"locationId":6},{"id":16863,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16864],"locationId":85},{"id":16864,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16865],"locationId":86},{"id":16865,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16866],"locationId":87},{"id":16866,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16867],"locationId":88},{"id":16867,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16868],"locationId":74},{"id":16868,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[16869,16871],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16869,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":0,"children":[16870],"locationId":129},{"id":16870,"callFrame":{"functionName":"getComponent","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":117,"columnNumber":16},"hitCount":1,"positionTicks":[{"line":123,"ticks":1,"startLocationId":228,"endLocationId":229}],"locationId":227},{"id":16871,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16872,16877,16880],"locationId":90},{"id":16872,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16873],"locationId":117},{"id":16873,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16874],"locationId":118},{"id":16874,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16875],"locationId":123},{"id":16875,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16876],"locationId":29},{"id":16876,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16877,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16878],"locationId":109},{"id":16878,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16879],"locationId":114},{"id":16879,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16880,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[16881],"locationId":40},{"id":16881,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":16885,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16886],"locationId":3},{"id":16886,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16887],"locationId":398},{"id":16887,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16888],"locationId":399},{"id":16888,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16889,16918],"locationId":2},{"id":16889,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16890],"locationId":5},{"id":16890,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16891],"locationId":6},{"id":16891,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16892,16896],"locationId":7},{"id":16892,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[16893],"locationId":196},{"id":16893,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[16894],"locationId":197},{"id":16894,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[16895],"locationId":198},{"id":16895,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":16896,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16897],"locationId":6},{"id":16897,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16898],"locationId":8},{"id":16898,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16899],"locationId":9},{"id":16899,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16900],"locationId":6},{"id":16900,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[16901,16905,16915,16917],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":16901,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16902],"locationId":11},{"id":16902,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16903],"locationId":12},{"id":16903,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16904],"locationId":13},{"id":16904,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":3,"positionTicks":[{"line":576,"ticks":3,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":16905,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16906],"locationId":84},{"id":16906,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16907],"locationId":6},{"id":16907,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16908],"locationId":85},{"id":16908,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16909],"locationId":86},{"id":16909,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16910],"locationId":87},{"id":16910,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16911],"locationId":88},{"id":16911,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16912],"locationId":74},{"id":16912,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[16913],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16913,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[16914,16916],"locationId":90},{"id":16914,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16916,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16915,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":16917,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":16918,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16919],"locationId":3},{"id":16919,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16920],"locationId":398},{"id":16920,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16921],"locationId":399},{"id":16921,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16922,16965],"locationId":2},{"id":16922,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16923],"locationId":5},{"id":16923,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16924],"locationId":6},{"id":16924,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16925],"locationId":7},{"id":16925,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16926],"locationId":6},{"id":16926,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16927],"locationId":8},{"id":16927,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16928],"locationId":9},{"id":16928,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16929],"locationId":6},{"id":16929,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16930,16931,16940],"locationId":10},{"id":16930,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16931,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16932],"locationId":84},{"id":16932,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16933],"locationId":6},{"id":16933,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16934],"locationId":85},{"id":16934,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16935],"locationId":86},{"id":16935,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16936],"locationId":87},{"id":16936,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16937],"locationId":88},{"id":16937,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16938],"locationId":74},{"id":16938,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[16939,16964],"locationId":89},{"id":16939,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[16954,16960],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":16954,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[16955],"locationId":117},{"id":16955,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[16956,16959],"locationId":118},{"id":16956,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[16957],"locationId":123},{"id":16957,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[16958],"locationId":29},{"id":16958,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":16959,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":16960,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16961],"locationId":109},{"id":16961,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[16962],"locationId":109},{"id":16962,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[16963],"locationId":114},{"id":16963,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":16964,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":16940,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16941],"locationId":11},{"id":16941,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16942,16948],"locationId":12},{"id":16942,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16943],"locationId":13},{"id":16943,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16944,16945],"locationId":14},{"id":16944,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[16946],"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":16946,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[16947],"locationId":25},{"id":16947,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":16945,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":16948,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[16949],"locationId":372},{"id":16949,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[16950],"locationId":373},{"id":16950,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":0,"children":[16951],"locationId":545},{"id":16951,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16952],"locationId":13},{"id":16952,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[16953],"locationId":68},{"id":16953,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":16965,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16966],"locationId":3},{"id":16966,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16967],"locationId":398},{"id":16967,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16968],"locationId":399},{"id":16968,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[16969,16996],"locationId":2},{"id":16969,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[16970],"locationId":5},{"id":16970,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16971],"locationId":6},{"id":16971,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[16972],"locationId":7},{"id":16972,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16973],"locationId":6},{"id":16973,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[16974],"locationId":8},{"id":16974,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[16975],"locationId":9},{"id":16975,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16976],"locationId":6},{"id":16976,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[16977,16987,16990],"locationId":10},{"id":16977,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[16978],"locationId":84},{"id":16978,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[16979],"locationId":6},{"id":16979,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[16980],"locationId":85},{"id":16980,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[16981],"locationId":86},{"id":16981,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[16982],"locationId":87},{"id":16982,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[16983],"locationId":88},{"id":16983,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[16984],"locationId":74},{"id":16984,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[16985],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":16985,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[16986,16988],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":16986,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[16989],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16989,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":16988,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":16987,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":16990,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[16991],"locationId":11},{"id":16991,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[16992],"locationId":12},{"id":16992,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[16993],"locationId":13},{"id":16993,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[16994,16995],"locationId":14},{"id":16994,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":664,"ticks":1,"startLocationId":313,"endLocationId":314}],"locationId":46},{"id":16995,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":725,"ticks":1,"startLocationId":528,"endLocationId":34}],"locationId":33},{"id":16996,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[16997],"locationId":3},{"id":16997,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[16998],"locationId":398},{"id":16998,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[16999],"locationId":399},{"id":16999,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17000,17044],"locationId":2},{"id":17000,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17001],"locationId":5},{"id":17001,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17002],"locationId":6},{"id":17002,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17003],"locationId":7},{"id":17003,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17004],"locationId":6},{"id":17004,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[17005],"locationId":8},{"id":17005,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[17006],"locationId":9},{"id":17006,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17007],"locationId":6},{"id":17007,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[17008,17019],"locationId":10},{"id":17008,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[17009],"locationId":11},{"id":17009,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[17010,17013],"locationId":12},{"id":17010,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[17011],"locationId":13},{"id":17011,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[17012,17037,17043],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":17012,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":728,"ticks":1,"startLocationId":529,"endLocationId":530}],"locationId":33},{"id":17037,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[17038],"locationId":36},{"id":17038,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[17039],"locationId":40},{"id":17039,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":17043,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":17013,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[17014],"locationId":72},{"id":17014,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[17015],"locationId":73},{"id":17015,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[17016],"locationId":74},{"id":17016,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[17017],"locationId":75},{"id":17017,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":0,"children":[17018],"locationId":78},{"id":17018,"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":17},"hitCount":1,"positionTicks":[{"line":71,"ticks":1,"startLocationId":404,"endLocationId":405}],"locationId":403},{"id":17019,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[17020],"locationId":84},{"id":17020,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17021],"locationId":6},{"id":17021,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[17022],"locationId":85},{"id":17022,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[17023],"locationId":86},{"id":17023,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[17024],"locationId":87},{"id":17024,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[17025],"locationId":88},{"id":17025,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[17026],"locationId":74},{"id":17026,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[17027],"locationId":89},{"id":17027,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[17028,17031,17040],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":17028,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[17029],"locationId":97},{"id":17029,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[17030],"locationId":97},{"id":17030,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":17031,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17032],"locationId":109},{"id":17032,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[17033],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":17033,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17034],"locationId":109},{"id":17034,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17035],"locationId":109},{"id":17035,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[17036],"locationId":114},{"id":17036,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":17040,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[17041],"locationId":40},{"id":17041,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[17042],"locationId":29},{"id":17042,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":17044,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17045],"locationId":3},{"id":17045,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17046],"locationId":398},{"id":17046,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17047],"locationId":399},{"id":17047,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17048,17098],"locationId":2},{"id":17048,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17049],"locationId":5},{"id":17049,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17050],"locationId":6},{"id":17050,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17051,17055],"locationId":7},{"id":17051,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[17052],"locationId":196},{"id":17052,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[17053],"locationId":197},{"id":17053,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[17054],"locationId":198},{"id":17054,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":17055,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17056],"locationId":6},{"id":17056,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[17057,17078],"locationId":8},{"id":17057,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[17058],"locationId":9},{"id":17058,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17059],"locationId":6},{"id":17059,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[17060,17065,17067,17090],"locationId":10},{"id":17060,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[17061],"locationId":11},{"id":17061,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[17062],"locationId":12},{"id":17062,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[17063],"locationId":13},{"id":17063,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[17064,17066],"locationId":14},{"id":17064,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":17066,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":17065,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":17067,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[17068],"locationId":84},{"id":17068,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17069],"locationId":6},{"id":17069,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[17070],"locationId":85},{"id":17070,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[17071],"locationId":86},{"id":17071,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[17072],"locationId":87},{"id":17072,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[17073],"locationId":88},{"id":17073,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[17074],"locationId":74},{"id":17074,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[17075,17089],"locationId":89},{"id":17075,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[17076,17084,17091,17095],"locationId":90},{"id":17076,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[17077],"locationId":97},{"id":17077,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":17084,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[17085],"locationId":102},{"id":17085,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[17086],"locationId":247},{"id":17086,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[17087],"locationId":248},{"id":17087,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[17088],"locationId":249},{"id":17088,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":82,"ticks":1,"startLocationId":251,"endLocationId":252}],"locationId":250},{"id":17091,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[17092],"locationId":117},{"id":17092,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[17093],"locationId":118},{"id":17093,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[17094],"locationId":123},{"id":17094,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":17095,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17096],"locationId":109},{"id":17096,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17097],"locationId":109},{"id":17097,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":17089,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":211,"ticks":1,"startLocationId":504,"endLocationId":505}],"locationId":129},{"id":17090,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":17078,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[17079],"locationId":157},{"id":17079,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[17080],"locationId":158},{"id":17080,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[17081],"locationId":29},{"id":17081,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[17082],"locationId":159},{"id":17082,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[17083],"locationId":160},{"id":17083,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":17098,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17099],"locationId":3},{"id":17099,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17100],"locationId":398},{"id":17100,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17101],"locationId":399},{"id":17101,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17102,17692],"locationId":2},{"id":17102,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17103],"locationId":5},{"id":17103,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17104],"locationId":6},{"id":17104,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17105],"locationId":7},{"id":17105,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17106],"locationId":6},{"id":17106,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[17107,17119],"locationId":8},{"id":17107,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[17108],"locationId":9},{"id":17108,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17109],"locationId":6},{"id":17109,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[17110,17111,17124],"locationId":10},{"id":17110,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":17111,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[17112],"locationId":84},{"id":17112,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17113],"locationId":6},{"id":17113,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[17114],"locationId":85},{"id":17114,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[17115],"locationId":86},{"id":17115,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[17116],"locationId":87},{"id":17116,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[17117],"locationId":88},{"id":17117,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[17118],"locationId":74},{"id":17118,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[17131],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":17131,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[17132,17135],"locationId":90},{"id":17132,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[17133],"locationId":102},{"id":17133,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[17134],"locationId":217},{"id":17134,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":483,"ticks":1,"startLocationId":299,"endLocationId":300}],"locationId":218},{"id":17135,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17136],"locationId":109},{"id":17136,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17137],"locationId":109},{"id":17137,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":17124,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[17125],"locationId":11},{"id":17125,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[17126],"locationId":12},{"id":17126,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[17127],"locationId":13},{"id":17127,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[17128],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":17128,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[17129],"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":17129,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[17130],"locationId":25},{"id":17130,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":17119,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[17120],"locationId":157},{"id":17120,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[17121],"locationId":158},{"id":17121,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[17122],"locationId":29},{"id":17122,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[17123],"locationId":159},{"id":17123,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":2,"positionTicks":[{"line":82,"ticks":1,"startLocationId":355,"endLocationId":441},{"line":79,"ticks":1,"startLocationId":350,"endLocationId":351}],"locationId":160},{"id":17692,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17693],"locationId":3},{"id":17693,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17694],"locationId":398},{"id":17694,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17695],"locationId":399},{"id":17695,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17696,17720],"locationId":2},{"id":17696,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17697],"locationId":5},{"id":17697,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17698],"locationId":6},{"id":17698,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17699],"locationId":7},{"id":17699,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17700],"locationId":6},{"id":17700,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[17701],"locationId":8},{"id":17701,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[17702],"locationId":9},{"id":17702,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17703],"locationId":6},{"id":17703,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[17704,17715],"locationId":10},{"id":17704,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[17705],"locationId":84},{"id":17705,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17706],"locationId":6},{"id":17706,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[17707],"locationId":85},{"id":17707,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[17708],"locationId":86},{"id":17708,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[17709],"locationId":87},{"id":17709,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[17710],"locationId":88},{"id":17710,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[17711],"locationId":74},{"id":17711,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[17712],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187},{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":17712,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383}],"locationId":90},{"id":17715,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[17716],"locationId":11},{"id":17716,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[17717],"locationId":12},{"id":17717,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[17718],"locationId":13},{"id":17718,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[17719],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":17719,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":749,"endLocationId":750}],"locationId":46},{"id":17720,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17721],"locationId":3},{"id":17721,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17722],"locationId":398},{"id":17722,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17723],"locationId":399},{"id":17723,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17724],"locationId":2},{"id":17724,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17725],"locationId":5},{"id":17725,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17726],"locationId":6},{"id":17726,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17727],"locationId":7},{"id":17727,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":21538,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21539],"locationId":452},{"id":21539,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21540],"locationId":453},{"id":21540,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21541,21583],"locationId":2},{"id":21541,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21542],"locationId":5},{"id":21542,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21543],"locationId":6},{"id":21543,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21544],"locationId":7},{"id":21544,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21545],"locationId":6},{"id":21545,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21546],"locationId":8},{"id":21546,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21547],"locationId":9},{"id":21547,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21548],"locationId":6},{"id":21548,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21549,21550,21564],"locationId":10},{"id":21549,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":21550,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21551],"locationId":84},{"id":21551,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21552],"locationId":6},{"id":21552,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21553],"locationId":85},{"id":21553,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21554],"locationId":86},{"id":21554,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21555],"locationId":87},{"id":21555,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21556],"locationId":88},{"id":21556,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21557],"locationId":74},{"id":21557,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[21558],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":21558,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[21559,21569,21571],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":21559,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[21560],"locationId":117},{"id":21560,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[21561],"locationId":118},{"id":21561,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[21562],"locationId":123},{"id":21562,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21563],"locationId":29},{"id":21563,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21569,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":21571,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21572],"locationId":109},{"id":21572,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21573,21576],"locationId":109},{"id":21573,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21574],"locationId":109},{"id":21574,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21576,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21577],"locationId":114},{"id":21577,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21578],"locationId":114},{"id":21578,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21579],"locationId":114},{"id":21579,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21580],"locationId":114},{"id":21580,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21581],"locationId":114},{"id":21581,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21582],"locationId":114},{"id":21582,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21564,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21565],"locationId":11},{"id":21565,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21566],"locationId":12},{"id":21566,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21567],"locationId":13},{"id":21567,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[21568,21570,21575],"locationId":14},{"id":21568,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":726,"ticks":2,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":21570,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":760,"ticks":1,"startLocationId":536,"endLocationId":537}],"locationId":15},{"id":21575,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222}],"locationId":36},{"id":21583,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21584],"locationId":3},{"id":21584,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21585],"locationId":452},{"id":21585,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21586],"locationId":453},{"id":21586,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21587,21618],"locationId":2},{"id":21587,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21588],"locationId":5},{"id":21588,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21589],"locationId":6},{"id":21589,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21590],"locationId":7},{"id":21590,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21591],"locationId":6},{"id":21591,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21592],"locationId":8},{"id":21592,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21593],"locationId":9},{"id":21593,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21594],"locationId":6},{"id":21594,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21595,21604,21610],"locationId":10},{"id":21595,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21596],"locationId":84},{"id":21596,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21597],"locationId":6},{"id":21597,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21598],"locationId":85},{"id":21598,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21599],"locationId":86},{"id":21599,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21600],"locationId":87},{"id":21600,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21601],"locationId":88},{"id":21601,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21602],"locationId":74},{"id":21602,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21603,21605],"locationId":89},{"id":21603,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":2,"positionTicks":[{"line":194,"ticks":1,"startLocationId":413,"endLocationId":132},{"line":211,"ticks":1,"startLocationId":504,"endLocationId":505}],"locationId":129},{"id":21605,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[21606,21615],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":21606,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[21607],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21607,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21608],"locationId":114},{"id":21608,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21609],"locationId":114},{"id":21609,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21615,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[21616],"locationId":40},{"id":21616,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21617],"locationId":29},{"id":21617,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21604,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":21610,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21611],"locationId":11},{"id":21611,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21612],"locationId":12},{"id":21612,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21613],"locationId":13},{"id":21613,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[21614],"locationId":14},{"id":21614,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":21618,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21619],"locationId":3},{"id":21619,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21620],"locationId":452},{"id":21620,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21621],"locationId":453},{"id":21621,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21622,21650],"locationId":2},{"id":21622,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21623],"locationId":5},{"id":21623,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21624],"locationId":6},{"id":21624,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21625],"locationId":7},{"id":21625,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21626],"locationId":6},{"id":21626,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21627],"locationId":8},{"id":21627,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21628],"locationId":9},{"id":21628,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21629],"locationId":6},{"id":21629,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21630,21631,21636],"locationId":10},{"id":21630,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":21631,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21632],"locationId":11},{"id":21632,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21633],"locationId":12},{"id":21633,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21634],"locationId":13},{"id":21634,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[21635,21646],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":21635,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":786,"ticks":2,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":21646,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":21636,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21637],"locationId":84},{"id":21637,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21638],"locationId":6},{"id":21638,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21639],"locationId":85},{"id":21639,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21640],"locationId":86},{"id":21640,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21641],"locationId":87},{"id":21641,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21642],"locationId":88},{"id":21642,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21643],"locationId":74},{"id":21643,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[21644,21645],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":21644,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[21647,21649],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":21647,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21648],"locationId":109},{"id":21648,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21649,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":21645,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305}],"locationId":129},{"id":21650,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21651],"locationId":3},{"id":21651,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21652],"locationId":452},{"id":21652,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21653],"locationId":453},{"id":21653,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21654,21687],"locationId":2},{"id":21654,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21655],"locationId":5},{"id":21655,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21656],"locationId":6},{"id":21656,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21657],"locationId":7},{"id":21657,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21658],"locationId":6},{"id":21658,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21659],"locationId":8},{"id":21659,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21660],"locationId":9},{"id":21660,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21661],"locationId":6},{"id":21661,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21662,21671,21677,21678],"locationId":10},{"id":21662,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21663],"locationId":84},{"id":21663,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21664],"locationId":6},{"id":21664,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21665],"locationId":85},{"id":21665,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21666],"locationId":86},{"id":21666,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21667],"locationId":87},{"id":21667,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21668],"locationId":88},{"id":21668,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21669],"locationId":74},{"id":21669,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21670,21672],"locationId":89},{"id":21670,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":195,"ticks":1,"startLocationId":132,"endLocationId":133}],"locationId":129},{"id":21672,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[21673,21686],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":21673,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"children":[21674],"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21674,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21675],"locationId":109},{"id":21675,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21676],"locationId":109},{"id":21676,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21686,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":21671,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":21677,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":21678,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21679],"locationId":11},{"id":21679,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21680],"locationId":12},{"id":21680,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21681],"locationId":13},{"id":21681,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[21682],"positionTicks":[{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":21682,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[21683],"locationId":46},{"id":21683,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[21684],"locationId":54},{"id":21684,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[21685],"locationId":55},{"id":21685,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":315,"endLocationId":316}],"locationId":56},{"id":21687,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21688],"locationId":3},{"id":21688,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21689],"locationId":452},{"id":21689,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21690],"locationId":453},{"id":21690,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21691,21719],"locationId":2},{"id":21691,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21692],"locationId":5},{"id":21692,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21693],"locationId":6},{"id":21693,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21694],"locationId":7},{"id":21694,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21695],"locationId":6},{"id":21695,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21696],"locationId":8},{"id":21696,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21697],"locationId":9},{"id":21697,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21698],"locationId":6},{"id":21698,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[21699,21711,21717],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":21699,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21700],"locationId":84},{"id":21700,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21701],"locationId":6},{"id":21701,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21702],"locationId":85},{"id":21702,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21703],"locationId":86},{"id":21703,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21704],"locationId":87},{"id":21704,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21705],"locationId":88},{"id":21705,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21706],"locationId":74},{"id":21706,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21707],"locationId":89},{"id":21707,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[21708,21714,21718],"positionTicks":[{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":21708,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[21709],"locationId":40},{"id":21709,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21710,21716],"locationId":29},{"id":21710,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21716,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":54},"hitCount":1,"positionTicks":[{"line":43,"ticks":1,"startLocationId":751,"endLocationId":752}],"locationId":561},{"id":21714,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21715],"locationId":109},{"id":21715,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21718,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":21711,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21712],"locationId":11},{"id":21712,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21713],"locationId":12},{"id":21713,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":809,"ticks":1,"startLocationId":258,"endLocationId":379}],"locationId":256},{"id":21717,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":21719,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21720],"locationId":3},{"id":21720,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21721],"locationId":452},{"id":21721,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21722],"locationId":453},{"id":21722,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21723,21755],"locationId":2},{"id":21723,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21724],"locationId":5},{"id":21724,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21725],"locationId":6},{"id":21725,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21726],"locationId":7},{"id":21726,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21727],"locationId":6},{"id":21727,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21728],"locationId":8},{"id":21728,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21729],"locationId":9},{"id":21729,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21730],"locationId":6},{"id":21730,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":3,"children":[21731,21732,21748],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260},{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":21731,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":21732,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21733],"locationId":84},{"id":21733,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21734],"locationId":6},{"id":21734,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21735],"locationId":85},{"id":21735,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21736],"locationId":86},{"id":21736,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21737],"locationId":87},{"id":21737,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21738],"locationId":88},{"id":21738,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21739],"locationId":74},{"id":21739,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21740],"locationId":89},{"id":21740,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[21741,21744],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":21741,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[21742],"locationId":102},{"id":21742,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[21743],"locationId":217},{"id":21743,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":466,"ticks":1,"startLocationId":301,"endLocationId":302}],"locationId":218},{"id":21744,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[21745],"locationId":117},{"id":21745,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[21746],"locationId":118},{"id":21746,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[21747],"locationId":123},{"id":21747,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":21748,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21749],"locationId":11},{"id":21749,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21750],"locationId":12},{"id":21750,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21751],"locationId":13},{"id":21751,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[21752],"locationId":14},{"id":21752,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[21753],"positionTicks":[{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":21753,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[21754],"locationId":25},{"id":21754,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":21755,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21756],"locationId":3},{"id":21756,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21757],"locationId":452},{"id":21757,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21758],"locationId":453},{"id":21758,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21759,21793],"locationId":2},{"id":21759,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21760],"locationId":5},{"id":21760,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21761],"locationId":6},{"id":21761,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21762],"locationId":7},{"id":21762,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21763],"locationId":6},{"id":21763,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21764],"locationId":8},{"id":21764,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21765],"locationId":9},{"id":21765,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21766],"locationId":6},{"id":21766,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[21767,21768,21772,21792],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":21767,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":21768,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21769],"locationId":11},{"id":21769,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21770,21786],"locationId":12},{"id":21770,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21771],"locationId":13},{"id":21771,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[21785],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":21785,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":21786,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[21787],"locationId":72},{"id":21787,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[21788],"locationId":73},{"id":21788,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21789],"locationId":74},{"id":21789,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[21790],"locationId":75},{"id":21790,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":0,"children":[21791],"locationId":78},{"id":21791,"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":17},"hitCount":1,"positionTicks":[{"line":71,"ticks":1,"startLocationId":404,"endLocationId":405}],"locationId":403},{"id":21772,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21773],"locationId":84},{"id":21773,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21774],"locationId":6},{"id":21774,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21775],"locationId":85},{"id":21775,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21776],"locationId":86},{"id":21776,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21777],"locationId":87},{"id":21777,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21778],"locationId":88},{"id":21778,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21779],"locationId":74},{"id":21779,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21780],"locationId":89},{"id":21780,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21781],"locationId":90},{"id":21781,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21782],"locationId":109},{"id":21782,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21783],"locationId":109},{"id":21783,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21784],"locationId":114},{"id":21784,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21792,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334},{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":21793,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21794],"locationId":3},{"id":21794,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21795],"locationId":452},{"id":21795,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21796],"locationId":453},{"id":21796,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21797,21842],"locationId":2},{"id":21797,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21798],"locationId":5},{"id":21798,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":1,"children":[21799],"positionTicks":[{"line":139,"ticks":1,"startLocationId":570,"endLocationId":571}],"locationId":6},{"id":21799,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21800],"locationId":7},{"id":21800,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21801],"locationId":6},{"id":21801,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21802],"locationId":8},{"id":21802,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21803],"locationId":9},{"id":21803,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21804],"locationId":6},{"id":21804,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21805,21810,21818],"locationId":10},{"id":21805,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21806],"locationId":11},{"id":21806,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21807,21831],"locationId":12},{"id":21807,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21808],"locationId":13},{"id":21808,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[21809,21814,21835],"locationId":14},{"id":21809,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":21814,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[21815],"locationId":36},{"id":21815,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[21816],"locationId":40},{"id":21816,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21817],"locationId":29},{"id":21817,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21835,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[21836],"locationId":46},{"id":21836,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[21837],"locationId":54},{"id":21837,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[21838],"locationId":55},{"id":21838,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[21839],"locationId":56},{"id":21839,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[21840],"locationId":28},{"id":21840,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21841],"locationId":29},{"id":21841,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21831,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":815,"ticks":1,"startLocationId":518,"endLocationId":519}],"locationId":256},{"id":21810,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[21811],"locationId":151},{"id":21811,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[21812],"locationId":152},{"id":21812,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21813],"locationId":74},{"id":21813,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":438,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":441,"ticks":1,"startLocationId":325,"endLocationId":326}],"locationId":324},{"id":21818,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21819],"locationId":84},{"id":21819,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21820],"locationId":6},{"id":21820,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21821],"locationId":85},{"id":21821,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21822],"locationId":86},{"id":21822,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21823],"locationId":87},{"id":21823,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21824],"locationId":88},{"id":21824,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21825],"locationId":74},{"id":21825,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21826],"locationId":89},{"id":21826,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[21827,21828],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":21827,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":21828,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21829],"locationId":109},{"id":21829,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21830],"locationId":109},{"id":21830,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[21832],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21832,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21833],"locationId":109},{"id":21833,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21834],"locationId":114},{"id":21834,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21842,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21843],"locationId":3},{"id":21843,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21844],"locationId":452},{"id":21844,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21845],"locationId":453},{"id":21845,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21846,21875],"locationId":2},{"id":21846,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21847],"locationId":5},{"id":21847,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21848],"locationId":6},{"id":21848,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21849],"locationId":7},{"id":21849,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21850],"locationId":6},{"id":21850,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21851],"locationId":8},{"id":21851,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21852],"locationId":9},{"id":21852,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21853],"locationId":6},{"id":21853,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[21854,21855,21870],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":21854,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":21855,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21856],"locationId":84},{"id":21856,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21857],"locationId":6},{"id":21857,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21858],"locationId":85},{"id":21858,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21859],"locationId":86},{"id":21859,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21860],"locationId":87},{"id":21860,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21861],"locationId":88},{"id":21861,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21862],"locationId":74},{"id":21862,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":3,"children":[21863,21864],"positionTicks":[{"line":39,"ticks":3,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":21863,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":21864,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21865,21871],"locationId":90},{"id":21865,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[21866],"locationId":117},{"id":21866,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[21867,21874],"locationId":118},{"id":21867,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[21868],"locationId":123},{"id":21868,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21869],"locationId":29},{"id":21869,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21874,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":21871,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[21872],"locationId":102},{"id":21872,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[21873],"locationId":217},{"id":21873,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":483,"ticks":1,"startLocationId":299,"endLocationId":300}],"locationId":218},{"id":21870,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":21875,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21876],"locationId":3},{"id":21876,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21877],"locationId":452},{"id":21877,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21878],"locationId":453},{"id":21878,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21879,21919],"locationId":2},{"id":21879,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21880],"locationId":5},{"id":21880,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21881],"locationId":6},{"id":21881,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21882],"locationId":7},{"id":21882,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21883],"locationId":6},{"id":21883,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21884],"locationId":8},{"id":21884,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21885],"locationId":9},{"id":21885,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21886],"locationId":6},{"id":21886,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21887,21892,21907,21916],"locationId":10},{"id":21887,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21888],"locationId":11},{"id":21888,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21889],"locationId":12},{"id":21889,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21890],"locationId":13},{"id":21890,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[21891],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":21891,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":525,"endLocationId":526}],"locationId":36},{"id":21892,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21893],"locationId":84},{"id":21893,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21894],"locationId":6},{"id":21894,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21895],"locationId":85},{"id":21895,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21896],"locationId":86},{"id":21896,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21897],"locationId":87},{"id":21897,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21898],"locationId":88},{"id":21898,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21899],"locationId":74},{"id":21899,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21900],"locationId":89},{"id":21900,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[21901,21902,21917],"positionTicks":[{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":21901,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[21909],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21909,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21910],"locationId":109},{"id":21910,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21911],"locationId":114},{"id":21911,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21912],"locationId":114},{"id":21912,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21913],"locationId":114},{"id":21913,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21914],"locationId":114},{"id":21914,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21902,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[21903],"locationId":117},{"id":21903,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[21904,21915],"locationId":118},{"id":21904,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[21905],"locationId":123},{"id":21905,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21906],"locationId":29},{"id":21906,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21915,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":21917,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[21918],"locationId":97},{"id":21918,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":21907,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[21908],"locationId":198},{"id":21908,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":21916,"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":35,"ticks":1,"startLocationId":431,"endLocationId":432}],"locationId":342},{"id":21919,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21920],"locationId":3},{"id":21920,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21921],"locationId":452},{"id":21921,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21922],"locationId":453},{"id":21922,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21923,21953],"locationId":2},{"id":21923,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21924],"locationId":5},{"id":21924,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21925],"locationId":6},{"id":21925,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21926],"locationId":7},{"id":21926,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21927],"locationId":6},{"id":21927,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21928],"locationId":8},{"id":21928,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21929],"locationId":9},{"id":21929,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21930],"locationId":6},{"id":21930,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[21931,21933],"positionTicks":[{"line":562,"ticks":1,"startLocationId":566,"endLocationId":567}],"locationId":10},{"id":21931,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21932],"locationId":11},{"id":21932,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":1,"children":[21949],"positionTicks":[{"line":568,"ticks":1,"startLocationId":400,"endLocationId":401}],"locationId":12},{"id":21949,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21950],"locationId":13},{"id":21950,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":21933,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21934],"locationId":84},{"id":21934,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21935],"locationId":6},{"id":21935,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21936],"locationId":85},{"id":21936,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21937],"locationId":86},{"id":21937,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21938],"locationId":87},{"id":21938,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21939],"locationId":88},{"id":21939,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21940],"locationId":74},{"id":21940,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21941],"locationId":89},{"id":21941,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[21942,21944,21946],"positionTicks":[{"line":73,"ticks":2,"startLocationId":210,"endLocationId":188},{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":21942,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[21943],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":21943,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":21944,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21945,21951],"locationId":109},{"id":21945,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21951,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21952],"locationId":109},{"id":21952,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21946,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[21947],"locationId":117},{"id":21947,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[21948],"locationId":118},{"id":21948,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":21953,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21954],"locationId":3},{"id":21954,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21955],"locationId":452},{"id":21955,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21956],"locationId":453},{"id":21956,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[21957,22001],"locationId":2},{"id":21957,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21958],"locationId":5},{"id":21958,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21959],"locationId":6},{"id":21959,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21960],"locationId":7},{"id":21960,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21961],"locationId":6},{"id":21961,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21962],"locationId":8},{"id":21962,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21963],"locationId":9},{"id":21963,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21964],"locationId":6},{"id":21964,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[21965,21972,21995],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":21965,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[21966],"locationId":11},{"id":21966,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[21967],"locationId":12},{"id":21967,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21968],"locationId":13},{"id":21968,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[21969],"locationId":14},{"id":21969,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[21970],"locationId":15},{"id":21970,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[21971],"locationId":25},{"id":21971,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":21972,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21973],"locationId":84},{"id":21973,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21974],"locationId":6},{"id":21974,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21975],"locationId":85},{"id":21975,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21976],"locationId":86},{"id":21976,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21977],"locationId":87},{"id":21977,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21978],"locationId":88},{"id":21978,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21979],"locationId":74},{"id":21979,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[21980],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":21980,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21981,21983,21996],"locationId":90},{"id":21981,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[21982],"locationId":97},{"id":21982,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99},{"line":52,"ticks":1,"startLocationId":408,"endLocationId":409}],"locationId":97},{"id":21983,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[21984],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21984,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[21985],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21985,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21986],"locationId":109},{"id":21986,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21987],"locationId":109},{"id":21987,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21988],"locationId":114},{"id":21988,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21989],"locationId":114},{"id":21989,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21990],"locationId":114},{"id":21990,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21991],"locationId":114},{"id":21991,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21992],"locationId":114},{"id":21992,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21993],"locationId":114},{"id":21993,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21994],"locationId":114},{"id":21994,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":21996,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[21997],"locationId":117},{"id":21997,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[21998],"locationId":118},{"id":21998,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[21999],"locationId":123},{"id":21999,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22000],"locationId":29},{"id":22000,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21995,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22001,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22002],"locationId":3},{"id":22002,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22003],"locationId":452},{"id":22003,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22004],"locationId":453},{"id":22004,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22005,22046],"locationId":2},{"id":22005,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22006],"locationId":5},{"id":22006,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22007],"locationId":6},{"id":22007,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22008],"locationId":7},{"id":22008,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22009],"locationId":6},{"id":22009,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22010],"locationId":8},{"id":22010,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22011],"locationId":9},{"id":22011,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22012],"locationId":6},{"id":22012,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22013,22014,22041],"locationId":10},{"id":22013,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22014,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22015],"locationId":84},{"id":22015,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22016],"locationId":6},{"id":22016,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22017],"locationId":85},{"id":22017,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22018],"locationId":86},{"id":22018,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22019],"locationId":87},{"id":22019,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22020],"locationId":88},{"id":22020,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22021],"locationId":74},{"id":22021,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[22022],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22022,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[22023,22031],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":22023,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22024,22036],"locationId":109},{"id":22024,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22025,22039],"locationId":109},{"id":22025,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22026],"locationId":114},{"id":22026,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22027],"locationId":114},{"id":22027,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22028],"locationId":114},{"id":22028,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22029],"locationId":114},{"id":22029,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22030],"locationId":114},{"id":22030,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22039,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22040],"locationId":109},{"id":22040,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22036,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22037],"locationId":114},{"id":22037,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22038],"locationId":114},{"id":22038,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":22031,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22032],"locationId":117},{"id":22032,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22033],"locationId":118},{"id":22033,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22034],"locationId":123},{"id":22034,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22035],"locationId":29},{"id":22035,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22041,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22042],"locationId":11},{"id":22042,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22043],"locationId":12},{"id":22043,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22044],"locationId":13},{"id":22044,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22045],"locationId":14},{"id":22045,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":22046,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22047],"locationId":3},{"id":22047,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22048],"locationId":452},{"id":22048,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22049],"locationId":453},{"id":22049,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22050,22082],"locationId":2},{"id":22050,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22051],"locationId":5},{"id":22051,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22052],"locationId":6},{"id":22052,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22053],"locationId":7},{"id":22053,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22054],"locationId":6},{"id":22054,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22055],"locationId":8},{"id":22055,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22056],"locationId":9},{"id":22056,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22057],"locationId":6},{"id":22057,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22058,22067,22072],"locationId":10},{"id":22058,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22059],"locationId":84},{"id":22059,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22060],"locationId":6},{"id":22060,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22061],"locationId":85},{"id":22061,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22062],"locationId":86},{"id":22062,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22063],"locationId":87},{"id":22063,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22064],"locationId":88},{"id":22064,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22065],"locationId":74},{"id":22065,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22066],"locationId":89},{"id":22066,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[22068,22069,22077],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":22068,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":22069,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22070],"locationId":40},{"id":22070,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22071],"locationId":29},{"id":22071,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22077,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22078],"locationId":117},{"id":22078,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22079],"locationId":118},{"id":22079,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22080],"locationId":123},{"id":22080,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22081],"locationId":29},{"id":22081,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22067,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":22072,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22073],"locationId":11},{"id":22073,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22074],"locationId":12},{"id":22074,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22075],"locationId":13},{"id":22075,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22076],"locationId":14},{"id":22076,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":22082,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22083],"locationId":3},{"id":22083,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22084],"locationId":452},{"id":22084,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22085],"locationId":453},{"id":22085,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22086,22113],"locationId":2},{"id":22086,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22087],"locationId":5},{"id":22087,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22088],"locationId":6},{"id":22088,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22089],"locationId":7},{"id":22089,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22090],"locationId":6},{"id":22090,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22091,22106],"locationId":8},{"id":22091,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22092],"locationId":9},{"id":22092,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22093],"locationId":6},{"id":22093,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22094,22095,22109],"locationId":10},{"id":22094,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":4,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22095,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22096],"locationId":84},{"id":22096,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22097],"locationId":6},{"id":22097,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22098],"locationId":85},{"id":22098,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22099],"locationId":86},{"id":22099,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22100],"locationId":87},{"id":22100,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22101],"locationId":88},{"id":22101,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22102],"locationId":74},{"id":22102,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[22103],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22103,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[22104,22107],"positionTicks":[{"line":74,"ticks":2,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":22104,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[22105],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22105,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22107,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22108],"locationId":109},{"id":22108,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":22109,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22110],"locationId":11},{"id":22110,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22111],"locationId":12},{"id":22111,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22112],"locationId":13},{"id":22112,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":22106,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":38,"ticks":1,"startLocationId":753,"endLocationId":754}],"locationId":11},{"id":22113,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22114],"locationId":3},{"id":22114,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22115],"locationId":452},{"id":22115,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22116],"locationId":453},{"id":22116,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22117,22153],"locationId":2},{"id":22117,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22118],"locationId":5},{"id":22118,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22119],"locationId":6},{"id":22119,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22120],"locationId":7},{"id":22120,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22121],"locationId":6},{"id":22121,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22122],"locationId":8},{"id":22122,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22123],"locationId":9},{"id":22123,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22124],"locationId":6},{"id":22124,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[22125,22141,22145,22152],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":22125,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22126],"locationId":84},{"id":22126,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22127],"locationId":6},{"id":22127,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22128],"locationId":85},{"id":22128,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22129],"locationId":86},{"id":22129,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22130],"locationId":87},{"id":22130,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22131],"locationId":88},{"id":22131,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22132],"locationId":74},{"id":22132,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[22133],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22133,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[22134,22143],"locationId":90},{"id":22134,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22135,22142],"locationId":109},{"id":22135,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22136],"locationId":114},{"id":22136,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22137],"locationId":114},{"id":22137,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22138],"locationId":114},{"id":22138,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22139],"locationId":114},{"id":22139,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22140],"locationId":114},{"id":22140,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22142,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":22143,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22144],"locationId":117},{"id":22144,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":22141,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22145,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22146],"locationId":11},{"id":22146,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22147],"locationId":12},{"id":22147,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22148],"locationId":13},{"id":22148,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22149],"locationId":14},{"id":22149,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[22150],"locationId":36},{"id":22150,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22151],"locationId":40},{"id":22151,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":22152,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":22153,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22154],"locationId":3},{"id":22154,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22155],"locationId":452},{"id":22155,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22156],"locationId":453},{"id":22156,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22157,22189],"locationId":2},{"id":22157,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22158],"locationId":5},{"id":22158,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22159],"locationId":6},{"id":22159,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22160],"locationId":7},{"id":22160,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22161],"locationId":6},{"id":22161,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22162],"locationId":8},{"id":22162,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22163],"locationId":9},{"id":22163,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22164],"locationId":6},{"id":22164,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22165,22166],"locationId":10},{"id":22165,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22166,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22167],"locationId":84},{"id":22167,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22168],"locationId":6},{"id":22168,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22169],"locationId":85},{"id":22169,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22170],"locationId":86},{"id":22170,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22171],"locationId":87},{"id":22171,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22172],"locationId":88},{"id":22172,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22173],"locationId":74},{"id":22173,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[22174],"positionTicks":[{"line":40,"ticks":2,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":22174,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[22175,22178,22179,22184],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":22175,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22176],"locationId":40},{"id":22176,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22177],"locationId":29},{"id":22177,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22178,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22179,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22180],"locationId":117},{"id":22180,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22181],"locationId":118},{"id":22181,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22182],"locationId":123},{"id":22182,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22183],"locationId":29},{"id":22183,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22184,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22185],"locationId":109},{"id":22185,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22186],"locationId":109},{"id":22186,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22187],"locationId":109},{"id":22187,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22188],"locationId":109},{"id":22188,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22189,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22190],"locationId":3},{"id":22190,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22191],"locationId":452},{"id":22191,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22192],"locationId":453},{"id":22192,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22193,22233],"locationId":2},{"id":22193,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22194],"locationId":5},{"id":22194,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22195],"locationId":6},{"id":22195,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22196,22231],"locationId":7},{"id":22196,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22197],"locationId":6},{"id":22197,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22198,22215],"locationId":8},{"id":22198,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22199],"locationId":9},{"id":22199,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22200],"locationId":6},{"id":22200,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[22201,22225,22226],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":22201,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22202],"locationId":84},{"id":22202,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22203],"locationId":6},{"id":22203,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22204],"locationId":85},{"id":22204,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22205],"locationId":86},{"id":22205,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22206],"locationId":87},{"id":22206,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22207],"locationId":88},{"id":22207,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22208],"locationId":74},{"id":22208,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[22209],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22209,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[22210,22221],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":22210,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22211],"locationId":117},{"id":22211,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22212],"locationId":118},{"id":22212,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22213],"locationId":123},{"id":22213,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22214],"locationId":29},{"id":22214,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22221,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[22222],"locationId":97},{"id":22222,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[22223],"locationId":97},{"id":22223,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[22224],"locationId":97},{"id":22224,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22225,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22226,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22227],"locationId":11},{"id":22227,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22228],"locationId":12},{"id":22228,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22229],"locationId":13},{"id":22229,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22230],"locationId":14},{"id":22230,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":766,"ticks":1,"startLocationId":532,"endLocationId":533}],"locationId":15},{"id":22215,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[22216],"locationId":157},{"id":22216,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[22217],"locationId":158},{"id":22217,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22218],"locationId":29},{"id":22218,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[22219],"locationId":159},{"id":22219,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[22220],"locationId":160},{"id":22220,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":22231,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":0,"children":[22232],"locationId":283},{"id":22232,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":1,"positionTicks":[{"line":505,"ticks":1,"startLocationId":755,"endLocationId":577}],"locationId":286},{"id":22233,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22234],"locationId":3},{"id":22234,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22235],"locationId":452},{"id":22235,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22236],"locationId":453},{"id":22236,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22237,22277],"locationId":2},{"id":22237,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22238],"locationId":5},{"id":22238,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22239],"locationId":6},{"id":22239,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22240],"locationId":7},{"id":22240,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22241],"locationId":6},{"id":22241,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22242],"locationId":8},{"id":22242,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22243],"locationId":9},{"id":22243,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22244],"locationId":6},{"id":22244,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22245,22255,22269,22276],"locationId":10},{"id":22245,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22246],"locationId":84},{"id":22246,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22247],"locationId":6},{"id":22247,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22248],"locationId":85},{"id":22248,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22249],"locationId":86},{"id":22249,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22250],"locationId":87},{"id":22250,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22251],"locationId":88},{"id":22251,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22252],"locationId":74},{"id":22252,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22253,22263],"locationId":89},{"id":22253,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"children":[22254],"positionTicks":[{"line":187,"ticks":1,"startLocationId":306,"endLocationId":307}],"locationId":129},{"id":22254,"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":269,"ticks":1,"startLocationId":309,"endLocationId":310}],"locationId":308},{"id":22263,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[22264,22270],"locationId":90},{"id":22264,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22265,22273],"locationId":109},{"id":22265,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22266],"locationId":114},{"id":22266,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22273,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22274],"locationId":109},{"id":22274,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22275],"locationId":109},{"id":22275,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":22270,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22271],"locationId":40},{"id":22271,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22272],"locationId":29},{"id":22272,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22255,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22256],"locationId":11},{"id":22256,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22257],"locationId":12},{"id":22257,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22258],"locationId":13},{"id":22258,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22259,22267],"locationId":14},{"id":22259,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[22260],"locationId":36},{"id":22260,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22261],"locationId":40},{"id":22261,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22262],"locationId":29},{"id":22262,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22267,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[22268],"locationId":15},{"id":22268,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":22269,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":22276,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":22277,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22278],"locationId":3},{"id":22278,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22279],"locationId":452},{"id":22279,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22280],"locationId":453},{"id":22280,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22281,22319],"locationId":2},{"id":22281,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22282],"locationId":5},{"id":22282,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22283],"locationId":6},{"id":22283,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22284],"locationId":7},{"id":22284,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22285],"locationId":6},{"id":22285,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22286,22307],"locationId":8},{"id":22286,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22287],"locationId":9},{"id":22287,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22288],"locationId":6},{"id":22288,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22289,22290,22299],"locationId":10},{"id":22289,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":22290,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22291],"locationId":84},{"id":22291,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22292],"locationId":6},{"id":22292,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22293],"locationId":85},{"id":22293,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22294],"locationId":86},{"id":22294,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22295],"locationId":87},{"id":22295,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22296],"locationId":88},{"id":22296,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22297],"locationId":74},{"id":22297,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22298,22317],"locationId":89},{"id":22298,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[22313,22318],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":22313,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22314],"locationId":40},{"id":22314,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22315],"locationId":29},{"id":22315,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22318,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22317,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":195,"ticks":1,"startLocationId":132,"endLocationId":133}],"locationId":129},{"id":22299,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22300],"locationId":11},{"id":22300,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22301],"locationId":12},{"id":22301,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22302],"locationId":13},{"id":22302,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[22303,22306,22316],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":22303,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[22304],"locationId":64},{"id":22304,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[22305],"locationId":65},{"id":22305,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":2,"positionTicks":[{"line":370,"ticks":2,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":22306,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":22316,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":525,"endLocationId":526}],"locationId":36},{"id":22307,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[22308],"locationId":157},{"id":22308,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[22309],"locationId":164},{"id":22309,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22310],"locationId":29},{"id":22310,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[22311],"locationId":165},{"id":22311,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[22312],"locationId":166},{"id":22312,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":22319,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22320],"locationId":3},{"id":22320,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22321],"locationId":452},{"id":22321,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22322],"locationId":453},{"id":22322,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22323,22368],"locationId":2},{"id":22323,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22324],"locationId":5},{"id":22324,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22325],"locationId":6},{"id":22325,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22326],"locationId":7},{"id":22326,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22327],"locationId":6},{"id":22327,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22328],"locationId":8},{"id":22328,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22329],"locationId":9},{"id":22329,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22330],"locationId":6},{"id":22330,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22331,22332,22360,22361],"locationId":10},{"id":22331,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":384,"ticks":1,"startLocationId":435,"endLocationId":436}],"locationId":151},{"id":22332,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22333],"locationId":84},{"id":22333,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22334],"locationId":6},{"id":22334,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22335],"locationId":85},{"id":22335,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22336],"locationId":86},{"id":22336,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22337],"locationId":87},{"id":22337,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22338],"locationId":88},{"id":22338,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22339],"locationId":74},{"id":22339,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[22340,22359],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22340,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[22341,22353,22354],"positionTicks":[{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210},{"line":48,"ticks":1,"startLocationId":488,"endLocationId":489},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":22341,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22342],"locationId":109},{"id":22342,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22343],"locationId":109},{"id":22343,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22344],"locationId":109},{"id":22344,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22345],"locationId":109},{"id":22345,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22346],"locationId":114},{"id":22346,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22347],"locationId":114},{"id":22347,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22348],"locationId":114},{"id":22348,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22349],"locationId":114},{"id":22349,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22350],"locationId":114},{"id":22350,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22351],"locationId":114},{"id":22351,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22352],"locationId":114},{"id":22352,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22353,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":22354,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22355],"locationId":117},{"id":22355,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22356],"locationId":118},{"id":22356,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22357],"locationId":123},{"id":22357,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22358],"locationId":29},{"id":22358,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22359,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":187,"ticks":1,"startLocationId":306,"endLocationId":307}],"locationId":129},{"id":22360,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22361,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22362],"locationId":11},{"id":22362,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22363],"locationId":12},{"id":22363,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22364],"locationId":13},{"id":22364,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22365],"locationId":14},{"id":22365,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[22366],"locationId":15},{"id":22366,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[22367],"locationId":25},{"id":22367,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":22368,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22369],"locationId":3},{"id":22369,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22370],"locationId":452},{"id":22370,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22371],"locationId":453},{"id":22371,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22372,22402],"locationId":2},{"id":22372,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22373],"locationId":5},{"id":22373,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22374],"locationId":6},{"id":22374,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22375],"locationId":7},{"id":22375,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22376],"locationId":6},{"id":22376,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22377],"locationId":8},{"id":22377,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22378],"locationId":9},{"id":22378,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22379],"locationId":6},{"id":22379,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22380,22389,22390],"locationId":10},{"id":22380,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22381],"locationId":84},{"id":22381,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22382],"locationId":6},{"id":22382,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22383],"locationId":85},{"id":22383,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22384],"locationId":86},{"id":22384,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22385],"locationId":87},{"id":22385,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22386],"locationId":88},{"id":22386,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22387],"locationId":74},{"id":22387,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22388],"locationId":89},{"id":22388,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[22393,22401],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":22393,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22394],"locationId":117},{"id":22394,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22395],"locationId":118},{"id":22395,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22396],"locationId":123},{"id":22396,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22397],"locationId":29},{"id":22397,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22401,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22389,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":22390,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22391],"locationId":11},{"id":22391,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22392,22398],"locationId":12},{"id":22392,"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":756,"endLocationId":757}],"locationId":81},{"id":22398,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22399],"locationId":13},{"id":22399,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22400],"locationId":14},{"id":22400,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":22402,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22403],"locationId":3},{"id":22403,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22404],"locationId":452},{"id":22404,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22405],"locationId":453},{"id":22405,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22406,22460],"locationId":2},{"id":22406,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22407],"locationId":5},{"id":22407,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22408],"locationId":6},{"id":22408,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22409],"locationId":7},{"id":22409,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22410],"locationId":6},{"id":22410,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22411],"locationId":8},{"id":22411,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22412],"locationId":9},{"id":22412,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22413],"locationId":6},{"id":22413,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[22414,22426,22433],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":22414,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22415],"locationId":84},{"id":22415,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22416],"locationId":6},{"id":22416,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22417],"locationId":85},{"id":22417,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22418],"locationId":86},{"id":22418,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22419],"locationId":87},{"id":22419,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22420],"locationId":88},{"id":22420,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22421],"locationId":74},{"id":22421,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22422],"locationId":89},{"id":22422,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[22423,22435,22454,22455],"locationId":90},{"id":22423,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22424],"locationId":40},{"id":22424,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22425],"locationId":29},{"id":22425,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22435,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22436,22443],"locationId":109},{"id":22436,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22437],"locationId":114},{"id":22437,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22438],"locationId":114},{"id":22438,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22439],"locationId":114},{"id":22439,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22443,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22444],"locationId":109},{"id":22444,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22445],"locationId":109},{"id":22445,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22446],"locationId":109},{"id":22446,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22447],"locationId":109},{"id":22447,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22448],"locationId":109},{"id":22448,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22449],"locationId":109},{"id":22449,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22450],"locationId":109},{"id":22450,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22451],"locationId":109},{"id":22451,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22452],"locationId":109},{"id":22452,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22453],"locationId":109},{"id":22453,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":22454,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":22455,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22456],"locationId":117},{"id":22456,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22457],"locationId":118},{"id":22457,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22458],"locationId":123},{"id":22458,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22459],"locationId":29},{"id":22459,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22426,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22427],"locationId":11},{"id":22427,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22428],"locationId":12},{"id":22428,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22429],"locationId":13},{"id":22429,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22430,22434],"locationId":14},{"id":22430,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[22431],"locationId":15},{"id":22431,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[22432],"locationId":28},{"id":22432,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":22434,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"children":[22440],"positionTicks":[{"line":635,"ticks":1,"startLocationId":221,"endLocationId":222}],"locationId":36},{"id":22440,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22441],"locationId":40},{"id":22441,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22442],"locationId":29},{"id":22442,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22433,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22460,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22461],"locationId":3},{"id":22461,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22462],"locationId":452},{"id":22462,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22463],"locationId":453},{"id":22463,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22464,22499],"locationId":2},{"id":22464,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22465],"locationId":5},{"id":22465,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22466],"locationId":6},{"id":22466,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22467,22498],"locationId":7},{"id":22467,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22468],"locationId":6},{"id":22468,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22469],"locationId":8},{"id":22469,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22470],"locationId":9},{"id":22470,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22471],"locationId":6},{"id":22471,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22472,22493],"locationId":10},{"id":22472,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22473],"locationId":84},{"id":22473,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22474],"locationId":6},{"id":22474,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22475],"locationId":85},{"id":22475,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22476],"locationId":86},{"id":22476,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22477],"locationId":87},{"id":22477,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22478],"locationId":88},{"id":22478,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22479],"locationId":74},{"id":22479,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22480],"locationId":89},{"id":22480,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[22481,22484,22489,22492,22494],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":22481,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[22482],"locationId":102},{"id":22482,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[22483],"locationId":217},{"id":22483,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":609,"ticks":1,"startLocationId":758,"endLocationId":759}],"locationId":218},{"id":22484,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22485],"locationId":117},{"id":22485,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22486],"locationId":118},{"id":22486,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22487],"locationId":123},{"id":22487,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22488],"locationId":29},{"id":22488,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22489,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22490],"locationId":40},{"id":22490,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22491],"locationId":29},{"id":22491,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22492,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22494,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22495],"locationId":109},{"id":22495,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22496],"locationId":109},{"id":22496,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22497],"locationId":109},{"id":22497,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22493,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22498,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":1,"positionTicks":[{"line":500,"ticks":1,"startLocationId":361,"endLocationId":362}],"locationId":283},{"id":22499,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22500],"locationId":3},{"id":22500,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22501],"locationId":452},{"id":22501,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22502],"locationId":453},{"id":22502,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22503,22535],"locationId":2},{"id":22503,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22504],"locationId":5},{"id":22504,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22505],"locationId":6},{"id":22505,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22506],"locationId":7},{"id":22506,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22507],"locationId":6},{"id":22507,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22508],"locationId":8},{"id":22508,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22509],"locationId":9},{"id":22509,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22510],"locationId":6},{"id":22510,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22511,22523,22524,22532],"locationId":10},{"id":22511,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22512],"locationId":84},{"id":22512,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22513],"locationId":6},{"id":22513,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22514],"locationId":85},{"id":22514,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22515],"locationId":86},{"id":22515,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22516],"locationId":87},{"id":22516,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22517],"locationId":88},{"id":22517,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22518],"locationId":74},{"id":22518,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[22519],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22519,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[22520,22533],"locationId":90},{"id":22520,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22521],"locationId":40},{"id":22521,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22522],"locationId":29},{"id":22522,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22533,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22534],"locationId":117},{"id":22534,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":22523,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209},{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":22524,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22525],"locationId":11},{"id":22525,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22526],"locationId":12},{"id":22526,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22527],"locationId":13},{"id":22527,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[22528,22529],"positionTicks":[{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":22528,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":22529,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[22530],"locationId":36},{"id":22530,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22531],"locationId":40},{"id":22531,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":22532,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22535,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22536],"locationId":3},{"id":22536,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22537],"locationId":452},{"id":22537,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22538],"locationId":453},{"id":22538,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22539,22578],"locationId":2},{"id":22539,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22540],"locationId":5},{"id":22540,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22541],"locationId":6},{"id":22541,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22542],"locationId":7},{"id":22542,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22543],"locationId":6},{"id":22543,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22544,22560],"locationId":8},{"id":22544,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22545],"locationId":9},{"id":22545,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22546],"locationId":6},{"id":22546,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[22547,22559,22566],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":22547,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22548],"locationId":84},{"id":22548,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22549],"locationId":6},{"id":22549,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22550],"locationId":85},{"id":22550,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22551],"locationId":86},{"id":22551,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22552],"locationId":87},{"id":22552,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22553],"locationId":88},{"id":22553,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22554],"locationId":74},{"id":22554,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22555,22558],"locationId":89},{"id":22555,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":0,"children":[22556],"locationId":129},{"id":22556,"callFrame":{"functionName":"addDiagnosticOnce","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":231,"columnNumber":21},"hitCount":0,"children":[22557],"locationId":580},{"id":22557,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":22558,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[22574,22577],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":22574,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[22575],"locationId":239},{"id":22575,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":9,"ticks":1,"startLocationId":241,"endLocationId":242}],"locationId":240},{"id":22577,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22559,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22566,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22567],"locationId":11},{"id":22567,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22568],"locationId":12},{"id":22568,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22569],"locationId":13},{"id":22569,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22570,22576],"locationId":14},{"id":22570,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[22571],"locationId":46},{"id":22571,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[22572],"locationId":54},{"id":22572,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[22573],"locationId":55},{"id":22573,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":315,"endLocationId":316}],"locationId":56},{"id":22576,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385},{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":22560,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[22561],"locationId":157},{"id":22561,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[22562],"locationId":158},{"id":22562,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22563],"locationId":29},{"id":22563,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[22564],"locationId":159},{"id":22564,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[22565],"locationId":160},{"id":22565,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":22578,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22579],"locationId":3},{"id":22579,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22580],"locationId":452},{"id":22580,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22581],"locationId":453},{"id":22581,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22582,22618],"locationId":2},{"id":22582,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22583],"locationId":5},{"id":22583,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22584],"locationId":6},{"id":22584,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22585],"locationId":7},{"id":22585,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22586],"locationId":6},{"id":22586,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22587,22594],"locationId":8},{"id":22587,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[22588],"locationId":157},{"id":22588,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[22589],"locationId":164},{"id":22589,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22590],"locationId":29},{"id":22590,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[22591],"locationId":165},{"id":22591,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[22592],"locationId":166},{"id":22592,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22593],"locationId":29},{"id":22593,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":151,"ticks":1,"startLocationId":559,"endLocationId":760}],"locationId":167},{"id":22594,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22595],"locationId":9},{"id":22595,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22596],"locationId":6},{"id":22596,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22597,22611],"locationId":10},{"id":22597,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22598],"locationId":84},{"id":22598,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22599],"locationId":6},{"id":22599,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22600],"locationId":85},{"id":22600,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22601],"locationId":86},{"id":22601,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22602],"locationId":87},{"id":22602,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22603],"locationId":88},{"id":22603,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22604],"locationId":74},{"id":22604,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22605,22610],"locationId":89},{"id":22605,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[22606,22609],"locationId":90},{"id":22606,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22607],"locationId":40},{"id":22607,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22608],"locationId":29},{"id":22608,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22609,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":22610,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":2,"positionTicks":[{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139},{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305}],"locationId":129},{"id":22611,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22612],"locationId":11},{"id":22612,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22613],"locationId":12},{"id":22613,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22614],"locationId":13},{"id":22614,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[22615,22617],"positionTicks":[{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":22615,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[22616],"locationId":15},{"id":22616,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":22617,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":22618,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22619],"locationId":3},{"id":22619,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22620],"locationId":452},{"id":22620,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22621],"locationId":453},{"id":22621,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22622,22664],"locationId":2},{"id":22622,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22623],"locationId":5},{"id":22623,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22624],"locationId":6},{"id":22624,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22625,22631],"locationId":7},{"id":22625,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[22626],"locationId":196},{"id":22626,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[22627],"locationId":197},{"id":22627,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[22628],"locationId":198},{"id":22628,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22629],"locationId":29},{"id":22629,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[22630],"locationId":199},{"id":22630,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":22631,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22632],"locationId":6},{"id":22632,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22633],"locationId":8},{"id":22633,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22634],"locationId":9},{"id":22634,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22635],"locationId":6},{"id":22635,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22636,22644,22645],"locationId":10},{"id":22636,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22637],"locationId":11},{"id":22637,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22638],"locationId":12},{"id":22638,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22639],"locationId":13},{"id":22639,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[22640,22658],"positionTicks":[{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":22640,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[22641],"locationId":36},{"id":22641,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22642],"locationId":40},{"id":22642,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[22643],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":22643,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22658,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[22659],"locationId":15},{"id":22659,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[22660],"locationId":25},{"id":22660,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":22644,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":22645,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22646],"locationId":84},{"id":22646,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22647],"locationId":6},{"id":22647,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22648],"locationId":85},{"id":22648,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22649],"locationId":86},{"id":22649,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22650],"locationId":87},{"id":22650,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22651],"locationId":88},{"id":22651,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22652],"locationId":74},{"id":22652,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22653],"locationId":89},{"id":22653,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[22654,22661,22663],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":22654,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22655],"locationId":109},{"id":22655,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22656],"locationId":109},{"id":22656,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22657],"locationId":114},{"id":22657,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":22661,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":1,"children":[22662],"positionTicks":[{"line":1352,"ticks":1,"startLocationId":761,"endLocationId":762}],"locationId":102},{"id":22662,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":2,"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579},{"line":304,"ticks":1,"startLocationId":275,"endLocationId":276}],"locationId":247},{"id":22663,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22664,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22665],"locationId":3},{"id":22665,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22666],"locationId":452},{"id":22666,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22667],"locationId":453},{"id":22667,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22668,22747],"locationId":2},{"id":22668,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22669],"locationId":5},{"id":22669,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22670],"locationId":6},{"id":22670,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22671,22746],"locationId":7},{"id":22671,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22672],"locationId":6},{"id":22672,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22673,22679],"locationId":8},{"id":22673,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[22674],"locationId":157},{"id":22674,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[22675],"locationId":158},{"id":22675,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22676],"locationId":29},{"id":22676,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[22677],"locationId":159},{"id":22677,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[22678],"locationId":160},{"id":22678,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":22679,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22680],"locationId":9},{"id":22680,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22681],"locationId":6},{"id":22681,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22682,22739],"locationId":10},{"id":22682,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22683],"locationId":84},{"id":22683,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22684],"locationId":6},{"id":22684,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22685],"locationId":85},{"id":22685,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22686],"locationId":86},{"id":22686,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22687],"locationId":87},{"id":22687,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22688],"locationId":88},{"id":22688,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22689],"locationId":74},{"id":22689,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22690],"locationId":89},{"id":22690,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[22691,22694,22699],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":22691,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22692],"locationId":40},{"id":22692,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22693],"locationId":29},{"id":22693,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22694,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22695],"locationId":117},{"id":22695,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22696],"locationId":118},{"id":22696,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22697],"locationId":123},{"id":22697,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22698],"locationId":29},{"id":22698,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22699,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[22700],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":22700,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22701,22733],"locationId":109},{"id":22701,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22702],"locationId":109},{"id":22702,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22703],"locationId":109},{"id":22703,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22704],"locationId":109},{"id":22704,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22705],"locationId":109},{"id":22705,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22706],"locationId":109},{"id":22706,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22707],"locationId":109},{"id":22707,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22708],"locationId":109},{"id":22708,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22709],"locationId":109},{"id":22709,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22710],"locationId":109},{"id":22710,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22711],"locationId":109},{"id":22711,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22712],"locationId":109},{"id":22712,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22713],"locationId":109},{"id":22713,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22714],"locationId":109},{"id":22714,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22715],"locationId":109},{"id":22715,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22716],"locationId":109},{"id":22716,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22717],"locationId":109},{"id":22717,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22718],"locationId":109},{"id":22718,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22719],"locationId":109},{"id":22719,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22720],"locationId":109},{"id":22720,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22721],"locationId":109},{"id":22721,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22722],"locationId":109},{"id":22722,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22723],"locationId":109},{"id":22723,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22724],"locationId":109},{"id":22724,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22725],"locationId":109},{"id":22725,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22726],"locationId":109},{"id":22726,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22727],"locationId":109},{"id":22727,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22728],"locationId":109},{"id":22728,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22729],"locationId":109},{"id":22729,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22730],"locationId":109},{"id":22730,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22731],"locationId":109},{"id":22731,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22732],"locationId":109},{"id":22732,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":22733,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22734],"locationId":114},{"id":22734,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[22735],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22735,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22736],"locationId":114},{"id":22736,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22737],"locationId":114},{"id":22737,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22738],"locationId":114},{"id":22738,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22739,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22740],"locationId":11},{"id":22740,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22741],"locationId":12},{"id":22741,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22742],"locationId":13},{"id":22742,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22743],"locationId":14},{"id":22743,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[22744],"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":22744,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[22745],"locationId":25},{"id":22745,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":22746,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":1,"positionTicks":[{"line":500,"ticks":1,"startLocationId":361,"endLocationId":362}],"locationId":283},{"id":22747,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22748],"locationId":3},{"id":22748,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22749],"locationId":452},{"id":22749,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22750],"locationId":453},{"id":22750,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22751,22797],"locationId":2},{"id":22751,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22752],"locationId":5},{"id":22752,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22753],"locationId":6},{"id":22753,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22754],"locationId":7},{"id":22754,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22755],"locationId":6},{"id":22755,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22756],"locationId":8},{"id":22756,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22757],"locationId":9},{"id":22757,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22758],"locationId":6},{"id":22758,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[22759,22776],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":22759,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22760],"locationId":84},{"id":22760,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22761],"locationId":6},{"id":22761,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22762],"locationId":85},{"id":22762,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22763],"locationId":86},{"id":22763,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22764],"locationId":87},{"id":22764,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22765],"locationId":88},{"id":22765,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22766],"locationId":74},{"id":22766,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22767,22793],"locationId":89},{"id":22767,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[22768,22773,22781],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":26,"ticks":1,"startLocationId":191,"endLocationId":370}],"locationId":90},{"id":22768,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22769],"locationId":117},{"id":22769,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22770],"locationId":118},{"id":22770,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22771],"locationId":123},{"id":22771,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22772],"locationId":29},{"id":22772,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22773,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22774],"locationId":40},{"id":22774,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22775],"locationId":29},{"id":22775,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22781,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22782],"locationId":109},{"id":22782,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22783],"locationId":109},{"id":22783,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22784],"locationId":109},{"id":22784,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22785],"locationId":109},{"id":22785,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22786],"locationId":109},{"id":22786,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22787],"locationId":114},{"id":22787,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22788],"locationId":114},{"id":22788,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22789],"locationId":114},{"id":22789,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22790],"locationId":114},{"id":22790,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22791],"locationId":114},{"id":22791,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22792],"locationId":114},{"id":22792,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22793,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":0,"children":[22794],"locationId":129},{"id":22794,"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"hitCount":0,"children":[22795],"locationId":308},{"id":22795,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":269,"ticks":1,"startLocationId":311,"endLocationId":312}],"locationId":69},{"id":22776,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22777],"locationId":11},{"id":22777,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22778],"locationId":12},{"id":22778,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22779],"locationId":13},{"id":22779,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22780,22796],"locationId":14},{"id":22780,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":22796,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":671,"ticks":1,"startLocationId":763,"endLocationId":764}],"locationId":46},{"id":22797,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22798],"locationId":3},{"id":22798,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22799],"locationId":452},{"id":22799,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22800],"locationId":453},{"id":22800,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22801,22838],"locationId":2},{"id":22801,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22802],"locationId":5},{"id":22802,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22803],"locationId":6},{"id":22803,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22804],"locationId":7},{"id":22804,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22805],"locationId":6},{"id":22805,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22806],"locationId":8},{"id":22806,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22807],"locationId":9},{"id":22807,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22808],"locationId":6},{"id":22808,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22809,22819],"locationId":10},{"id":22809,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22810],"locationId":84},{"id":22810,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22811],"locationId":6},{"id":22811,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22812],"locationId":85},{"id":22812,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22813],"locationId":86},{"id":22813,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22814],"locationId":87},{"id":22814,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22815],"locationId":88},{"id":22815,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22816],"locationId":74},{"id":22816,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[22817],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22817,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[22818,22824,22829],"locationId":90},{"id":22818,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":60,"ticks":1,"startLocationId":481,"endLocationId":482}],"locationId":250},{"id":22824,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22825],"locationId":117},{"id":22825,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22826],"locationId":118},{"id":22826,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22827],"locationId":123},{"id":22827,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22828],"locationId":29},{"id":22828,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22829,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22830],"locationId":40},{"id":22830,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22831],"locationId":29},{"id":22831,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22819,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22820],"locationId":11},{"id":22820,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22821,22836],"locationId":12},{"id":22821,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22822],"locationId":13},{"id":22822,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22823,22832,22837],"locationId":14},{"id":22823,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":728,"ticks":1,"startLocationId":529,"endLocationId":530}],"locationId":33},{"id":22832,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[22833],"locationId":36},{"id":22833,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22834],"locationId":40},{"id":22834,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22835],"locationId":29},{"id":22835,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22837,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":22836,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":809,"ticks":1,"startLocationId":258,"endLocationId":379}],"locationId":256},{"id":22838,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22839],"locationId":3},{"id":22839,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22840],"locationId":452},{"id":22840,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22841],"locationId":453},{"id":22841,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22842,22885],"locationId":2},{"id":22842,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22843],"locationId":5},{"id":22843,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22844],"locationId":6},{"id":22844,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22845],"locationId":7},{"id":22845,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22846],"locationId":6},{"id":22846,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22847,22875],"locationId":8},{"id":22847,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22848],"locationId":9},{"id":22848,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22849],"locationId":6},{"id":22849,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22850,22860,22870],"locationId":10},{"id":22850,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22851],"locationId":84},{"id":22851,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22852],"locationId":6},{"id":22852,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22853],"locationId":85},{"id":22853,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22854],"locationId":86},{"id":22854,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22855],"locationId":87},{"id":22855,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22856],"locationId":88},{"id":22856,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22857],"locationId":74},{"id":22857,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22858],"locationId":89},{"id":22858,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[22859,22861,22882],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":22859,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[22866,22879],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":22866,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22867],"locationId":114},{"id":22867,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22868],"locationId":114},{"id":22868,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22869],"locationId":114},{"id":22869,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":22879,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22880],"locationId":109},{"id":22880,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[22881],"locationId":114},{"id":22881,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22861,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22862],"locationId":117},{"id":22862,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22863],"locationId":118},{"id":22863,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22864],"locationId":123},{"id":22864,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22865],"locationId":29},{"id":22865,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22882,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22883],"locationId":40},{"id":22883,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[22884],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":22884,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22860,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":22870,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22871],"locationId":11},{"id":22871,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22872],"locationId":12},{"id":22872,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22873],"locationId":13},{"id":22873,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22874],"locationId":14},{"id":22874,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":22875,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[22876],"locationId":157},{"id":22876,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[22877],"locationId":158},{"id":22877,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22878],"locationId":29},{"id":22878,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22885,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22886],"locationId":3},{"id":22886,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22887],"locationId":452},{"id":22887,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22888],"locationId":453},{"id":22888,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22889,22925],"locationId":2},{"id":22889,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22890],"locationId":5},{"id":22890,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22891],"locationId":6},{"id":22891,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22892],"locationId":7},{"id":22892,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22893],"locationId":6},{"id":22893,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22894],"locationId":8},{"id":22894,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22895],"locationId":9},{"id":22895,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22896],"locationId":6},{"id":22896,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22897,22919],"locationId":10},{"id":22897,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22898],"locationId":84},{"id":22898,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22899],"locationId":6},{"id":22899,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22900],"locationId":85},{"id":22900,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22901],"locationId":86},{"id":22901,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22902],"locationId":87},{"id":22902,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22903],"locationId":88},{"id":22903,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22904],"locationId":74},{"id":22904,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[22905],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22905,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[22906,22909,22911,22916],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":47,"ticks":1,"startLocationId":496,"endLocationId":488}],"locationId":90},{"id":22906,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22907],"locationId":40},{"id":22907,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22908],"locationId":29},{"id":22908,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22909,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[22910],"locationId":102},{"id":22910,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":22911,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[22912],"locationId":117},{"id":22912,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[22913],"locationId":118},{"id":22913,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[22914],"locationId":123},{"id":22914,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22915],"locationId":29},{"id":22915,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22916,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22917],"locationId":109},{"id":22917,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[22918],"locationId":109},{"id":22918,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":22919,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22920],"locationId":11},{"id":22920,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22921],"locationId":12},{"id":22921,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22922],"locationId":13},{"id":22922,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22923,22924],"locationId":14},{"id":22923,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":760,"ticks":1,"startLocationId":536,"endLocationId":537},{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":22924,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":22925,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22926],"locationId":3},{"id":22926,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22927],"locationId":452},{"id":22927,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22928],"locationId":453},{"id":22928,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22929,22954],"locationId":2},{"id":22929,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22930],"locationId":5},{"id":22930,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22931],"locationId":6},{"id":22931,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22932],"locationId":7},{"id":22932,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22933],"locationId":6},{"id":22933,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22934],"locationId":8},{"id":22934,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22935],"locationId":9},{"id":22935,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22936],"locationId":6},{"id":22936,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22937,22945],"locationId":10},{"id":22937,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22938],"locationId":84},{"id":22938,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22939],"locationId":6},{"id":22939,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22940],"locationId":85},{"id":22940,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22941],"locationId":86},{"id":22941,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22942,22951],"locationId":87},{"id":22942,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22943],"locationId":88},{"id":22943,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22944],"locationId":74},{"id":22944,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[22946,22947],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":22946,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":22947,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[22948,22952],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":22948,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[22949],"locationId":97},{"id":22949,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[22950],"locationId":97},{"id":22950,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":22952,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[22953],"locationId":40},{"id":22953,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":22951,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":412,"ticks":1,"startLocationId":765,"endLocationId":766}],"locationId":140},{"id":22945,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":22954,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22955],"locationId":3},{"id":22955,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22956],"locationId":452},{"id":22956,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22957],"locationId":453},{"id":22957,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[22958,22996],"locationId":2},{"id":22958,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[22959],"locationId":5},{"id":22959,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22960],"locationId":6},{"id":22960,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[22961],"locationId":7},{"id":22961,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22962],"locationId":6},{"id":22962,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[22963,22969],"locationId":8},{"id":22963,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[22964],"locationId":157},{"id":22964,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[22965],"locationId":158},{"id":22965,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22966],"locationId":29},{"id":22966,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"children":[22967],"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":22967,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[22968],"locationId":160},{"id":22968,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":22969,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[22970],"locationId":9},{"id":22970,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22971],"locationId":6},{"id":22971,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[22972,22973,22978],"locationId":10},{"id":22972,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":22973,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[22974],"locationId":11},{"id":22974,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[22975],"locationId":12},{"id":22975,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[22976],"locationId":13},{"id":22976,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[22977,22988,22995],"locationId":14},{"id":22977,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":22988,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[22989],"locationId":46},{"id":22989,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[22990],"locationId":54},{"id":22990,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[22991],"locationId":55},{"id":22991,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[22992],"locationId":56},{"id":22992,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[22993],"locationId":28},{"id":22993,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[22994],"locationId":29},{"id":22994,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":22995,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":22978,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[22979],"locationId":84},{"id":22979,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[22980],"locationId":6},{"id":22980,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[22981],"locationId":85},{"id":22981,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[22982],"locationId":86},{"id":22982,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[22983],"locationId":87},{"id":22983,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[22984],"locationId":88},{"id":22984,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[22985],"locationId":74},{"id":22985,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[22986],"locationId":89},{"id":22986,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[22987],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":22987,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":22996,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[22997],"locationId":3},{"id":22997,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[22998],"locationId":452},{"id":22998,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[22999],"locationId":453},{"id":22999,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23000,23034],"locationId":2},{"id":23000,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23001],"locationId":5},{"id":23001,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23002],"locationId":6},{"id":23002,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23003],"locationId":7},{"id":23003,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23004],"locationId":6},{"id":23004,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23005],"locationId":8},{"id":23005,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23006],"locationId":9},{"id":23006,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23007],"locationId":6},{"id":23007,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23008,23017,23022,23025],"locationId":10},{"id":23008,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23009],"locationId":84},{"id":23009,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23010],"locationId":6},{"id":23010,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23011],"locationId":85},{"id":23011,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23012],"locationId":86},{"id":23012,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23013],"locationId":87},{"id":23013,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23014],"locationId":88},{"id":23014,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23015],"locationId":74},{"id":23015,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[23016],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23016,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":5,"children":[23023,23026],"positionTicks":[{"line":48,"ticks":1,"startLocationId":488,"endLocationId":489},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":23023,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23024],"locationId":117},{"id":23024,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":23026,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23027],"locationId":109},{"id":23027,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23028],"locationId":109},{"id":23028,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23029],"locationId":114},{"id":23029,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23030],"locationId":114},{"id":23030,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23031],"locationId":114},{"id":23031,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23032],"locationId":114},{"id":23032,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23033],"locationId":114},{"id":23033,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23017,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23018],"locationId":11},{"id":23018,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23019],"locationId":12},{"id":23019,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23020],"locationId":13},{"id":23020,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23021],"locationId":14},{"id":23021,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":23022,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":23025,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23034,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23035],"locationId":3},{"id":23035,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23036],"locationId":452},{"id":23036,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23037],"locationId":453},{"id":23037,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23038,23085],"locationId":2},{"id":23038,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23039],"locationId":5},{"id":23039,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23040],"locationId":6},{"id":23040,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23041],"locationId":7},{"id":23041,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23042],"locationId":6},{"id":23042,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23043],"locationId":8},{"id":23043,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23044],"locationId":9},{"id":23044,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23045],"locationId":6},{"id":23045,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23046,23056,23079],"locationId":10},{"id":23046,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23047],"locationId":84},{"id":23047,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23048],"locationId":6},{"id":23048,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23049],"locationId":85},{"id":23049,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23050],"locationId":86},{"id":23050,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23051],"locationId":87},{"id":23051,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23052],"locationId":88},{"id":23052,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23053],"locationId":74},{"id":23053,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23054],"locationId":89},{"id":23054,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23055,23057,23061,23064],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":23055,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":43,"ticks":1,"startLocationId":124,"endLocationId":125}],"locationId":40},{"id":23057,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23058],"locationId":117},{"id":23058,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23059],"locationId":118},{"id":23059,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23060],"locationId":123},{"id":23060,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":23061,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[23062],"locationId":102},{"id":23062,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23063],"locationId":29},{"id":23063,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23064,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23065],"locationId":109},{"id":23065,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[23066],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23066,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23067],"locationId":109},{"id":23067,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23068],"locationId":114},{"id":23068,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23069],"locationId":114},{"id":23069,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23070],"locationId":114},{"id":23070,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23071],"locationId":114},{"id":23071,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23072],"locationId":114},{"id":23072,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23073],"locationId":114},{"id":23073,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23074],"locationId":114},{"id":23074,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23075],"locationId":114},{"id":23075,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23076],"locationId":114},{"id":23076,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23077],"locationId":114},{"id":23077,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23078],"locationId":114},{"id":23078,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23056,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":3,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23079,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23080],"locationId":11},{"id":23080,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23081],"locationId":12},{"id":23081,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23082],"locationId":13},{"id":23082,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23083,23084],"locationId":14},{"id":23083,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":80,"ticks":1,"startLocationId":767,"endLocationId":768}],"locationId":46},{"id":23084,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":23085,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23086],"locationId":3},{"id":23086,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23087],"locationId":452},{"id":23087,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23088],"locationId":453},{"id":23088,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23089,23118],"locationId":2},{"id":23089,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23090],"locationId":5},{"id":23090,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23091],"locationId":6},{"id":23091,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23092],"locationId":7},{"id":23092,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":1,"children":[23093],"positionTicks":[{"line":139,"ticks":1,"startLocationId":570,"endLocationId":571}],"locationId":6},{"id":23093,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23094],"locationId":8},{"id":23094,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23095],"locationId":9},{"id":23095,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23096],"locationId":6},{"id":23096,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23097,23117],"locationId":10},{"id":23097,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23098],"locationId":84},{"id":23098,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23099],"locationId":6},{"id":23099,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23100],"locationId":85},{"id":23100,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23101],"locationId":86},{"id":23101,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23102,23106],"locationId":87},{"id":23102,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":0,"children":[23103],"locationId":140},{"id":23103,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23104],"locationId":13},{"id":23104,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[23105],"locationId":68},{"id":23105,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":23106,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23107],"locationId":88},{"id":23107,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23108],"locationId":74},{"id":23108,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[23109],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23109,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[23110,23113],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94},{"line":334,"ticks":1,"startLocationId":492,"endLocationId":493}],"locationId":90},{"id":23110,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23111],"locationId":40},{"id":23111,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23112],"locationId":29},{"id":23112,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23113,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23114],"locationId":117},{"id":23114,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23115],"locationId":118},{"id":23115,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23116],"locationId":123},{"id":23116,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":23117,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23118,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23119],"locationId":3},{"id":23119,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23120],"locationId":452},{"id":23120,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23121],"locationId":453},{"id":23121,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23122,23156],"locationId":2},{"id":23122,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23123],"locationId":5},{"id":23123,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23124],"locationId":6},{"id":23124,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23125],"locationId":7},{"id":23125,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23126],"locationId":6},{"id":23126,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23127,23132],"locationId":8},{"id":23127,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23128],"locationId":157},{"id":23128,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[23129],"locationId":158},{"id":23129,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23130],"locationId":29},{"id":23130,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[23131],"locationId":159},{"id":23131,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":93,"ticks":1,"startLocationId":352,"endLocationId":353}],"locationId":160},{"id":23132,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23133],"locationId":9},{"id":23133,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23134],"locationId":6},{"id":23134,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23135,23146],"locationId":10},{"id":23135,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23136],"locationId":84},{"id":23136,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23137],"locationId":6},{"id":23137,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23138],"locationId":85},{"id":23138,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23139],"locationId":86},{"id":23139,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23140],"locationId":87},{"id":23140,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23141],"locationId":88},{"id":23141,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23142],"locationId":74},{"id":23142,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23143],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23143,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23144,23147,23148,23150],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":23144,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[23145],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23145,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23147,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23148,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[23149],"locationId":102},{"id":23149,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579}],"locationId":247},{"id":23150,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23151],"locationId":117},{"id":23151,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23152,23155],"locationId":118},{"id":23152,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23153],"locationId":123},{"id":23153,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23154],"locationId":29},{"id":23154,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23155,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":23146,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23156,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23157],"locationId":3},{"id":23157,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23158],"locationId":452},{"id":23158,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23159],"locationId":453},{"id":23159,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23160,23194],"locationId":2},{"id":23160,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23161],"locationId":5},{"id":23161,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23162],"locationId":6},{"id":23162,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23163],"locationId":7},{"id":23163,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23164],"locationId":6},{"id":23164,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23165],"locationId":8},{"id":23165,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23166],"locationId":9},{"id":23166,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23167],"locationId":6},{"id":23167,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[23168,23169,23174,23190],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":23168,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":23169,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23170],"locationId":11},{"id":23170,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23171],"locationId":12},{"id":23171,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23172],"locationId":13},{"id":23172,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[23173],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":23173,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":23174,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23175],"locationId":84},{"id":23175,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23176],"locationId":6},{"id":23176,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23177],"locationId":85},{"id":23177,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23178],"locationId":86},{"id":23178,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23179],"locationId":87},{"id":23179,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23180],"locationId":88},{"id":23180,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23181],"locationId":74},{"id":23181,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23182],"locationId":89},{"id":23182,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23183,23188,23191],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":23183,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23184],"locationId":117},{"id":23184,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23185,23189],"locationId":118},{"id":23185,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23186],"locationId":123},{"id":23186,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23187],"locationId":29},{"id":23187,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23189,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":23188,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23191,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23192],"locationId":109},{"id":23192,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23193],"locationId":114},{"id":23193,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23190,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23194,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23195],"locationId":3},{"id":23195,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23196],"locationId":452},{"id":23196,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23197],"locationId":453},{"id":23197,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23198,23240],"locationId":2},{"id":23198,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23199],"locationId":5},{"id":23199,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23200],"locationId":6},{"id":23200,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23201],"locationId":7},{"id":23201,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23202],"locationId":6},{"id":23202,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23203],"locationId":8},{"id":23203,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23204],"locationId":9},{"id":23204,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23205],"locationId":6},{"id":23205,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23206,23207,23212],"locationId":10},{"id":23206,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23207,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23208],"locationId":11},{"id":23208,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23209],"locationId":12},{"id":23209,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23210],"locationId":13},{"id":23210,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[23211,23234],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":23211,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":23234,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[23235],"locationId":36},{"id":23235,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23236],"locationId":40},{"id":23236,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23237],"locationId":29},{"id":23237,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23212,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23213],"locationId":84},{"id":23213,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23214],"locationId":6},{"id":23214,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23215],"locationId":85},{"id":23215,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23216],"locationId":86},{"id":23216,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23217],"locationId":87},{"id":23217,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23218],"locationId":88},{"id":23218,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23219],"locationId":74},{"id":23219,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23220],"locationId":89},{"id":23220,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23221,23226,23238],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":23221,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23222],"locationId":117},{"id":23222,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23223],"locationId":118},{"id":23223,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23224],"locationId":123},{"id":23224,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[23225],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":23225,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23226,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[23227],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23227,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23228],"locationId":109},{"id":23228,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23229],"locationId":114},{"id":23229,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23230],"locationId":114},{"id":23230,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23231],"locationId":114},{"id":23231,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23232],"locationId":114},{"id":23232,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23233],"locationId":114},{"id":23233,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23238,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[23239],"locationId":97},{"id":23239,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23240,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23241],"locationId":3},{"id":23241,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23242],"locationId":452},{"id":23242,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23243],"locationId":453},{"id":23243,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23244,23283],"locationId":2},{"id":23244,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23245],"locationId":5},{"id":23245,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":1,"children":[23246],"positionTicks":[{"line":139,"ticks":1,"startLocationId":570,"endLocationId":571}],"locationId":6},{"id":23246,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23247],"locationId":7},{"id":23247,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23248],"locationId":6},{"id":23248,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23249,23275],"locationId":8},{"id":23249,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23250],"locationId":9},{"id":23250,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23251],"locationId":6},{"id":23251,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[23252,23260,23264,23281],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":23252,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23253],"locationId":11},{"id":23253,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23254,23261],"locationId":12},{"id":23254,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[23255],"locationId":72},{"id":23255,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[23256],"locationId":73},{"id":23256,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23257],"locationId":74},{"id":23257,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[23258],"locationId":75},{"id":23258,"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":24},"hitCount":0,"children":[23259],"locationId":81},{"id":23259,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":23261,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23262],"locationId":13},{"id":23262,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23263,23274],"locationId":14},{"id":23263,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":790,"ticks":1,"startLocationId":16,"endLocationId":17}],"locationId":15},{"id":23274,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":23260,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23264,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23265],"locationId":84},{"id":23265,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23266],"locationId":6},{"id":23266,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23267],"locationId":85},{"id":23267,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23268],"locationId":86},{"id":23268,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23269],"locationId":87},{"id":23269,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23270],"locationId":88},{"id":23270,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23271],"locationId":74},{"id":23271,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23272],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23272,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[23273],"locationId":90},{"id":23273,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23281,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":0,"children":[23282],"locationId":148},{"id":23282,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":280,"ticks":1,"startLocationId":52,"endLocationId":53}],"locationId":49},{"id":23275,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23276],"locationId":157},{"id":23276,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[23277],"locationId":158},{"id":23277,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23278],"locationId":29},{"id":23278,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[23279],"locationId":159},{"id":23279,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[23280],"locationId":160},{"id":23280,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":77,"ticks":1,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":23283,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23284],"locationId":3},{"id":23284,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23285],"locationId":452},{"id":23285,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23286],"locationId":453},{"id":23286,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23287,23326],"locationId":2},{"id":23287,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23288],"locationId":5},{"id":23288,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23289],"locationId":6},{"id":23289,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23290],"locationId":7},{"id":23290,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23291],"locationId":6},{"id":23291,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23292],"locationId":8},{"id":23292,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23293],"locationId":9},{"id":23293,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23294],"locationId":6},{"id":23294,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23295,23296,23305],"locationId":10},{"id":23295,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23296,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23297],"locationId":84},{"id":23297,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23298],"locationId":6},{"id":23298,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23299],"locationId":85},{"id":23299,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23300],"locationId":86},{"id":23300,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23301],"locationId":87},{"id":23301,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23302],"locationId":88},{"id":23302,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23303],"locationId":74},{"id":23303,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23304,23325],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23304,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[23313,23321,23322],"positionTicks":[{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":23313,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23314],"locationId":109},{"id":23314,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[23315],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23315,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23316],"locationId":109},{"id":23316,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23317],"locationId":109},{"id":23317,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23318],"locationId":109},{"id":23318,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23319],"locationId":109},{"id":23319,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23320],"locationId":109},{"id":23320,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":23321,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":23322,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23323],"locationId":40},{"id":23323,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23324],"locationId":29},{"id":23324,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23325,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":187,"ticks":1,"startLocationId":306,"endLocationId":307}],"locationId":129},{"id":23305,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23306],"locationId":11},{"id":23306,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23307],"locationId":12},{"id":23307,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23308],"locationId":13},{"id":23308,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23309],"locationId":14},{"id":23309,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[23310],"locationId":36},{"id":23310,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23311],"locationId":40},{"id":23311,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23312],"locationId":29},{"id":23312,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23326,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23327],"locationId":3},{"id":23327,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23328],"locationId":452},{"id":23328,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23329],"locationId":453},{"id":23329,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23330,23371],"locationId":2},{"id":23330,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23331],"locationId":5},{"id":23331,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23332],"locationId":6},{"id":23332,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23333],"locationId":7},{"id":23333,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23334],"locationId":6},{"id":23334,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23335],"locationId":8},{"id":23335,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23336],"locationId":9},{"id":23336,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23337],"locationId":6},{"id":23337,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23338,23360,23369],"locationId":10},{"id":23338,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23339],"locationId":84},{"id":23339,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23340],"locationId":6},{"id":23340,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23341],"locationId":85},{"id":23341,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23342],"locationId":86},{"id":23342,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23343],"locationId":87},{"id":23343,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23344],"locationId":88},{"id":23344,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23345],"locationId":74},{"id":23345,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23346],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23346,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[23347,23351,23361,23364],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":23347,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[23348],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23348,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[23349],"locationId":97},{"id":23349,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[23350],"locationId":97},{"id":23350,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23351,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23352],"locationId":109},{"id":23352,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23353],"locationId":109},{"id":23353,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23354],"locationId":109},{"id":23354,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23355],"locationId":109},{"id":23355,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23356],"locationId":109},{"id":23356,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23357],"locationId":114},{"id":23357,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23358],"locationId":114},{"id":23358,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23359],"locationId":114},{"id":23359,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23361,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23362],"locationId":40},{"id":23362,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23363],"locationId":29},{"id":23363,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23364,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23365],"locationId":117},{"id":23365,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23366],"locationId":118},{"id":23366,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23367],"locationId":123},{"id":23367,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23368],"locationId":29},{"id":23368,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23360,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23369,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23370],"locationId":11},{"id":23370,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":723,"ticks":1,"startLocationId":712,"endLocationId":713}],"locationId":33},{"id":23371,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23372],"locationId":3},{"id":23372,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23373],"locationId":452},{"id":23373,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23374],"locationId":453},{"id":23374,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":1,"children":[23375,23412],"positionTicks":[{"line":19,"ticks":1,"startLocationId":364,"endLocationId":365}],"locationId":2},{"id":23375,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23376],"locationId":5},{"id":23376,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23377],"locationId":6},{"id":23377,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23378],"locationId":7},{"id":23378,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23379],"locationId":6},{"id":23379,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23380,23399],"locationId":8},{"id":23380,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23381],"locationId":9},{"id":23381,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23382],"locationId":6},{"id":23382,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23383,23384,23403],"locationId":10},{"id":23383,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23384,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23385],"locationId":84},{"id":23385,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23386],"locationId":6},{"id":23386,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23387],"locationId":85},{"id":23387,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23388],"locationId":86},{"id":23388,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23389],"locationId":87},{"id":23389,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23390],"locationId":88},{"id":23390,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23391],"locationId":74},{"id":23391,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23392,23393],"locationId":89},{"id":23392,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":23393,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[23394,23402,23408],"positionTicks":[{"line":26,"ticks":1,"startLocationId":191,"endLocationId":370},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":23394,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23395],"locationId":117},{"id":23395,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23396],"locationId":118},{"id":23396,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23397],"locationId":123},{"id":23397,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23398],"locationId":29},{"id":23398,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23402,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23408,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23409],"locationId":109},{"id":23409,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23410],"locationId":109},{"id":23410,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23403,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23404],"locationId":11},{"id":23404,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23405],"locationId":12},{"id":23405,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23406],"locationId":13},{"id":23406,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23407,23411],"locationId":14},{"id":23407,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":23411,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":23399,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23400],"locationId":157},{"id":23400,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[23401],"locationId":158},{"id":23401,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":23412,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23413],"locationId":3},{"id":23413,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23414],"locationId":452},{"id":23414,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23415],"locationId":453},{"id":23415,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23416,23454],"locationId":2},{"id":23416,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23417],"locationId":5},{"id":23417,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23418],"locationId":6},{"id":23418,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23419],"locationId":7},{"id":23419,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23420],"locationId":6},{"id":23420,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23421,23440],"locationId":8},{"id":23421,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23422],"locationId":9},{"id":23422,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23423],"locationId":6},{"id":23423,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[23424,23432,23433],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":23424,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23425],"locationId":84},{"id":23425,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23426],"locationId":6},{"id":23426,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23427],"locationId":85},{"id":23427,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23428],"locationId":86},{"id":23428,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23429],"locationId":87},{"id":23429,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23430],"locationId":88},{"id":23430,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23431],"locationId":74},{"id":23431,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[23436],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23436,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[23437],"locationId":90},{"id":23437,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23438],"locationId":117},{"id":23438,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23439],"locationId":118},{"id":23439,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":23432,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23433,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":1,"children":[23434],"positionTicks":[{"line":40,"ticks":1,"startLocationId":467,"endLocationId":468}],"locationId":11},{"id":23434,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23435,23445],"locationId":12},{"id":23435,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":809,"ticks":1,"startLocationId":258,"endLocationId":379}],"locationId":256},{"id":23445,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23446],"locationId":13},{"id":23446,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23447],"locationId":14},{"id":23447,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[23448],"locationId":46},{"id":23448,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[23449],"locationId":54},{"id":23449,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[23450],"locationId":55},{"id":23450,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[23451],"locationId":56},{"id":23451,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[23452],"locationId":28},{"id":23452,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23453],"locationId":29},{"id":23453,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23440,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23441],"locationId":157},{"id":23441,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[23442],"locationId":158},{"id":23442,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23443],"locationId":29},{"id":23443,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[23444],"locationId":159},{"id":23444,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":350,"endLocationId":351}],"locationId":160},{"id":23454,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23455],"locationId":3},{"id":23455,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23456],"locationId":452},{"id":23456,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23457],"locationId":453},{"id":23457,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23458,23496],"locationId":2},{"id":23458,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23459],"locationId":5},{"id":23459,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23460],"locationId":6},{"id":23460,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23461],"locationId":7},{"id":23461,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23462],"locationId":6},{"id":23462,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23463],"locationId":8},{"id":23463,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23464],"locationId":9},{"id":23464,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23465],"locationId":6},{"id":23465,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23466,23467,23481],"locationId":10},{"id":23466,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23467,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23468],"locationId":84},{"id":23468,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23469],"locationId":6},{"id":23469,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23470],"locationId":85},{"id":23470,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23471],"locationId":86},{"id":23471,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23472],"locationId":87},{"id":23472,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23473],"locationId":88},{"id":23473,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23474],"locationId":74},{"id":23474,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23475,23480],"locationId":89},{"id":23475,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23476,23477,23491],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":23476,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23477,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23478],"locationId":40},{"id":23478,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23479],"locationId":29},{"id":23479,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23491,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23492],"locationId":117},{"id":23492,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23493],"locationId":118},{"id":23493,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23494],"locationId":123},{"id":23494,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":23480,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":23481,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23482],"locationId":11},{"id":23482,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23483],"locationId":12},{"id":23483,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23484],"locationId":13},{"id":23484,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23485,23487],"locationId":14},{"id":23485,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[23486],"locationId":15},{"id":23486,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"children":[23495],"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":23495,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":23487,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[23488],"locationId":36},{"id":23488,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23489],"locationId":40},{"id":23489,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23490],"locationId":29},{"id":23490,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23496,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23497],"locationId":3},{"id":23497,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23498],"locationId":452},{"id":23498,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23499],"locationId":453},{"id":23499,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23500,23536],"locationId":2},{"id":23500,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23501],"locationId":5},{"id":23501,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23502],"locationId":6},{"id":23502,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23503,23504],"locationId":7},{"id":23503,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":23504,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23505],"locationId":6},{"id":23505,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23506,23530],"locationId":8},{"id":23506,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23507],"locationId":9},{"id":23507,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23508],"locationId":6},{"id":23508,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[23509,23516,23518],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":23509,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23510],"locationId":11},{"id":23510,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23511],"locationId":12},{"id":23511,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23512],"locationId":13},{"id":23512,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[23513,23517],"positionTicks":[{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":23513,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[23514],"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":23514,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[23515],"locationId":25},{"id":23515,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":23517,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":23516,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23518,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23519],"locationId":84},{"id":23519,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23520],"locationId":6},{"id":23520,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23521],"locationId":85},{"id":23521,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23522],"locationId":86},{"id":23522,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23523],"locationId":87},{"id":23523,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23524],"locationId":88},{"id":23524,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23525],"locationId":74},{"id":23525,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23526],"locationId":89},{"id":23526,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23527],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":23527,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23528],"locationId":40},{"id":23528,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23529],"locationId":29},{"id":23529,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23530,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23531],"locationId":157},{"id":23531,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[23532],"locationId":158},{"id":23532,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23533],"locationId":29},{"id":23533,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[23534],"locationId":159},{"id":23534,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[23535],"locationId":160},{"id":23535,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":23536,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23537],"locationId":3},{"id":23537,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23538],"locationId":452},{"id":23538,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23539],"locationId":453},{"id":23539,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23540,23586],"locationId":2},{"id":23540,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23541],"locationId":5},{"id":23541,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23542],"locationId":6},{"id":23542,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23543],"locationId":7},{"id":23543,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23544],"locationId":6},{"id":23544,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23545],"locationId":8},{"id":23545,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23546],"locationId":9},{"id":23546,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23547],"locationId":6},{"id":23547,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23548,23560],"locationId":10},{"id":23548,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23549],"locationId":84},{"id":23549,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23550],"locationId":6},{"id":23550,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23551],"locationId":85},{"id":23551,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23552],"locationId":86},{"id":23552,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23553],"locationId":87},{"id":23553,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23554],"locationId":88},{"id":23554,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23555],"locationId":74},{"id":23555,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23556],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23556,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[23557,23576],"positionTicks":[{"line":48,"ticks":1,"startLocationId":488,"endLocationId":489},{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":23557,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23558],"locationId":117},{"id":23558,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23559],"locationId":118},{"id":23559,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":23576,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23577],"locationId":109},{"id":23577,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23578],"locationId":109},{"id":23578,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23579],"locationId":114},{"id":23579,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23580],"locationId":114},{"id":23580,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23581],"locationId":114},{"id":23581,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23582],"locationId":114},{"id":23582,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23560,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23561],"locationId":11},{"id":23561,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23562],"locationId":12},{"id":23562,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23563],"locationId":13},{"id":23563,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[23564,23565,23568,23569],"positionTicks":[{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":23564,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":23565,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[23566],"locationId":64},{"id":23566,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[23567],"locationId":65},{"id":23567,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":23568,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"children":[23583],"positionTicks":[{"line":636,"ticks":1,"startLocationId":222,"endLocationId":223}],"locationId":36},{"id":23583,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23584],"locationId":40},{"id":23584,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23585],"locationId":29},{"id":23585,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23569,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[23570],"locationId":46},{"id":23570,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[23571],"locationId":54},{"id":23571,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[23572],"locationId":55},{"id":23572,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[23573],"locationId":56},{"id":23573,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[23574],"locationId":28},{"id":23574,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23575],"locationId":29},{"id":23575,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23586,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23587],"locationId":3},{"id":23587,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23588],"locationId":452},{"id":23588,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23589],"locationId":453},{"id":23589,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23590,23640],"locationId":2},{"id":23590,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23591],"locationId":5},{"id":23591,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23592],"locationId":6},{"id":23592,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23593],"locationId":7},{"id":23593,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23594],"locationId":6},{"id":23594,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23595,23633],"locationId":8},{"id":23595,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23596],"locationId":9},{"id":23596,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23597],"locationId":6},{"id":23597,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23598,23606,23639],"locationId":10},{"id":23598,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23599],"locationId":11},{"id":23599,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23600],"locationId":12},{"id":23600,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23601],"locationId":13},{"id":23601,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23602,23632],"locationId":14},{"id":23602,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[23603,23631],"locationId":46},{"id":23603,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[23604],"locationId":54},{"id":23604,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[23605],"locationId":55},{"id":23605,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":315,"endLocationId":316}],"locationId":56},{"id":23631,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":23632,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":23606,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23607],"locationId":84},{"id":23607,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23608],"locationId":6},{"id":23608,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23609],"locationId":85},{"id":23609,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23610],"locationId":86},{"id":23610,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23611],"locationId":87},{"id":23611,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23612],"locationId":88},{"id":23612,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23613],"locationId":74},{"id":23613,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23614,23629],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23614,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23615,23630],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":23615,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23616],"locationId":109},{"id":23616,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23617],"locationId":109},{"id":23617,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23618],"locationId":109},{"id":23618,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23619],"locationId":109},{"id":23619,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23620],"locationId":109},{"id":23620,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23621],"locationId":109},{"id":23621,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23622],"locationId":109},{"id":23622,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23623],"locationId":109},{"id":23623,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23624],"locationId":109},{"id":23624,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23625],"locationId":109},{"id":23625,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23626],"locationId":109},{"id":23626,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23627],"locationId":109},{"id":23627,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23628],"locationId":109},{"id":23628,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23630,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23629,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":23639,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23633,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23634],"locationId":157},{"id":23634,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[23635],"locationId":158},{"id":23635,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23636],"locationId":29},{"id":23636,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[23637],"locationId":159},{"id":23637,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[23638],"locationId":160},{"id":23638,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":79,"ticks":1,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":23640,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23641],"locationId":3},{"id":23641,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23642],"locationId":452},{"id":23642,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23643],"locationId":453},{"id":23643,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23644,23677],"locationId":2},{"id":23644,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23645],"locationId":5},{"id":23645,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23646],"locationId":6},{"id":23646,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23647],"locationId":7},{"id":23647,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23648],"locationId":6},{"id":23648,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23649],"locationId":8},{"id":23649,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23650],"locationId":9},{"id":23650,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23651],"locationId":6},{"id":23651,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23652,23654,23670,23671],"locationId":10},{"id":23652,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"children":[23653],"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":23653,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":23654,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23655],"locationId":84},{"id":23655,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23656],"locationId":6},{"id":23656,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23657],"locationId":85},{"id":23657,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23658],"locationId":86},{"id":23658,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23659],"locationId":87},{"id":23659,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23660],"locationId":88},{"id":23660,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23661],"locationId":74},{"id":23661,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[23662],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187},{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":23662,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[23663,23666,23668],"locationId":90},{"id":23663,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"children":[23664],"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":23664,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23665],"locationId":29},{"id":23665,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23666,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[23667],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":23667,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":23668,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23669],"locationId":109},{"id":23669,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23670,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23671,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23672],"locationId":11},{"id":23672,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23673],"locationId":12},{"id":23673,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23674],"locationId":13},{"id":23674,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23675],"locationId":14},{"id":23675,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[23676],"locationId":64},{"id":23676,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":23677,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23678],"locationId":3},{"id":23678,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23679],"locationId":452},{"id":23679,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23680],"locationId":453},{"id":23680,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23681,23723],"locationId":2},{"id":23681,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23682],"locationId":5},{"id":23682,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23683],"locationId":6},{"id":23683,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23684],"locationId":7},{"id":23684,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23685],"locationId":6},{"id":23685,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23686,23711],"locationId":8},{"id":23686,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23687],"locationId":9},{"id":23687,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23688],"locationId":6},{"id":23688,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23689,23703,23715],"locationId":10},{"id":23689,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23690],"locationId":84},{"id":23690,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23691],"locationId":6},{"id":23691,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23692],"locationId":85},{"id":23692,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23693],"locationId":86},{"id":23693,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23694],"locationId":87},{"id":23694,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23695],"locationId":88},{"id":23695,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23696],"locationId":74},{"id":23696,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23697],"locationId":89},{"id":23697,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[23698,23704,23708],"locationId":90},{"id":23698,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23699],"locationId":117},{"id":23699,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23700],"locationId":118},{"id":23700,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23701],"locationId":123},{"id":23701,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23702],"locationId":29},{"id":23702,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23704,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23705],"locationId":109},{"id":23705,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23706],"locationId":109},{"id":23706,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23707],"locationId":114},{"id":23707,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23708,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[23709],"locationId":97},{"id":23709,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[23710],"locationId":97},{"id":23710,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":23703,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23715,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23716],"locationId":11},{"id":23716,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23717],"locationId":12},{"id":23717,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23718],"locationId":13},{"id":23718,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[23719],"positionTicks":[{"line":577,"ticks":1,"startLocationId":213,"endLocationId":206}],"locationId":14},{"id":23719,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[23720],"locationId":36},{"id":23720,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23721],"locationId":40},{"id":23721,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23722],"locationId":29},{"id":23722,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23711,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23712],"locationId":157},{"id":23712,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[23713],"locationId":158},{"id":23713,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23714],"locationId":29},{"id":23714,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":23723,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23724],"locationId":3},{"id":23724,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23725],"locationId":452},{"id":23725,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23726],"locationId":453},{"id":23726,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23727,23768],"locationId":2},{"id":23727,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23728],"locationId":5},{"id":23728,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23729],"locationId":6},{"id":23729,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23730,23736],"locationId":7},{"id":23730,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[23731],"locationId":196},{"id":23731,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[23732],"locationId":197},{"id":23732,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[23733],"locationId":198},{"id":23733,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23734],"locationId":29},{"id":23734,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[23735],"locationId":199},{"id":23735,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":23736,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23737],"locationId":6},{"id":23737,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23738],"locationId":8},{"id":23738,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23739],"locationId":9},{"id":23739,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23740],"locationId":6},{"id":23740,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[23741,23747,23748],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":23741,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23742],"locationId":11},{"id":23742,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23743],"locationId":12},{"id":23743,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23744],"locationId":13},{"id":23744,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23745],"locationId":14},{"id":23745,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[23746],"locationId":15},{"id":23746,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":23747,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23748,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23749],"locationId":84},{"id":23749,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23750],"locationId":6},{"id":23750,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23751],"locationId":85},{"id":23751,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23752],"locationId":86},{"id":23752,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23753],"locationId":87},{"id":23753,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23754],"locationId":88},{"id":23754,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23755],"locationId":74},{"id":23755,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23756,23765],"positionTicks":[{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":23756,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23757,23766],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":23757,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23758],"locationId":109},{"id":23758,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23759],"locationId":109},{"id":23759,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23760],"locationId":114},{"id":23760,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23761],"locationId":114},{"id":23761,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23762],"locationId":114},{"id":23762,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23763],"locationId":114},{"id":23763,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23764],"locationId":114},{"id":23764,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23766,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23767],"locationId":40},{"id":23767,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":23765,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":23768,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23769],"locationId":3},{"id":23769,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23770],"locationId":452},{"id":23770,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23771],"locationId":453},{"id":23771,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23772,23812],"locationId":2},{"id":23772,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23773],"locationId":5},{"id":23773,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23774],"locationId":6},{"id":23774,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23775,23780],"locationId":7},{"id":23775,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[23776],"locationId":196},{"id":23776,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[23777],"locationId":197},{"id":23777,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[23778],"locationId":198},{"id":23778,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23779],"locationId":29},{"id":23779,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23780,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23781],"locationId":6},{"id":23781,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23782,23790],"locationId":8},{"id":23782,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23783],"locationId":157},{"id":23783,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[23784],"locationId":164},{"id":23784,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23785],"locationId":29},{"id":23785,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[23786],"locationId":165},{"id":23786,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[23787],"locationId":166},{"id":23787,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23788],"locationId":29},{"id":23788,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[23789],"locationId":167},{"id":23789,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":69,"ticks":1,"startLocationId":327,"endLocationId":328}],"locationId":168},{"id":23790,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23791],"locationId":9},{"id":23791,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23792],"locationId":6},{"id":23792,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[23793,23794,23799],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":23793,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":4,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23794,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23795],"locationId":11},{"id":23795,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23796],"locationId":12},{"id":23796,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23797],"locationId":13},{"id":23797,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[23798],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":23798,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":23799,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23800],"locationId":84},{"id":23800,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23801],"locationId":6},{"id":23801,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23802],"locationId":85},{"id":23802,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23803],"locationId":86},{"id":23803,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23804],"locationId":87},{"id":23804,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23805],"locationId":88},{"id":23805,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23806],"locationId":74},{"id":23806,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23807],"locationId":89},{"id":23807,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23808],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371}],"locationId":90},{"id":23808,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23809],"locationId":109},{"id":23809,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23810],"locationId":109},{"id":23810,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23811],"locationId":109},{"id":23811,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23812,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23813],"locationId":3},{"id":23813,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23814],"locationId":452},{"id":23814,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23815],"locationId":453},{"id":23815,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23816,23847],"locationId":2},{"id":23816,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23817],"locationId":5},{"id":23817,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23818],"locationId":6},{"id":23818,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23819],"locationId":7},{"id":23819,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23820],"locationId":6},{"id":23820,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23821],"locationId":8},{"id":23821,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23822],"locationId":9},{"id":23822,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23823],"locationId":6},{"id":23823,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":3,"children":[23824,23833],"positionTicks":[{"line":542,"ticks":3,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":23824,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23825],"locationId":84},{"id":23825,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23826],"locationId":6},{"id":23826,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23827],"locationId":85},{"id":23827,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23828],"locationId":86},{"id":23828,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23829],"locationId":87},{"id":23829,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23830],"locationId":88},{"id":23830,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23831],"locationId":74},{"id":23831,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23832],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23832,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[23834,23839,23840,23844],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":23834,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23835],"locationId":117},{"id":23835,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[23836],"locationId":118},{"id":23836,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[23837],"locationId":123},{"id":23837,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23838],"locationId":29},{"id":23838,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23839,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23840,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[23841],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23841,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23842],"locationId":109},{"id":23842,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23843],"locationId":114},{"id":23843,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23844,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[23845],"locationId":102},{"id":23845,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[23846],"locationId":217},{"id":23846,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":483,"ticks":1,"startLocationId":299,"endLocationId":300}],"locationId":218},{"id":23833,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23847,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23848],"locationId":3},{"id":23848,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23849],"locationId":452},{"id":23849,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23850],"locationId":453},{"id":23850,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23851,23888],"locationId":2},{"id":23851,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23852],"locationId":5},{"id":23852,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23853],"locationId":6},{"id":23853,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23854],"locationId":7},{"id":23854,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23855],"locationId":6},{"id":23855,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23856],"locationId":8},{"id":23856,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23857],"locationId":9},{"id":23857,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23858],"locationId":6},{"id":23858,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23859,23860,23871],"locationId":10},{"id":23859,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":23860,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23861],"locationId":84},{"id":23861,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23862],"locationId":6},{"id":23862,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23863],"locationId":85},{"id":23863,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23864],"locationId":86},{"id":23864,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23865],"locationId":87},{"id":23865,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23866],"locationId":88},{"id":23866,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23867],"locationId":74},{"id":23867,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23868],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23868,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[23869,23881,23882,23884],"locationId":90},{"id":23869,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[23870],"locationId":117},{"id":23870,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":23881,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[23887],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23887,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23882,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[23883],"locationId":97},{"id":23883,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23884,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23885],"locationId":40},{"id":23885,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23886],"locationId":29},{"id":23886,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23871,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23872],"locationId":11},{"id":23872,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23873],"locationId":12},{"id":23873,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23874],"locationId":13},{"id":23874,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23875,23876,23879],"locationId":14},{"id":23875,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":23876,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[23877],"locationId":36},{"id":23877,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23878],"locationId":40},{"id":23878,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[23880],"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":23880,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23879,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":23888,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23889],"locationId":3},{"id":23889,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23890],"locationId":452},{"id":23890,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23891],"locationId":453},{"id":23891,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23892,23942],"locationId":2},{"id":23892,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23893],"locationId":5},{"id":23893,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23894],"locationId":6},{"id":23894,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23895],"locationId":7},{"id":23895,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23896],"locationId":6},{"id":23896,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23897,23929],"locationId":8},{"id":23897,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23898],"locationId":9},{"id":23898,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23899],"locationId":6},{"id":23899,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23900,23909,23913,23933],"locationId":10},{"id":23900,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23901],"locationId":84},{"id":23901,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23902],"locationId":6},{"id":23902,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23903],"locationId":85},{"id":23903,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23904],"locationId":86},{"id":23904,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23905],"locationId":87},{"id":23905,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23906],"locationId":88},{"id":23906,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23907],"locationId":74},{"id":23907,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[23908,23910],"locationId":89},{"id":23908,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305}],"locationId":129},{"id":23910,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[23911,23912,23939],"locationId":90},{"id":23911,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[23915],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23915,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23916],"locationId":109},{"id":23916,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23917],"locationId":109},{"id":23917,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23918],"locationId":109},{"id":23918,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23919],"locationId":114},{"id":23919,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23920],"locationId":114},{"id":23920,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23921],"locationId":114},{"id":23921,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23922],"locationId":114},{"id":23922,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23923],"locationId":114},{"id":23923,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23924],"locationId":114},{"id":23924,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23925],"locationId":114},{"id":23925,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23926],"locationId":114},{"id":23926,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23927],"locationId":114},{"id":23927,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23928],"locationId":114},{"id":23928,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":23912,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":23939,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[23940],"locationId":102},{"id":23940,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[23941],"locationId":217},{"id":23941,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":466,"ticks":1,"startLocationId":301,"endLocationId":302}],"locationId":218},{"id":23909,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23913,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":0,"children":[23914],"locationId":148},{"id":23914,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":280,"ticks":1,"startLocationId":52,"endLocationId":53}],"locationId":49},{"id":23933,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23934],"locationId":11},{"id":23934,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23935],"locationId":12},{"id":23935,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23936],"locationId":13},{"id":23936,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23937],"locationId":14},{"id":23937,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[23938],"locationId":64},{"id":23938,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":23929,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[23930],"locationId":157},{"id":23930,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[23931],"locationId":158},{"id":23931,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23932],"locationId":29},{"id":23932,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":23942,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23943],"locationId":3},{"id":23943,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23944],"locationId":452},{"id":23944,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23945],"locationId":453},{"id":23945,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23946,23983],"locationId":2},{"id":23946,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23947],"locationId":5},{"id":23947,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23948],"locationId":6},{"id":23948,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23949],"locationId":7},{"id":23949,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23950],"locationId":6},{"id":23950,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23951],"locationId":8},{"id":23951,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23952],"locationId":9},{"id":23952,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23953],"locationId":6},{"id":23953,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23954,23962,23977],"locationId":10},{"id":23954,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[23955],"locationId":84},{"id":23955,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23956],"locationId":6},{"id":23956,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[23957],"locationId":85},{"id":23957,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[23958],"locationId":86},{"id":23958,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[23959],"locationId":87},{"id":23959,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[23960],"locationId":88},{"id":23960,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[23961],"locationId":74},{"id":23961,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[23970],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":23970,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[23971,23978,23981],"positionTicks":[{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":23971,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23972],"locationId":109},{"id":23972,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[23973,23974],"locationId":109},{"id":23973,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":23974,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23975],"locationId":114},{"id":23975,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[23976],"locationId":114},{"id":23976,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":23978,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23979],"locationId":40},{"id":23979,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23980],"locationId":29},{"id":23980,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23981,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[23982],"locationId":102},{"id":23982,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":23962,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23963],"locationId":11},{"id":23963,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23964],"locationId":12},{"id":23964,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23965],"locationId":13},{"id":23965,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[23966],"locationId":14},{"id":23966,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[23967],"locationId":36},{"id":23967,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[23968],"locationId":40},{"id":23968,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[23969],"locationId":29},{"id":23969,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":23977,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23983,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[23984],"locationId":3},{"id":23984,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[23985],"locationId":452},{"id":23985,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[23986],"locationId":453},{"id":23986,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[23987,24027],"locationId":2},{"id":23987,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[23988],"locationId":5},{"id":23988,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23989],"locationId":6},{"id":23989,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[23990],"locationId":7},{"id":23990,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23991],"locationId":6},{"id":23991,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[23992],"locationId":8},{"id":23992,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[23993],"locationId":9},{"id":23993,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[23994],"locationId":6},{"id":23994,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[23995,23996,24000],"locationId":10},{"id":23995,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":23996,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[23997],"locationId":11},{"id":23997,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[23998],"locationId":12},{"id":23998,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[23999,24017],"locationId":13},{"id":23999,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":769,"endLocationId":770}],"locationId":164},{"id":24017,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24018,24020],"locationId":14},{"id":24018,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385},{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":24020,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[24021],"locationId":46},{"id":24021,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[24022],"locationId":54},{"id":24022,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[24023],"locationId":55},{"id":24023,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[24024],"locationId":56},{"id":24024,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[24025],"locationId":28},{"id":24025,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24026],"locationId":29},{"id":24026,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24000,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24001],"locationId":84},{"id":24001,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24002],"locationId":6},{"id":24002,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24003],"locationId":85},{"id":24003,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24004],"locationId":86},{"id":24004,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24005],"locationId":87},{"id":24005,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24006],"locationId":88},{"id":24006,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24007],"locationId":74},{"id":24007,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[24008],"locationId":89},{"id":24008,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[24009,24012,24019],"positionTicks":[{"line":791,"ticks":1,"startLocationId":494,"endLocationId":495},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":24009,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24010],"locationId":40},{"id":24010,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24011],"locationId":29},{"id":24011,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24012,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24013],"locationId":117},{"id":24013,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[24014],"locationId":118},{"id":24014,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[24015],"locationId":123},{"id":24015,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24016],"locationId":29},{"id":24016,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24019,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24027,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24028],"locationId":3},{"id":24028,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24029],"locationId":452},{"id":24029,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24030],"locationId":453},{"id":24030,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24031,24059],"locationId":2},{"id":24031,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24032],"locationId":5},{"id":24032,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24033],"locationId":6},{"id":24033,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24034,24035],"locationId":7},{"id":24034,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":24035,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24036],"locationId":6},{"id":24036,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24037],"locationId":8},{"id":24037,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24038],"locationId":9},{"id":24038,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24039],"locationId":6},{"id":24039,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24040,24045,24049],"locationId":10},{"id":24040,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24041],"locationId":11},{"id":24041,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24042],"locationId":12},{"id":24042,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24043],"locationId":13},{"id":24043,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24044,24046],"locationId":14},{"id":24044,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":24046,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[24047],"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":24047,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[24048],"locationId":25},{"id":24048,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":24045,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":4,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24049,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24050],"locationId":84},{"id":24050,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24051],"locationId":6},{"id":24051,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24052],"locationId":85},{"id":24052,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24053],"locationId":86},{"id":24053,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24054],"locationId":87},{"id":24054,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24055],"locationId":88},{"id":24055,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24056],"locationId":74},{"id":24056,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24057],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24057,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24058],"positionTicks":[{"line":26,"ticks":1,"startLocationId":191,"endLocationId":370}],"locationId":90},{"id":24058,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24059,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24060],"locationId":3},{"id":24060,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24061],"locationId":452},{"id":24061,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24062],"locationId":453},{"id":24062,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24063,24096],"locationId":2},{"id":24063,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24064],"locationId":5},{"id":24064,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24065],"locationId":6},{"id":24065,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24066],"locationId":7},{"id":24066,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24067],"locationId":6},{"id":24067,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":1,"children":[24068,24074],"positionTicks":[{"line":485,"ticks":1,"startLocationId":243,"endLocationId":244}],"locationId":8},{"id":24068,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[24069],"locationId":157},{"id":24069,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[24070],"locationId":158},{"id":24070,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24071],"locationId":29},{"id":24071,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[24072],"locationId":159},{"id":24072,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[24073],"locationId":160},{"id":24073,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":24074,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24075],"locationId":9},{"id":24075,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24076],"locationId":6},{"id":24076,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24077,24078,24083],"locationId":10},{"id":24077,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24078,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24079],"locationId":11},{"id":24079,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24080],"locationId":12},{"id":24080,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24081],"locationId":13},{"id":24081,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[24082,24094,24095],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":24082,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":725,"ticks":1,"startLocationId":528,"endLocationId":34},{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":24094,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23}],"locationId":15},{"id":24095,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":634,"ticks":1,"startLocationId":255,"endLocationId":221}],"locationId":36},{"id":24083,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24084],"locationId":84},{"id":24084,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24085],"locationId":6},{"id":24085,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24086],"locationId":85},{"id":24086,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24087],"locationId":86},{"id":24087,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24088],"locationId":87},{"id":24088,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24089],"locationId":88},{"id":24089,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24090],"locationId":74},{"id":24090,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24091],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24091,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[24092],"locationId":90},{"id":24092,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24093],"locationId":117},{"id":24093,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":24096,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24097],"locationId":3},{"id":24097,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24098],"locationId":452},{"id":24098,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24099],"locationId":453},{"id":24099,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24100,24137],"locationId":2},{"id":24100,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24101],"locationId":5},{"id":24101,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24102],"locationId":6},{"id":24102,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24103,24104],"locationId":7},{"id":24103,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":24104,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24105],"locationId":6},{"id":24105,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24106],"locationId":8},{"id":24106,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24107],"locationId":9},{"id":24107,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24108],"locationId":6},{"id":24108,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24109,24118,24120],"locationId":10},{"id":24109,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24110],"locationId":11},{"id":24110,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24111],"locationId":12},{"id":24111,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24112],"locationId":13},{"id":24112,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24113,24119],"locationId":14},{"id":24113,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[24114],"locationId":46},{"id":24114,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[24115],"locationId":54},{"id":24115,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[24116],"locationId":55},{"id":24116,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[24117],"locationId":56},{"id":24117,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":24119,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21},{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":24118,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24120,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24121],"locationId":84},{"id":24121,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24122],"locationId":6},{"id":24122,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24123],"locationId":85},{"id":24123,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24124],"locationId":86},{"id":24124,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24125],"locationId":87},{"id":24125,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24126],"locationId":88},{"id":24126,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24127],"locationId":74},{"id":24127,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[24128],"locationId":89},{"id":24128,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[24129,24135],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":24129,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24130],"locationId":109},{"id":24130,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24131],"locationId":109},{"id":24131,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24132],"locationId":114},{"id":24132,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24133],"locationId":114},{"id":24133,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24134],"locationId":114},{"id":24134,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":24135,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[24136],"locationId":102},{"id":24136,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":24137,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24138],"locationId":3},{"id":24138,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24139],"locationId":452},{"id":24139,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24140],"locationId":453},{"id":24140,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24141,24167],"locationId":2},{"id":24141,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24142],"locationId":5},{"id":24142,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24143],"locationId":6},{"id":24143,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24144],"locationId":7},{"id":24144,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24145],"locationId":6},{"id":24145,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24146],"locationId":8},{"id":24146,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24147],"locationId":9},{"id":24147,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24148],"locationId":6},{"id":24148,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[24149,24157,24158,24165],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":24149,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24150],"locationId":84},{"id":24150,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24151],"locationId":6},{"id":24151,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24152],"locationId":85},{"id":24152,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24153],"locationId":86},{"id":24153,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24154],"locationId":87},{"id":24154,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24155],"locationId":88},{"id":24155,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24156],"locationId":74},{"id":24156,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[24163],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24163,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24164],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":24164,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24157,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24158,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24159],"locationId":11},{"id":24159,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24160],"locationId":12},{"id":24160,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24161],"locationId":13},{"id":24161,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[24162],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":24162,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":24165,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":0,"children":[24166],"locationId":148},{"id":24166,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":24167,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24168],"locationId":3},{"id":24168,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24169],"locationId":452},{"id":24169,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24170],"locationId":453},{"id":24170,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24171,24213],"locationId":2},{"id":24171,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24172],"locationId":5},{"id":24172,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24173],"locationId":6},{"id":24173,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24174],"locationId":7},{"id":24174,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24175],"locationId":6},{"id":24175,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24176,24183],"locationId":8},{"id":24176,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[24177],"locationId":157},{"id":24177,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[24178],"locationId":158},{"id":24178,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24179],"locationId":29},{"id":24179,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[24180],"locationId":159},{"id":24180,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[24181],"locationId":224},{"id":24181,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24182],"locationId":29},{"id":24182,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":22,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":123,"ticks":1,"startLocationId":771,"endLocationId":772}],"locationId":225},{"id":24183,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24184],"locationId":9},{"id":24184,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24185],"locationId":6},{"id":24185,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24186,24195],"locationId":10},{"id":24186,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24187],"locationId":84},{"id":24187,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24188],"locationId":6},{"id":24188,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24189],"locationId":85},{"id":24189,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24190],"locationId":86},{"id":24190,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24191],"locationId":87},{"id":24191,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24192],"locationId":88},{"id":24192,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24193],"locationId":74},{"id":24193,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24194,24204],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24194,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139}],"locationId":129},{"id":24204,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24205,24208,24209],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":24205,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24206],"locationId":40},{"id":24206,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24207],"locationId":29},{"id":24207,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24208,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24209,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24210],"locationId":117},{"id":24210,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[24211],"locationId":118},{"id":24211,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[24212],"locationId":123},{"id":24212,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":24195,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24196],"locationId":11},{"id":24196,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24197],"locationId":12},{"id":24197,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24198],"locationId":13},{"id":24198,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"children":[24199,24201],"positionTicks":[{"line":576,"ticks":2,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":24199,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[24200],"locationId":15},{"id":24200,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":24201,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[24202],"locationId":36},{"id":24202,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24203],"locationId":40},{"id":24203,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":24213,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24214],"locationId":3},{"id":24214,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24215],"locationId":452},{"id":24215,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24216],"locationId":453},{"id":24216,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24217,24308],"locationId":2},{"id":24217,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24218],"locationId":5},{"id":24218,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24219],"locationId":6},{"id":24219,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24220],"locationId":7},{"id":24220,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24221],"locationId":6},{"id":24221,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24222],"locationId":8},{"id":24222,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24223],"locationId":9},{"id":24223,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24224],"locationId":6},{"id":24224,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24225,24291],"locationId":10},{"id":24225,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24226],"locationId":84},{"id":24226,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24227],"locationId":6},{"id":24227,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24228],"locationId":85},{"id":24228,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24229],"locationId":86},{"id":24229,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24230],"locationId":87},{"id":24230,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24231],"locationId":88},{"id":24231,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24232],"locationId":74},{"id":24232,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24233,24234],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24233,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":24234,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[24235,24299],"locationId":90},{"id":24235,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[24236,24248],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24236,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24237],"locationId":114},{"id":24237,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24238],"locationId":114},{"id":24238,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24239],"locationId":114},{"id":24239,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24240],"locationId":114},{"id":24240,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24241],"locationId":114},{"id":24241,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24242],"locationId":114},{"id":24242,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24243],"locationId":114},{"id":24243,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24244],"locationId":114},{"id":24244,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24245],"locationId":114},{"id":24245,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24246],"locationId":114},{"id":24246,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24247],"locationId":114},{"id":24247,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":24248,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24249],"locationId":109},{"id":24249,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[24250],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24250,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24251],"locationId":109},{"id":24251,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24252],"locationId":109},{"id":24252,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24253],"locationId":109},{"id":24253,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24254],"locationId":109},{"id":24254,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24255],"locationId":109},{"id":24255,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24256],"locationId":109},{"id":24256,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24257],"locationId":109},{"id":24257,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24258],"locationId":109},{"id":24258,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24259],"locationId":109},{"id":24259,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24260],"locationId":109},{"id":24260,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24261],"locationId":109},{"id":24261,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24262],"locationId":109},{"id":24262,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24263],"locationId":109},{"id":24263,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24264],"locationId":109},{"id":24264,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24265],"locationId":109},{"id":24265,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24266],"locationId":109},{"id":24266,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24267],"locationId":109},{"id":24267,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24268],"locationId":109},{"id":24268,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24269],"locationId":109},{"id":24269,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24270],"locationId":109},{"id":24270,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24271],"locationId":109},{"id":24271,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24272],"locationId":109},{"id":24272,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24273],"locationId":109},{"id":24273,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24274],"locationId":109},{"id":24274,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24275],"locationId":109},{"id":24275,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24276],"locationId":109},{"id":24276,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24277],"locationId":109},{"id":24277,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24278],"locationId":109},{"id":24278,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24279],"locationId":109},{"id":24279,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24280],"locationId":109},{"id":24280,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24281],"locationId":109},{"id":24281,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24282],"locationId":109},{"id":24282,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24283],"locationId":109},{"id":24283,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24284],"locationId":109},{"id":24284,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24285],"locationId":109},{"id":24285,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24286],"locationId":109},{"id":24286,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24287],"locationId":109},{"id":24287,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24288],"locationId":109},{"id":24288,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24289],"locationId":109},{"id":24289,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24290],"locationId":109},{"id":24290,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24299,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24300],"locationId":40},{"id":24300,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24301],"locationId":29},{"id":24301,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24291,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24292],"locationId":11},{"id":24292,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24293],"locationId":12},{"id":24293,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24294],"locationId":13},{"id":24294,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24295,24302,24305],"locationId":14},{"id":24295,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[24296],"locationId":36},{"id":24296,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24297],"locationId":40},{"id":24297,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24298],"locationId":29},{"id":24298,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24302,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[24303],"locationId":64},{"id":24303,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[24304],"locationId":65},{"id":24304,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":24305,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[24306],"locationId":15},{"id":24306,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[24307],"locationId":25},{"id":24307,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":24308,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24309],"locationId":3},{"id":24309,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24310],"locationId":452},{"id":24310,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24311],"locationId":453},{"id":24311,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24312,24343],"locationId":2},{"id":24312,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24313],"locationId":5},{"id":24313,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24314],"locationId":6},{"id":24314,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24315,24316],"locationId":7},{"id":24315,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":534,"ticks":1,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":24316,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24317],"locationId":6},{"id":24317,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24318],"locationId":8},{"id":24318,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24319],"locationId":9},{"id":24319,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24320],"locationId":6},{"id":24320,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24321,24326,24331],"locationId":10},{"id":24321,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24322],"locationId":11},{"id":24322,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24323],"locationId":12},{"id":24323,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24324],"locationId":13},{"id":24324,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24325,24327],"locationId":14},{"id":24325,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22},{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":24327,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[24328],"locationId":36},{"id":24328,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24329],"locationId":40},{"id":24329,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24330],"locationId":29},{"id":24330,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24326,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":24331,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24332],"locationId":84},{"id":24332,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24333],"locationId":6},{"id":24333,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24334],"locationId":85},{"id":24334,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24335],"locationId":86},{"id":24335,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24336],"locationId":87},{"id":24336,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24337],"locationId":88},{"id":24337,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24338],"locationId":74},{"id":24338,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[24339],"locationId":89},{"id":24339,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24340,24341],"positionTicks":[{"line":334,"ticks":1,"startLocationId":492,"endLocationId":493}],"locationId":90},{"id":24340,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24341,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24342],"locationId":40},{"id":24342,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":24343,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24344],"locationId":3},{"id":24344,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24345],"locationId":452},{"id":24345,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24346],"locationId":453},{"id":24346,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24347,24386],"locationId":2},{"id":24347,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24348],"locationId":5},{"id":24348,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24349],"locationId":6},{"id":24349,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24350],"locationId":7},{"id":24350,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24351],"locationId":6},{"id":24351,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24352],"locationId":8},{"id":24352,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24353],"locationId":9},{"id":24353,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24354],"locationId":6},{"id":24354,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24355,24360,24371],"locationId":10},{"id":24355,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24356],"locationId":12},{"id":24356,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[24357],"locationId":372},{"id":24357,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[24358],"locationId":373},{"id":24358,"callFrame":{"functionName":"verifyNewExpressions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":42,"columnNumber":24},"hitCount":0,"children":[24359],"locationId":374},{"id":24359,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":414,"ticks":1,"startLocationId":634,"endLocationId":635}],"locationId":13},{"id":24360,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24361],"locationId":84},{"id":24361,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24362],"locationId":6},{"id":24362,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24363,24385],"locationId":85},{"id":24363,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24364],"locationId":86},{"id":24364,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24365],"locationId":87},{"id":24365,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24366],"locationId":88},{"id":24366,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24367],"locationId":74},{"id":24367,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24368,24379],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24368,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":0,"children":[24369],"locationId":129},{"id":24369,"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"hitCount":0,"children":[24370],"locationId":308},{"id":24370,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":269,"ticks":1,"startLocationId":311,"endLocationId":312}],"locationId":69},{"id":24379,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[24380],"locationId":90},{"id":24380,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24381],"locationId":117},{"id":24381,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[24382,24383],"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":24382,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":24383,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[24384],"locationId":123},{"id":24384,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":24385,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":140,"ticks":1,"startLocationId":773,"endLocationId":774}],"locationId":140},{"id":24371,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24372],"locationId":11},{"id":24372,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24373],"locationId":12},{"id":24373,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24374],"locationId":13},{"id":24374,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[24375,24378],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":24375,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"children":[24376],"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":24376,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[24377],"locationId":25},{"id":24377,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":24378,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":24386,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24387],"locationId":3},{"id":24387,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24388],"locationId":452},{"id":24388,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24389],"locationId":453},{"id":24389,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24390,24423],"locationId":2},{"id":24390,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24391],"locationId":5},{"id":24391,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24392],"locationId":6},{"id":24392,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24393],"locationId":7},{"id":24393,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24394],"locationId":6},{"id":24394,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24395],"locationId":8},{"id":24395,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24396],"locationId":9},{"id":24396,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24397],"locationId":6},{"id":24397,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24398,24411,24415],"locationId":10},{"id":24398,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24399],"locationId":84},{"id":24399,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24400],"locationId":6},{"id":24400,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24401],"locationId":85},{"id":24401,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24402],"locationId":86},{"id":24402,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24403],"locationId":87},{"id":24403,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24404],"locationId":88},{"id":24404,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24405],"locationId":74},{"id":24405,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24406,24407],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24406,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":2,"positionTicks":[{"line":181,"ticks":2,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":24407,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24408,24412],"positionTicks":[{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":24408,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24409],"locationId":109},{"id":24409,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"children":[24410],"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24410,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24412,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[24413],"locationId":102},{"id":24413,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[24414],"locationId":217},{"id":24414,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":483,"ticks":1,"startLocationId":299,"endLocationId":300}],"locationId":218},{"id":24411,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24415,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24416],"locationId":11},{"id":24416,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24417],"locationId":12},{"id":24417,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24418],"locationId":13},{"id":24418,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24419,24422],"locationId":14},{"id":24419,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[24420],"locationId":64},{"id":24420,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[24421],"locationId":65},{"id":24421,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":24422,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":390,"endLocationId":391}],"locationId":36},{"id":24423,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24424],"locationId":3},{"id":24424,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24425],"locationId":452},{"id":24425,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24426],"locationId":453},{"id":24426,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24427,24483],"locationId":2},{"id":24427,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24428],"locationId":5},{"id":24428,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24429],"locationId":6},{"id":24429,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24430],"locationId":7},{"id":24430,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24431],"locationId":6},{"id":24431,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24432],"locationId":8},{"id":24432,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24433],"locationId":9},{"id":24433,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24434],"locationId":6},{"id":24434,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24435,24436,24479,24482],"locationId":10},{"id":24435,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24436,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24437],"locationId":84},{"id":24437,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24438],"locationId":6},{"id":24438,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24439],"locationId":85},{"id":24439,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24440],"locationId":86},{"id":24440,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24441],"locationId":87},{"id":24441,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24442],"locationId":88},{"id":24442,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24443],"locationId":74},{"id":24443,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24444],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24444,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24445,24446],"positionTicks":[{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":24445,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":3,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24446,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24447],"locationId":109},{"id":24447,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24448],"locationId":109},{"id":24448,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24449],"locationId":109},{"id":24449,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24450],"locationId":109},{"id":24450,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24451],"locationId":109},{"id":24451,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24452],"locationId":109},{"id":24452,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24453],"locationId":109},{"id":24453,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24454],"locationId":109},{"id":24454,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24455],"locationId":109},{"id":24455,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24456],"locationId":109},{"id":24456,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24457],"locationId":109},{"id":24457,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24458],"locationId":109},{"id":24458,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24459],"locationId":109},{"id":24459,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24460],"locationId":109},{"id":24460,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24461],"locationId":109},{"id":24461,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24462],"locationId":109},{"id":24462,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24463],"locationId":109},{"id":24463,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24464],"locationId":109},{"id":24464,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24465],"locationId":109},{"id":24465,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24466],"locationId":109},{"id":24466,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24467],"locationId":109},{"id":24467,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24468],"locationId":109},{"id":24468,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24469],"locationId":109},{"id":24469,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24470],"locationId":109},{"id":24470,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24471],"locationId":109},{"id":24471,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24472],"locationId":109},{"id":24472,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24473],"locationId":109},{"id":24473,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24474],"locationId":109},{"id":24474,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24475],"locationId":109},{"id":24475,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24476],"locationId":109},{"id":24476,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24477],"locationId":109},{"id":24477,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24478],"locationId":109},{"id":24478,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24479,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[24480],"locationId":151},{"id":24480,"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[24481],"locationId":224},{"id":24481,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":24482,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":24483,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24484],"locationId":3},{"id":24484,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24485],"locationId":452},{"id":24485,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24486],"locationId":453},{"id":24486,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24487,24531],"locationId":2},{"id":24487,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24488],"locationId":5},{"id":24488,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24489],"locationId":6},{"id":24489,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24490],"locationId":7},{"id":24490,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24491],"locationId":6},{"id":24491,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24492],"locationId":8},{"id":24492,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24493],"locationId":9},{"id":24493,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24494],"locationId":6},{"id":24494,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24495,24499,24518],"locationId":10},{"id":24495,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24496],"locationId":12},{"id":24496,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24497],"locationId":13},{"id":24497,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24498],"locationId":14},{"id":24498,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":24499,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24500],"locationId":84},{"id":24500,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24501],"locationId":6},{"id":24501,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24502],"locationId":85},{"id":24502,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24503],"locationId":86},{"id":24503,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24504],"locationId":87},{"id":24504,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24505],"locationId":88},{"id":24505,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24506],"locationId":74},{"id":24506,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24507],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24507,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24508,24522,24526],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":24508,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"children":[24509],"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24509,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24510],"locationId":114},{"id":24510,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24511],"locationId":114},{"id":24511,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24512],"locationId":114},{"id":24512,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24513],"locationId":114},{"id":24513,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24514],"locationId":114},{"id":24514,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24515],"locationId":114},{"id":24515,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24516],"locationId":114},{"id":24516,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24517],"locationId":114},{"id":24517,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":24522,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[24523],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24523,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[24524],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24524,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[24525],"locationId":97},{"id":24525,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24526,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24527],"locationId":117},{"id":24527,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[24528],"locationId":118},{"id":24528,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[24529],"locationId":123},{"id":24529,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24530],"locationId":29},{"id":24530,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24518,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24519],"locationId":11},{"id":24519,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24520],"locationId":12},{"id":24520,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24521],"locationId":13},{"id":24521,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":24531,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24532],"locationId":3},{"id":24532,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24533],"locationId":452},{"id":24533,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24534],"locationId":453},{"id":24534,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24535,24567],"locationId":2},{"id":24535,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24536],"locationId":5},{"id":24536,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24537],"locationId":6},{"id":24537,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24538],"locationId":7},{"id":24538,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24539],"locationId":6},{"id":24539,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24540],"locationId":8},{"id":24540,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24541],"locationId":9},{"id":24541,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24542],"locationId":6},{"id":24542,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24543,24554],"locationId":10},{"id":24543,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24544],"locationId":84},{"id":24544,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24545],"locationId":6},{"id":24545,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24546],"locationId":85},{"id":24546,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24547],"locationId":86},{"id":24547,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24548],"locationId":87},{"id":24548,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24549],"locationId":88},{"id":24549,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24550],"locationId":74},{"id":24550,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24551],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24551,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[24552,24555,24558,24561,24566],"locationId":90},{"id":24552,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24553],"locationId":109},{"id":24553,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24555,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24556],"locationId":40},{"id":24556,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24557],"locationId":29},{"id":24557,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24558,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[24559],"locationId":102},{"id":24559,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":0,"children":[24560],"locationId":217},{"id":24560,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":482,"ticks":1,"startLocationId":775,"endLocationId":299}],"locationId":218},{"id":24561,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24562],"locationId":117},{"id":24562,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[24563],"positionTicks":[{"line":113,"ticks":1,"startLocationId":121,"endLocationId":122}],"locationId":118},{"id":24563,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[24564],"locationId":123},{"id":24564,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24565],"locationId":29},{"id":24565,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24566,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24554,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24567,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24568],"locationId":3},{"id":24568,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24569],"locationId":452},{"id":24569,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24570],"locationId":453},{"id":24570,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24571,24601],"locationId":2},{"id":24571,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24572],"locationId":5},{"id":24572,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24573],"locationId":6},{"id":24573,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24574],"locationId":7},{"id":24574,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24575],"locationId":6},{"id":24575,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24576],"locationId":8},{"id":24576,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24577],"locationId":9},{"id":24577,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24578],"locationId":6},{"id":24578,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[24579,24580],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":24579,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24580,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24581],"locationId":84},{"id":24581,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24582],"locationId":6},{"id":24582,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24583],"locationId":85},{"id":24583,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24584],"locationId":86},{"id":24584,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24585],"locationId":87},{"id":24585,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24586],"locationId":88},{"id":24586,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24587],"locationId":74},{"id":24587,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[24588],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24588,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":4,"children":[24589],"positionTicks":[{"line":83,"ticks":2,"startLocationId":92,"endLocationId":95},{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":24589,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24590,24598],"locationId":109},{"id":24590,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24591],"locationId":109},{"id":24591,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24592],"locationId":109},{"id":24592,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24593],"locationId":109},{"id":24593,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24594],"locationId":114},{"id":24594,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24595],"locationId":114},{"id":24595,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24596],"locationId":114},{"id":24596,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24597],"locationId":114},{"id":24597,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":24598,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24599],"locationId":114},{"id":24599,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24600],"locationId":114},{"id":24600,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":24601,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24602],"locationId":3},{"id":24602,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24603],"locationId":452},{"id":24603,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24604],"locationId":453},{"id":24604,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24605,24646],"locationId":2},{"id":24605,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24606],"locationId":5},{"id":24606,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24607],"locationId":6},{"id":24607,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24608],"locationId":7},{"id":24608,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24609],"locationId":6},{"id":24609,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24610],"locationId":8},{"id":24610,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24611],"locationId":9},{"id":24611,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24612],"locationId":6},{"id":24612,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24613,24614,24631],"locationId":10},{"id":24613,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24614,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24615],"locationId":84},{"id":24615,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24616],"locationId":6},{"id":24616,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24617],"locationId":85},{"id":24617,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24618],"locationId":86},{"id":24618,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24619],"locationId":87},{"id":24619,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24620],"locationId":88},{"id":24620,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24621],"locationId":74},{"id":24621,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24622,24623],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24622,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":181,"ticks":1,"startLocationId":134,"endLocationId":135}],"locationId":129},{"id":24623,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24624,24626,24645],"positionTicks":[{"line":74,"ticks":1,"startLocationId":188,"endLocationId":189}],"locationId":90},{"id":24624,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[24625],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24625,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":24626,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24627],"locationId":117},{"id":24627,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[24628],"locationId":118},{"id":24628,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[24629],"locationId":123},{"id":24629,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24630],"locationId":29},{"id":24630,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24645,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24631,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24632],"locationId":11},{"id":24632,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24633,24638],"locationId":12},{"id":24633,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24634],"locationId":13},{"id":24634,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[24635],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":24635,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[24636],"locationId":15},{"id":24636,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[24637],"locationId":25},{"id":24637,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":24638,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[24639],"locationId":372},{"id":24639,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[24640],"locationId":373},{"id":24640,"callFrame":{"functionName":"verifyNewExpressions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":42,"columnNumber":24},"hitCount":0,"children":[24641],"locationId":374},{"id":24641,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24642],"locationId":13},{"id":24642,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[24643],"locationId":164},{"id":24643,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24644],"locationId":29},{"id":24644,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24646,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24647],"locationId":3},{"id":24647,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24648],"locationId":452},{"id":24648,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24649],"locationId":453},{"id":24649,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24650,24697],"locationId":2},{"id":24650,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24651],"locationId":5},{"id":24651,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24652],"locationId":6},{"id":24652,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24653],"locationId":7},{"id":24653,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24654],"locationId":6},{"id":24654,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24655],"locationId":8},{"id":24655,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24656],"locationId":9},{"id":24656,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24657],"locationId":6},{"id":24657,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[24658,24671,24689],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":24658,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24659],"locationId":84},{"id":24659,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24660],"locationId":6},{"id":24660,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24661],"locationId":85},{"id":24661,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24662],"locationId":86},{"id":24662,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24663],"locationId":87},{"id":24663,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24664],"locationId":88},{"id":24664,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24665],"locationId":74},{"id":24665,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[24666],"locationId":89},{"id":24666,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[24667,24679,24682],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":24667,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[24668],"locationId":97},{"id":24668,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[24669],"locationId":97},{"id":24669,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[24670],"locationId":97},{"id":24670,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24679,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24680],"locationId":117},{"id":24680,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[24681,24691],"locationId":118},{"id":24681,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":24691,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[24692],"locationId":123},{"id":24692,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24693],"locationId":29},{"id":24693,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24682,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24671,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24672],"locationId":11},{"id":24672,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24673,24683],"locationId":12},{"id":24673,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[24674],"locationId":72},{"id":24674,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[24675],"locationId":73},{"id":24675,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24676],"locationId":74},{"id":24676,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[24677],"locationId":75},{"id":24677,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":0,"children":[24678],"locationId":78},{"id":24678,"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":17},"hitCount":1,"positionTicks":[{"line":71,"ticks":1,"startLocationId":404,"endLocationId":405}],"locationId":403},{"id":24683,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24684],"locationId":13},{"id":24684,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24685,24690,24694],"locationId":14},{"id":24685,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[24686],"locationId":36},{"id":24686,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24687],"locationId":40},{"id":24687,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24688],"locationId":29},{"id":24688,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24690,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":737,"ticks":1,"startLocationId":253,"endLocationId":254}],"locationId":33},{"id":24694,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[24695],"locationId":15},{"id":24695,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[24696],"locationId":25},{"id":24696,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":24689,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24697,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24698],"locationId":3},{"id":24698,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24699],"locationId":452},{"id":24699,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24700],"locationId":453},{"id":24700,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24701,24753],"locationId":2},{"id":24701,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24702],"locationId":5},{"id":24702,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24703],"locationId":6},{"id":24703,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24704,24750],"locationId":7},{"id":24704,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24705],"locationId":6},{"id":24705,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24706],"locationId":8},{"id":24706,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24707],"locationId":9},{"id":24707,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24708],"locationId":6},{"id":24708,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24709,24722],"locationId":10},{"id":24709,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24710],"locationId":84},{"id":24710,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24711],"locationId":6},{"id":24711,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24712],"locationId":85},{"id":24712,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24713],"locationId":86},{"id":24713,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24714],"locationId":87},{"id":24714,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24715],"locationId":88},{"id":24715,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24716],"locationId":74},{"id":24716,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[24717],"locationId":89},{"id":24717,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[24718,24733,24740],"locationId":90},{"id":24718,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[24719],"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24719,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[24720],"locationId":97},{"id":24720,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"children":[24721],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":24721,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24733,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24734],"locationId":109},{"id":24734,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[24735],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24735,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24736],"locationId":109},{"id":24736,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24737],"locationId":109},{"id":24737,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24738],"locationId":109},{"id":24738,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24739],"locationId":109},{"id":24739,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24740,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24741],"locationId":117},{"id":24741,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[24742],"locationId":118},{"id":24742,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":2,"positionTicks":[{"line":791,"ticks":2,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":24722,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24723],"locationId":11},{"id":24723,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24724],"locationId":12},{"id":24724,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24725],"locationId":13},{"id":24725,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24726,24743,24746],"locationId":14},{"id":24726,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[24727],"locationId":46},{"id":24727,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[24728],"locationId":54},{"id":24728,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[24729],"locationId":55},{"id":24729,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[24730],"locationId":56},{"id":24730,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[24731],"locationId":28},{"id":24731,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24732],"locationId":29},{"id":24732,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24743,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[24744],"locationId":64},{"id":24744,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[24745],"locationId":65},{"id":24745,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":24746,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[24747],"locationId":36},{"id":24747,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24748],"locationId":40},{"id":24748,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24749],"locationId":29},{"id":24749,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24750,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":0,"children":[24751],"locationId":283},{"id":24751,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":0,"children":[24752],"locationId":286},{"id":24752,"callFrame":{"functionName":"get componentName","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":140,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":143,"ticks":1,"startLocationId":701,"endLocationId":702}],"locationId":700},{"id":24753,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24754],"locationId":3},{"id":24754,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24755],"locationId":452},{"id":24755,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24756],"locationId":453},{"id":24756,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24757,24801],"locationId":2},{"id":24757,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24758],"locationId":5},{"id":24758,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24759],"locationId":6},{"id":24759,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24760],"locationId":7},{"id":24760,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24761],"locationId":6},{"id":24761,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24762],"locationId":8},{"id":24762,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24763],"locationId":9},{"id":24763,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24764],"locationId":6},{"id":24764,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[24765,24775,24795],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":24765,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24766],"locationId":84},{"id":24766,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24767],"locationId":6},{"id":24767,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24768],"locationId":85},{"id":24768,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24769],"locationId":86},{"id":24769,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24770],"locationId":87},{"id":24770,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24771],"locationId":88},{"id":24771,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24772],"locationId":74},{"id":24772,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[24773,24791],"locationId":89},{"id":24773,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[24774,24788,24792],"locationId":90},{"id":24774,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[24776],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24776,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[24777],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24777,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24778],"locationId":109},{"id":24778,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24779],"locationId":109},{"id":24779,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24780],"locationId":114},{"id":24780,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24781],"locationId":114},{"id":24781,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24782],"locationId":114},{"id":24782,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24783],"locationId":114},{"id":24783,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24784],"locationId":114},{"id":24784,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24785],"locationId":114},{"id":24785,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24786],"locationId":114},{"id":24786,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[24787],"locationId":114},{"id":24787,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":24788,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24789],"locationId":40},{"id":24789,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24790],"locationId":29},{"id":24790,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24792,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[24793],"locationId":97},{"id":24793,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[24794],"locationId":97},{"id":24794,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24791,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":24775,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":24795,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24796],"locationId":11},{"id":24796,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24797],"locationId":12},{"id":24797,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24798],"locationId":13},{"id":24798,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24799,24800],"locationId":14},{"id":24799,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":634,"ticks":1,"startLocationId":255,"endLocationId":221}],"locationId":36},{"id":24800,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":80,"ticks":1,"startLocationId":767,"endLocationId":768}],"locationId":46},{"id":24801,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24802],"locationId":3},{"id":24802,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24803],"locationId":452},{"id":24803,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24804],"locationId":453},{"id":24804,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24805,24842],"locationId":2},{"id":24805,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24806],"locationId":5},{"id":24806,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24807],"locationId":6},{"id":24807,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24808,24814],"locationId":7},{"id":24808,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":0,"children":[24809],"locationId":196},{"id":24809,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[24810],"locationId":197},{"id":24810,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[24811],"locationId":198},{"id":24811,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24812],"locationId":29},{"id":24812,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[24813],"locationId":199},{"id":24813,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":24814,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24815],"locationId":6},{"id":24815,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24816],"locationId":8},{"id":24816,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24817],"locationId":9},{"id":24817,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24818],"locationId":6},{"id":24818,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24819,24826,24839],"locationId":10},{"id":24819,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24820,24824],"locationId":11},{"id":24820,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":1,"children":[24821,24840],"positionTicks":[{"line":568,"ticks":1,"startLocationId":400,"endLocationId":401}],"locationId":12},{"id":24821,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24822],"locationId":13},{"id":24822,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[24823,24825,24835],"positionTicks":[{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201}],"locationId":14},{"id":24823,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":741,"ticks":1,"startLocationId":696,"endLocationId":697}],"locationId":33},{"id":24825,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":24835,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[24836],"locationId":36},{"id":24836,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24837],"locationId":40},{"id":24837,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24838],"locationId":29},{"id":24838,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24840,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":813,"ticks":1,"startLocationId":512,"endLocationId":513}],"locationId":256},{"id":24824,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":73,"ticks":1,"startLocationId":698,"endLocationId":699}],"locationId":339},{"id":24826,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24827],"locationId":84},{"id":24827,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24828],"locationId":6},{"id":24828,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24829],"locationId":85},{"id":24829,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24830],"locationId":86},{"id":24830,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24831],"locationId":87},{"id":24831,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24832],"locationId":88},{"id":24832,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24833],"locationId":74},{"id":24833,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[24834],"locationId":89},{"id":24834,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[24841],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":24841,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24839,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":24842,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24843],"locationId":3},{"id":24843,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24844],"locationId":452},{"id":24844,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24845],"locationId":453},{"id":24845,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24846,24886],"locationId":2},{"id":24846,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24847],"locationId":5},{"id":24847,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24848],"locationId":6},{"id":24848,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24849],"locationId":7},{"id":24849,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24850],"locationId":6},{"id":24850,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24851,24864],"locationId":8},{"id":24851,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24852],"locationId":9},{"id":24852,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24853],"locationId":6},{"id":24853,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[24854,24876,24883],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":24854,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24855],"locationId":84},{"id":24855,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24856],"locationId":6},{"id":24856,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24857],"locationId":85},{"id":24857,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24858],"locationId":86},{"id":24858,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24859],"locationId":87},{"id":24859,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24860],"locationId":88},{"id":24860,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24861],"locationId":74},{"id":24861,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24862],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24862,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[24863,24873],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":24863,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24873,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24874],"locationId":109},{"id":24874,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[24875],"locationId":109},{"id":24875,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":24876,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24877],"locationId":11},{"id":24877,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24878],"locationId":12},{"id":24878,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24879],"locationId":13},{"id":24879,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[24880],"locationId":14},{"id":24880,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[24881],"locationId":15},{"id":24881,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"children":[24882],"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":24882,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":24883,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[24884],"locationId":151},{"id":24884,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[24885],"locationId":152},{"id":24885,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":426,"ticks":1,"startLocationId":478,"endLocationId":479}],"locationId":74},{"id":24864,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[24865],"locationId":157},{"id":24865,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[24866],"locationId":164},{"id":24866,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24867],"locationId":29},{"id":24867,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[24868],"locationId":165},{"id":24868,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[24869],"locationId":166},{"id":24869,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24870],"locationId":29},{"id":24870,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[24871],"locationId":167},{"id":24871,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":0,"children":[24872],"locationId":168},{"id":24872,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":139,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":147,"ticks":1,"startLocationId":170,"endLocationId":171}],"locationId":169},{"id":24886,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24887],"locationId":3},{"id":24887,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24888],"locationId":452},{"id":24888,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24889],"locationId":453},{"id":24889,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24890,25264],"locationId":2},{"id":24890,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[24891],"locationId":5},{"id":24891,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24892],"locationId":6},{"id":24892,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[24893,24925],"locationId":7},{"id":24893,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24894],"locationId":6},{"id":24894,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[24895],"locationId":8},{"id":24895,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[24896],"locationId":9},{"id":24896,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24897],"locationId":6},{"id":24897,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[24898,24903],"locationId":10},{"id":24898,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[24899],"locationId":11},{"id":24899,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[24900],"locationId":12},{"id":24900,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[24901],"locationId":13},{"id":24901,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[24902,24919],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":24902,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":24919,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[24920],"locationId":46},{"id":24920,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[24921],"locationId":54},{"id":24921,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[24922],"locationId":55},{"id":24922,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[24923],"locationId":56},{"id":24923,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":24903,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[24904],"locationId":84},{"id":24904,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[24905],"locationId":6},{"id":24905,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[24906],"locationId":85},{"id":24906,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[24907],"locationId":86},{"id":24907,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[24908],"locationId":87},{"id":24908,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[24909],"locationId":88},{"id":24909,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[24910],"locationId":74},{"id":24910,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[24911,24918],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":24911,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[24912,24913,24916],"locationId":90},{"id":24912,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[24924],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":24924,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":24913,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[24914],"locationId":40},{"id":24914,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[24915],"locationId":29},{"id":24915,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":24916,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[24917],"locationId":117},{"id":24917,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":24918,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":45,"ticks":1,"startLocationId":776,"endLocationId":777}],"locationId":97},{"id":24925,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":0,"children":[24926],"locationId":283},{"id":24926,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":1,"positionTicks":[{"line":507,"ticks":1,"startLocationId":287,"endLocationId":288}],"locationId":286},{"id":25264,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25265],"locationId":3},{"id":25265,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25266],"locationId":452},{"id":25266,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25267],"locationId":453},{"id":25267,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25268],"locationId":2},{"id":25268,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[25269],"locationId":5},{"id":25269,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25270],"locationId":6},{"id":25270,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[25271],"locationId":7},{"id":25271,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25272],"locationId":6},{"id":25272,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[25273,25634],"locationId":8},{"id":25273,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[25274],"locationId":157},{"id":25274,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[25275],"locationId":158},{"id":25275,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[25276],"locationId":29},{"id":25276,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":25634,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[25635],"locationId":9},{"id":25635,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25636],"locationId":6},{"id":25636,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[25637,25646],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":25637,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[25638],"locationId":84},{"id":25638,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25639],"locationId":6},{"id":25639,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[25640],"locationId":85},{"id":25640,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[25641],"locationId":86},{"id":25641,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[25642],"locationId":87},{"id":25642,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[25643],"locationId":88},{"id":25643,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[25644],"locationId":74},{"id":25644,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[25645],"locationId":89},{"id":25645,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":25646,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[25647],"locationId":11},{"id":25647,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[25648],"locationId":12},{"id":25648,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[25649],"locationId":13},{"id":25649,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":12023,"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":2791,"columnNumber":32},"hitCount":0,"children":[12024,25284],"locationId":656},{"id":12024,"callFrame":{"functionName":"","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":732,"columnNumber":29},"hitCount":0,"children":[12025],"locationId":657},{"id":12025,"callFrame":{"functionName":"cycle","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1983,"columnNumber":18},"hitCount":0,"children":[12026],"locationId":658},{"id":12026,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12027],"locationId":4},{"id":12027,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12028],"locationId":1},{"id":12028,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12029],"locationId":2},{"id":12029,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12030],"locationId":3},{"id":12030,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12031],"locationId":4},{"id":12031,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12032],"locationId":1},{"id":12032,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12033],"locationId":2},{"id":12033,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12034],"locationId":3},{"id":12034,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12035],"locationId":4},{"id":12035,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12036],"locationId":1},{"id":12036,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12037],"locationId":2},{"id":12037,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12038],"locationId":3},{"id":12038,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12039],"locationId":4},{"id":12039,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12040],"locationId":1},{"id":12040,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12041],"locationId":2},{"id":12041,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12042],"locationId":3},{"id":12042,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12043],"locationId":4},{"id":12043,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12044],"locationId":1},{"id":12044,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12045],"locationId":2},{"id":12045,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12046],"locationId":3},{"id":12046,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12047],"locationId":4},{"id":12047,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12048],"locationId":1},{"id":12048,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12049],"locationId":2},{"id":12049,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12050],"locationId":3},{"id":12050,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12051],"locationId":4},{"id":12051,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12052],"locationId":1},{"id":12052,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12053],"locationId":2},{"id":12053,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12054],"locationId":3},{"id":12054,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12055],"locationId":4},{"id":12055,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12056],"locationId":1},{"id":12056,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12057],"locationId":2},{"id":12057,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12058],"locationId":3},{"id":12058,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12059],"locationId":4},{"id":12059,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12060],"locationId":1},{"id":12060,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12061],"locationId":2},{"id":12061,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12062],"locationId":3},{"id":12062,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12063],"locationId":4},{"id":12063,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12064],"locationId":1},{"id":12064,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12065],"locationId":2},{"id":12065,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12066],"locationId":3},{"id":12066,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12067],"locationId":4},{"id":12067,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12068],"locationId":1},{"id":12068,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12069],"locationId":2},{"id":12069,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12070],"locationId":3},{"id":12070,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12071],"locationId":4},{"id":12071,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12072],"locationId":1},{"id":12072,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12073],"locationId":2},{"id":12073,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12074],"locationId":3},{"id":12074,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12075],"locationId":4},{"id":12075,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12076],"locationId":1},{"id":12076,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12077],"locationId":2},{"id":12077,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12078],"locationId":3},{"id":12078,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12079],"locationId":4},{"id":12079,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12080],"locationId":1},{"id":12080,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12081],"locationId":2},{"id":12081,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12082],"locationId":3},{"id":12082,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12083],"locationId":4},{"id":12083,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12084],"locationId":1},{"id":12084,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12085],"locationId":2},{"id":12085,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12086],"locationId":3},{"id":12086,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12087],"locationId":4},{"id":12087,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12088],"locationId":1},{"id":12088,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12089],"locationId":2},{"id":12089,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12090],"locationId":3},{"id":12090,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12091],"locationId":4},{"id":12091,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12092],"locationId":1},{"id":12092,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12093],"locationId":2},{"id":12093,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12094],"locationId":3},{"id":12094,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12095],"locationId":4},{"id":12095,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12096],"locationId":1},{"id":12096,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12097],"locationId":2},{"id":12097,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12098],"locationId":3},{"id":12098,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12099],"locationId":4},{"id":12099,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12100],"locationId":1},{"id":12100,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12101],"locationId":2},{"id":12101,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12102],"locationId":3},{"id":12102,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12103],"locationId":4},{"id":12103,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12104],"locationId":1},{"id":12104,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12105],"locationId":2},{"id":12105,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12106],"locationId":3},{"id":12106,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12107],"locationId":4},{"id":12107,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12108],"locationId":1},{"id":12108,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12109],"locationId":2},{"id":12109,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12110],"locationId":3},{"id":12110,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12111],"locationId":4},{"id":12111,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12112],"locationId":1},{"id":12112,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12113],"locationId":2},{"id":12113,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12114],"locationId":3},{"id":12114,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12115],"locationId":4},{"id":12115,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12116],"locationId":1},{"id":12116,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12117],"locationId":2},{"id":12117,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12118],"locationId":3},{"id":12118,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12119],"locationId":4},{"id":12119,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12120],"locationId":1},{"id":12120,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12121],"locationId":2},{"id":12121,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12122],"locationId":3},{"id":12122,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12123],"locationId":4},{"id":12123,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12124],"locationId":1},{"id":12124,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12125],"locationId":2},{"id":12125,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12126],"locationId":3},{"id":12126,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12127],"locationId":4},{"id":12127,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12128],"locationId":1},{"id":12128,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12129],"locationId":2},{"id":12129,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12130],"locationId":3},{"id":12130,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12131],"locationId":4},{"id":12131,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12132],"locationId":1},{"id":12132,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12133],"locationId":2},{"id":12133,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12134],"locationId":3},{"id":12134,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12135],"locationId":4},{"id":12135,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12136],"locationId":1},{"id":12136,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12137],"locationId":2},{"id":12137,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12138],"locationId":3},{"id":12138,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12139],"locationId":4},{"id":12139,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12140],"locationId":1},{"id":12140,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12141],"locationId":2},{"id":12141,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12142],"locationId":3},{"id":12142,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12143],"locationId":4},{"id":12143,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12144],"locationId":1},{"id":12144,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12145],"locationId":2},{"id":12145,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12146],"locationId":3},{"id":12146,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12147],"locationId":4},{"id":12147,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12148],"locationId":1},{"id":12148,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12149],"locationId":2},{"id":12149,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12150],"locationId":3},{"id":12150,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12151],"locationId":4},{"id":12151,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12152],"locationId":1},{"id":12152,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12153],"locationId":2},{"id":12153,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12154],"locationId":3},{"id":12154,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12155],"locationId":4},{"id":12155,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12156],"locationId":1},{"id":12156,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12157],"locationId":2},{"id":12157,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12158],"locationId":3},{"id":12158,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12159],"locationId":4},{"id":12159,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12160],"locationId":1},{"id":12160,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12161],"locationId":2},{"id":12161,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12162],"locationId":3},{"id":12162,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12163],"locationId":4},{"id":12163,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12164],"locationId":1},{"id":12164,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12165],"locationId":2},{"id":12165,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12166],"locationId":3},{"id":12166,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12167],"locationId":4},{"id":12167,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12168],"locationId":1},{"id":12168,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12169],"locationId":2},{"id":12169,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12170],"locationId":3},{"id":12170,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12171],"locationId":4},{"id":12171,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12172],"locationId":1},{"id":12172,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12173],"locationId":2},{"id":12173,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12174],"locationId":3},{"id":12174,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12175],"locationId":4},{"id":12175,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12176],"locationId":1},{"id":12176,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12177],"locationId":2},{"id":12177,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12178],"locationId":3},{"id":12178,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12179],"locationId":4},{"id":12179,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12180],"locationId":1},{"id":12180,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12181],"locationId":2},{"id":12181,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12182],"locationId":3},{"id":12182,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12183],"locationId":4},{"id":12183,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12184],"locationId":1},{"id":12184,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12185],"locationId":2},{"id":12185,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12186],"locationId":3},{"id":12186,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12187],"locationId":4},{"id":12187,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12188],"locationId":1},{"id":12188,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12189],"locationId":2},{"id":12189,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12190],"locationId":3},{"id":12190,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12191],"locationId":4},{"id":12191,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12192],"locationId":1},{"id":12192,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12193],"locationId":2},{"id":12193,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12194],"locationId":3},{"id":12194,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12195],"locationId":4},{"id":12195,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12196],"locationId":1},{"id":12196,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12197],"locationId":2},{"id":12197,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12198],"locationId":3},{"id":12198,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12199],"locationId":4},{"id":12199,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12200],"locationId":1},{"id":12200,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12201],"locationId":2},{"id":12201,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12202],"locationId":3},{"id":12202,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12203],"locationId":4},{"id":12203,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12204],"locationId":1},{"id":12204,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12205],"locationId":2},{"id":12205,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12206],"locationId":3},{"id":12206,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12207],"locationId":4},{"id":12207,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12208],"locationId":1},{"id":12208,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12209],"locationId":2},{"id":12209,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12210],"locationId":3},{"id":12210,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12211],"locationId":4},{"id":12211,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12212],"locationId":1},{"id":12212,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12213],"locationId":2},{"id":12213,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12214],"locationId":3},{"id":12214,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12215],"locationId":4},{"id":12215,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12216],"locationId":1},{"id":12216,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12217],"locationId":2},{"id":12217,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12218],"locationId":3},{"id":12218,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12219],"locationId":4},{"id":12219,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12220],"locationId":1},{"id":12220,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12221],"locationId":2},{"id":12221,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12222],"locationId":3},{"id":12222,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12223],"locationId":4},{"id":12223,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12224],"locationId":1},{"id":12224,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12225],"locationId":2},{"id":12225,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12226],"locationId":3},{"id":12226,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12227],"locationId":4},{"id":12227,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12228],"locationId":1},{"id":12228,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12229],"locationId":2},{"id":12229,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12230],"locationId":3},{"id":12230,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12231],"locationId":4},{"id":12231,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12232],"locationId":1},{"id":12232,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12233],"locationId":2},{"id":12233,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12234],"locationId":3},{"id":12234,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12235],"locationId":4},{"id":12235,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12236],"locationId":1},{"id":12236,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12237],"locationId":2},{"id":12237,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12238],"locationId":3},{"id":12238,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12239],"locationId":4},{"id":12239,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12240],"locationId":1},{"id":12240,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12241],"locationId":2},{"id":12241,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12242],"locationId":3},{"id":12242,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12243],"locationId":4},{"id":12243,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12244],"locationId":1},{"id":12244,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12245],"locationId":2},{"id":12245,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12246],"locationId":3},{"id":12246,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12247],"locationId":4},{"id":12247,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12248],"locationId":1},{"id":12248,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12249],"locationId":2},{"id":12249,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12250],"locationId":3},{"id":12250,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12251],"locationId":4},{"id":12251,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12252],"locationId":1},{"id":12252,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12253],"locationId":2},{"id":12253,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12254],"locationId":3},{"id":12254,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12255],"locationId":4},{"id":12255,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12256],"locationId":1},{"id":12256,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12257],"locationId":2},{"id":12257,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12258],"locationId":3},{"id":12258,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12259],"locationId":4},{"id":12259,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12260],"locationId":1},{"id":12260,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12261],"locationId":2},{"id":12261,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12262],"locationId":3},{"id":12262,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12263],"locationId":4},{"id":12263,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12264],"locationId":1},{"id":12264,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12265],"locationId":2},{"id":12265,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12266],"locationId":3},{"id":12266,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12267],"locationId":4},{"id":12267,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12268],"locationId":1},{"id":12268,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12269],"locationId":2},{"id":12269,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[12270],"locationId":5},{"id":12270,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12271],"locationId":6},{"id":12271,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[12272],"locationId":7},{"id":12272,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12273],"locationId":6},{"id":12273,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[12274,12547],"locationId":8},{"id":12274,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[12275],"locationId":157},{"id":12275,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[12276],"locationId":164},{"id":12276,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[12277],"locationId":29},{"id":12277,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[12278],"locationId":165},{"id":12278,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[12279],"locationId":166},{"id":12279,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[12280],"locationId":29},{"id":12280,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[12281],"locationId":167},{"id":12281,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":12547,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[12548],"locationId":9},{"id":12548,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12549],"locationId":6},{"id":12549,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[12550,12551],"locationId":10},{"id":12550,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":12551,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[12552],"locationId":84},{"id":12552,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12553],"locationId":6},{"id":12553,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[12554],"locationId":85},{"id":12554,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[12555],"locationId":86},{"id":12555,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[12556],"locationId":87},{"id":12556,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[12557],"locationId":88},{"id":12557,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[12558],"locationId":74},{"id":12558,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[12559],"locationId":89},{"id":12559,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[12560],"locationId":90},{"id":12560,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[12561],"locationId":117},{"id":12561,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[12562],"locationId":118},{"id":12562,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":25284,"callFrame":{"functionName":"execute","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":848,"columnNumber":22},"hitCount":0,"children":[25285],"locationId":719},{"id":25285,"callFrame":{"functionName":"run","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":2092,"columnNumber":16},"hitCount":0,"children":[25286],"locationId":720},{"id":25286,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[25287],"locationId":721},{"id":25287,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[25288],"locationId":721},{"id":25288,"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"hitCount":0,"children":[25289],"locationId":722},{"id":25289,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25290],"locationId":452},{"id":25290,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25291],"locationId":453},{"id":25291,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25292],"locationId":2},{"id":25292,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25293],"locationId":3},{"id":25293,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25294],"locationId":452},{"id":25294,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25295],"locationId":453},{"id":25295,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25296],"locationId":2},{"id":25296,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25297],"locationId":3},{"id":25297,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25298],"locationId":452},{"id":25298,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25299],"locationId":453},{"id":25299,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25300],"locationId":2},{"id":25300,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25301],"locationId":3},{"id":25301,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25302],"locationId":452},{"id":25302,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25303],"locationId":453},{"id":25303,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25304],"locationId":2},{"id":25304,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25305],"locationId":3},{"id":25305,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25306],"locationId":452},{"id":25306,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25307],"locationId":453},{"id":25307,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25308],"locationId":2},{"id":25308,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25309],"locationId":3},{"id":25309,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25310],"locationId":452},{"id":25310,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25311],"locationId":453},{"id":25311,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25312],"locationId":2},{"id":25312,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25313],"locationId":3},{"id":25313,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25314],"locationId":452},{"id":25314,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25315],"locationId":453},{"id":25315,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25316],"locationId":2},{"id":25316,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25317],"locationId":3},{"id":25317,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25318],"locationId":452},{"id":25318,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25319],"locationId":453},{"id":25319,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25320],"locationId":2},{"id":25320,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25321],"locationId":3},{"id":25321,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25322],"locationId":452},{"id":25322,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25323],"locationId":453},{"id":25323,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25324],"locationId":2},{"id":25324,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25325],"locationId":3},{"id":25325,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25326],"locationId":452},{"id":25326,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25327],"locationId":453},{"id":25327,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25328],"locationId":2},{"id":25328,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25329],"locationId":3},{"id":25329,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25330],"locationId":452},{"id":25330,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25331],"locationId":453},{"id":25331,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25332],"locationId":2},{"id":25332,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25333],"locationId":3},{"id":25333,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25334],"locationId":452},{"id":25334,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25335],"locationId":453},{"id":25335,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25336],"locationId":2},{"id":25336,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25337],"locationId":3},{"id":25337,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25338],"locationId":452},{"id":25338,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25339],"locationId":453},{"id":25339,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25340],"locationId":2},{"id":25340,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25341],"locationId":3},{"id":25341,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25342],"locationId":452},{"id":25342,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25343],"locationId":453},{"id":25343,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25344],"locationId":2},{"id":25344,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25345],"locationId":3},{"id":25345,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25346],"locationId":452},{"id":25346,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25347],"locationId":453},{"id":25347,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25348],"locationId":2},{"id":25348,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25349],"locationId":3},{"id":25349,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25350],"locationId":452},{"id":25350,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25351],"locationId":453},{"id":25351,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25352],"locationId":2},{"id":25352,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25353],"locationId":3},{"id":25353,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25354],"locationId":452},{"id":25354,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25355],"locationId":453},{"id":25355,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25356],"locationId":2},{"id":25356,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25357],"locationId":3},{"id":25357,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25358],"locationId":452},{"id":25358,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25359],"locationId":453},{"id":25359,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25360],"locationId":2},{"id":25360,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25361],"locationId":3},{"id":25361,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25362],"locationId":452},{"id":25362,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25363],"locationId":453},{"id":25363,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25364],"locationId":2},{"id":25364,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25365],"locationId":3},{"id":25365,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25366],"locationId":452},{"id":25366,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25367],"locationId":453},{"id":25367,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25368],"locationId":2},{"id":25368,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25369],"locationId":3},{"id":25369,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25370],"locationId":452},{"id":25370,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25371],"locationId":453},{"id":25371,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25372],"locationId":2},{"id":25372,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25373],"locationId":3},{"id":25373,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25374],"locationId":452},{"id":25374,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25375],"locationId":453},{"id":25375,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25376],"locationId":2},{"id":25376,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25377],"locationId":3},{"id":25377,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25378],"locationId":452},{"id":25378,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25379],"locationId":453},{"id":25379,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25380],"locationId":2},{"id":25380,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25381],"locationId":3},{"id":25381,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25382],"locationId":452},{"id":25382,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25383],"locationId":453},{"id":25383,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25384],"locationId":2},{"id":25384,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25385],"locationId":3},{"id":25385,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25386],"locationId":452},{"id":25386,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25387],"locationId":453},{"id":25387,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25388],"locationId":2},{"id":25388,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25389],"locationId":3},{"id":25389,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25390],"locationId":452},{"id":25390,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25391],"locationId":453},{"id":25391,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25392],"locationId":2},{"id":25392,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25393],"locationId":3},{"id":25393,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25394],"locationId":452},{"id":25394,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25395],"locationId":453},{"id":25395,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25396],"locationId":2},{"id":25396,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25397],"locationId":3},{"id":25397,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25398],"locationId":452},{"id":25398,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25399],"locationId":453},{"id":25399,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25400],"locationId":2},{"id":25400,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25401],"locationId":3},{"id":25401,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25402],"locationId":452},{"id":25402,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25403],"locationId":453},{"id":25403,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25404],"locationId":2},{"id":25404,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25405],"locationId":3},{"id":25405,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25406],"locationId":452},{"id":25406,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25407],"locationId":453},{"id":25407,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25408],"locationId":2},{"id":25408,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25409],"locationId":3},{"id":25409,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25410],"locationId":452},{"id":25410,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25411],"locationId":453},{"id":25411,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25412],"locationId":2},{"id":25412,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25413],"locationId":3},{"id":25413,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25414],"locationId":452},{"id":25414,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25415],"locationId":453},{"id":25415,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25416],"locationId":2},{"id":25416,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25417],"locationId":3},{"id":25417,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25418],"locationId":452},{"id":25418,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25419],"locationId":453},{"id":25419,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25420],"locationId":2},{"id":25420,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25421],"locationId":3},{"id":25421,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25422],"locationId":452},{"id":25422,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25423],"locationId":453},{"id":25423,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25424],"locationId":2},{"id":25424,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25425],"locationId":3},{"id":25425,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25426],"locationId":452},{"id":25426,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25427],"locationId":453},{"id":25427,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25428],"locationId":2},{"id":25428,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25429],"locationId":3},{"id":25429,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25430],"locationId":452},{"id":25430,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25431],"locationId":453},{"id":25431,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25432],"locationId":2},{"id":25432,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25433],"locationId":3},{"id":25433,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25434],"locationId":452},{"id":25434,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25435],"locationId":453},{"id":25435,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25436],"locationId":2},{"id":25436,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25437],"locationId":3},{"id":25437,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25438],"locationId":452},{"id":25438,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25439],"locationId":453},{"id":25439,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25440],"locationId":2},{"id":25440,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25441],"locationId":3},{"id":25441,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25442],"locationId":452},{"id":25442,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25443],"locationId":453},{"id":25443,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25444],"locationId":2},{"id":25444,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25445],"locationId":3},{"id":25445,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25446],"locationId":452},{"id":25446,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25447],"locationId":453},{"id":25447,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25448],"locationId":2},{"id":25448,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25449],"locationId":3},{"id":25449,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25450],"locationId":452},{"id":25450,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25451],"locationId":453},{"id":25451,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25452],"locationId":2},{"id":25452,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25453],"locationId":3},{"id":25453,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25454],"locationId":452},{"id":25454,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25455],"locationId":453},{"id":25455,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25456],"locationId":2},{"id":25456,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25457],"locationId":3},{"id":25457,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25458],"locationId":452},{"id":25458,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25459],"locationId":453},{"id":25459,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25460],"locationId":2},{"id":25460,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25461],"locationId":3},{"id":25461,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25462],"locationId":452},{"id":25462,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25463],"locationId":453},{"id":25463,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25464],"locationId":2},{"id":25464,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25465],"locationId":3},{"id":25465,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25466],"locationId":452},{"id":25466,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25467],"locationId":453},{"id":25467,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25468],"locationId":2},{"id":25468,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25469],"locationId":3},{"id":25469,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25470],"locationId":452},{"id":25470,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25471],"locationId":453},{"id":25471,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25472],"locationId":2},{"id":25472,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25473],"locationId":3},{"id":25473,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25474],"locationId":452},{"id":25474,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25475],"locationId":453},{"id":25475,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25476],"locationId":2},{"id":25476,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25477],"locationId":3},{"id":25477,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25478],"locationId":452},{"id":25478,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25479],"locationId":453},{"id":25479,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25480],"locationId":2},{"id":25480,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25481],"locationId":3},{"id":25481,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25482],"locationId":452},{"id":25482,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25483],"locationId":453},{"id":25483,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25484],"locationId":2},{"id":25484,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25485],"locationId":3},{"id":25485,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25486],"locationId":452},{"id":25486,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25487],"locationId":453},{"id":25487,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25488],"locationId":2},{"id":25488,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25489],"locationId":3},{"id":25489,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25490],"locationId":452},{"id":25490,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25491],"locationId":453},{"id":25491,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25492],"locationId":2},{"id":25492,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25493],"locationId":3},{"id":25493,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25494],"locationId":452},{"id":25494,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25495],"locationId":453},{"id":25495,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25496],"locationId":2},{"id":25496,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25497],"locationId":3},{"id":25497,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25498],"locationId":452},{"id":25498,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25499],"locationId":453},{"id":25499,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25500],"locationId":2},{"id":25500,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25501],"locationId":3},{"id":25501,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25502],"locationId":452},{"id":25502,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25503],"locationId":453},{"id":25503,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25504],"locationId":2},{"id":25504,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25505],"locationId":3},{"id":25505,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25506],"locationId":452},{"id":25506,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25507],"locationId":453},{"id":25507,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25508],"locationId":2},{"id":25508,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25509],"locationId":3},{"id":25509,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25510],"locationId":452},{"id":25510,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25511],"locationId":453},{"id":25511,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25512],"locationId":2},{"id":25512,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25513],"locationId":3},{"id":25513,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25514],"locationId":452},{"id":25514,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25515],"locationId":453},{"id":25515,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25516],"locationId":2},{"id":25516,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25517],"locationId":3},{"id":25517,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25518],"locationId":452},{"id":25518,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25519],"locationId":453},{"id":25519,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25520],"locationId":2},{"id":25520,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25521],"locationId":3},{"id":25521,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25522],"locationId":452},{"id":25522,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25523],"locationId":453},{"id":25523,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25524],"locationId":2},{"id":25524,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25525],"locationId":3},{"id":25525,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25526],"locationId":452},{"id":25526,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25527],"locationId":453},{"id":25527,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25528],"locationId":2},{"id":25528,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25529],"locationId":3},{"id":25529,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25530],"locationId":452},{"id":25530,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25531],"locationId":453},{"id":25531,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25532],"locationId":2},{"id":25532,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25533],"locationId":3},{"id":25533,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25534],"locationId":452},{"id":25534,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25535],"locationId":453},{"id":25535,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25536],"locationId":2},{"id":25536,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25537],"locationId":3},{"id":25537,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25538],"locationId":452},{"id":25538,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25539],"locationId":453},{"id":25539,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25540],"locationId":2},{"id":25540,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25541],"locationId":3},{"id":25541,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25542],"locationId":452},{"id":25542,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25543],"locationId":453},{"id":25543,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25544],"locationId":2},{"id":25544,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25545],"locationId":3},{"id":25545,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25546],"locationId":452},{"id":25546,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25547],"locationId":453},{"id":25547,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25548],"locationId":2},{"id":25548,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25549],"locationId":3},{"id":25549,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25550],"locationId":452},{"id":25550,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25551],"locationId":453},{"id":25551,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25552],"locationId":2},{"id":25552,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25553],"locationId":3},{"id":25553,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25554],"locationId":452},{"id":25554,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25555],"locationId":453},{"id":25555,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25556],"locationId":2},{"id":25556,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25557],"locationId":3},{"id":25557,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25558],"locationId":452},{"id":25558,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25559],"locationId":453},{"id":25559,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25560],"locationId":2},{"id":25560,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25561],"locationId":3},{"id":25561,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25562],"locationId":452},{"id":25562,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25563],"locationId":453},{"id":25563,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25564],"locationId":2},{"id":25564,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25565],"locationId":3},{"id":25565,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25566],"locationId":452},{"id":25566,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25567],"locationId":453},{"id":25567,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25568],"locationId":2},{"id":25568,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25569],"locationId":3},{"id":25569,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25570],"locationId":452},{"id":25570,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25571],"locationId":453},{"id":25571,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25572],"locationId":2},{"id":25572,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25573],"locationId":3},{"id":25573,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25574],"locationId":452},{"id":25574,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25575],"locationId":453},{"id":25575,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25576],"locationId":2},{"id":25576,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25577],"locationId":3},{"id":25577,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25578],"locationId":452},{"id":25578,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25579],"locationId":453},{"id":25579,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25580],"locationId":2},{"id":25580,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25581],"locationId":3},{"id":25581,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25582],"locationId":452},{"id":25582,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25583],"locationId":453},{"id":25583,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25584],"locationId":2},{"id":25584,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25585],"locationId":3},{"id":25585,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25586],"locationId":452},{"id":25586,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25587],"locationId":453},{"id":25587,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25588],"locationId":2},{"id":25588,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25589],"locationId":3},{"id":25589,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25590],"locationId":452},{"id":25590,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25591],"locationId":453},{"id":25591,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25592],"locationId":2},{"id":25592,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25593],"locationId":3},{"id":25593,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25594],"locationId":452},{"id":25594,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25595],"locationId":453},{"id":25595,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25596],"locationId":2},{"id":25596,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25597],"locationId":3},{"id":25597,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25598],"locationId":452},{"id":25598,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25599],"locationId":453},{"id":25599,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25600],"locationId":2},{"id":25600,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25601],"locationId":3},{"id":25601,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25602],"locationId":452},{"id":25602,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25603],"locationId":453},{"id":25603,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25604],"locationId":2},{"id":25604,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25605],"locationId":3},{"id":25605,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25606],"locationId":452},{"id":25606,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25607],"locationId":453},{"id":25607,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25608],"locationId":2},{"id":25608,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[25609],"locationId":5},{"id":25609,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25610],"locationId":6},{"id":25610,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[25611],"locationId":7},{"id":25611,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25612],"locationId":6},{"id":25612,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[25613],"locationId":8},{"id":25613,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[25614],"locationId":9},{"id":25614,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25615],"locationId":6},{"id":25615,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[25616,25627],"locationId":10},{"id":25616,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[25617],"locationId":84},{"id":25617,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25618],"locationId":6},{"id":25618,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[25619],"locationId":85},{"id":25619,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[25620],"locationId":86},{"id":25620,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[25621],"locationId":87},{"id":25621,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[25622],"locationId":88},{"id":25622,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[25623],"locationId":74},{"id":25623,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[25624],"locationId":89},{"id":25624,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[25625],"locationId":90},{"id":25625,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[25626],"locationId":117},{"id":25626,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":25627,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[25628],"locationId":11},{"id":25628,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[25629],"locationId":12},{"id":25629,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[25630],"locationId":13},{"id":25630,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[25631],"locationId":14},{"id":25631,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[25632],"locationId":15},{"id":25632,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[25633],"locationId":25},{"id":25633,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":12282,"callFrame":{"functionName":"listOnTimeout","scriptId":"38","url":"internal/timers.js","lineNumber":504,"columnNumber":24},"hitCount":0,"children":[12283],"locationId":655},{"id":12283,"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":2791,"columnNumber":32},"hitCount":0,"children":[12284,17138],"locationId":656},{"id":12284,"callFrame":{"functionName":"","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":732,"columnNumber":29},"hitCount":0,"children":[12285],"locationId":657},{"id":12285,"callFrame":{"functionName":"cycle","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1983,"columnNumber":18},"hitCount":0,"children":[12286],"locationId":658},{"id":12286,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12287],"locationId":4},{"id":12287,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12288],"locationId":1},{"id":12288,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12289],"locationId":2},{"id":12289,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12290],"locationId":3},{"id":12290,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12291],"locationId":4},{"id":12291,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12292],"locationId":1},{"id":12292,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12293],"locationId":2},{"id":12293,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12294],"locationId":3},{"id":12294,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12295],"locationId":4},{"id":12295,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12296],"locationId":1},{"id":12296,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12297],"locationId":2},{"id":12297,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12298],"locationId":3},{"id":12298,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12299],"locationId":4},{"id":12299,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12300],"locationId":1},{"id":12300,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12301],"locationId":2},{"id":12301,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12302],"locationId":3},{"id":12302,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12303],"locationId":4},{"id":12303,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12304],"locationId":1},{"id":12304,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12305],"locationId":2},{"id":12305,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12306],"locationId":3},{"id":12306,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12307],"locationId":4},{"id":12307,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12308],"locationId":1},{"id":12308,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12309],"locationId":2},{"id":12309,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12310],"locationId":3},{"id":12310,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12311],"locationId":4},{"id":12311,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12312],"locationId":1},{"id":12312,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12313],"locationId":2},{"id":12313,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12314],"locationId":3},{"id":12314,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12315],"locationId":4},{"id":12315,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12316],"locationId":1},{"id":12316,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12317],"locationId":2},{"id":12317,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12318],"locationId":3},{"id":12318,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12319],"locationId":4},{"id":12319,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12320],"locationId":1},{"id":12320,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12321],"locationId":2},{"id":12321,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12322],"locationId":3},{"id":12322,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12323],"locationId":4},{"id":12323,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12324],"locationId":1},{"id":12324,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12325],"locationId":2},{"id":12325,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12326],"locationId":3},{"id":12326,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12327],"locationId":4},{"id":12327,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12328],"locationId":1},{"id":12328,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12329],"locationId":2},{"id":12329,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12330],"locationId":3},{"id":12330,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12331],"locationId":4},{"id":12331,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12332],"locationId":1},{"id":12332,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12333],"locationId":2},{"id":12333,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12334],"locationId":3},{"id":12334,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12335],"locationId":4},{"id":12335,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12336],"locationId":1},{"id":12336,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12337],"locationId":2},{"id":12337,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12338],"locationId":3},{"id":12338,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12339],"locationId":4},{"id":12339,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12340],"locationId":1},{"id":12340,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12341],"locationId":2},{"id":12341,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12342],"locationId":3},{"id":12342,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12343],"locationId":4},{"id":12343,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12344],"locationId":1},{"id":12344,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12345],"locationId":2},{"id":12345,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12346],"locationId":3},{"id":12346,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12347],"locationId":4},{"id":12347,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12348],"locationId":1},{"id":12348,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12349],"locationId":2},{"id":12349,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12350],"locationId":3},{"id":12350,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12351],"locationId":4},{"id":12351,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12352],"locationId":1},{"id":12352,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12353],"locationId":2},{"id":12353,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12354],"locationId":3},{"id":12354,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12355],"locationId":4},{"id":12355,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12356],"locationId":1},{"id":12356,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12357],"locationId":2},{"id":12357,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12358],"locationId":3},{"id":12358,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12359],"locationId":4},{"id":12359,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12360],"locationId":1},{"id":12360,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12361],"locationId":2},{"id":12361,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12362],"locationId":3},{"id":12362,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12363],"locationId":4},{"id":12363,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12364],"locationId":1},{"id":12364,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12365],"locationId":2},{"id":12365,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12366],"locationId":3},{"id":12366,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12367],"locationId":4},{"id":12367,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12368],"locationId":1},{"id":12368,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12369],"locationId":2},{"id":12369,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12370],"locationId":3},{"id":12370,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12371],"locationId":4},{"id":12371,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12372],"locationId":1},{"id":12372,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12373],"locationId":2},{"id":12373,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12374],"locationId":3},{"id":12374,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12375],"locationId":4},{"id":12375,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12376],"locationId":1},{"id":12376,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12377],"locationId":2},{"id":12377,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12378],"locationId":3},{"id":12378,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12379],"locationId":4},{"id":12379,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12380],"locationId":1},{"id":12380,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12381],"locationId":2},{"id":12381,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12382],"locationId":3},{"id":12382,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12383],"locationId":4},{"id":12383,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12384],"locationId":1},{"id":12384,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12385],"locationId":2},{"id":12385,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12386],"locationId":3},{"id":12386,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12387],"locationId":4},{"id":12387,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12388],"locationId":1},{"id":12388,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12389],"locationId":2},{"id":12389,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12390],"locationId":3},{"id":12390,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12391],"locationId":4},{"id":12391,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12392],"locationId":1},{"id":12392,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12393],"locationId":2},{"id":12393,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12394],"locationId":3},{"id":12394,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12395],"locationId":4},{"id":12395,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12396],"locationId":1},{"id":12396,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12397],"locationId":2},{"id":12397,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12398],"locationId":3},{"id":12398,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12399],"locationId":4},{"id":12399,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12400],"locationId":1},{"id":12400,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12401],"locationId":2},{"id":12401,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12402],"locationId":3},{"id":12402,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12403],"locationId":4},{"id":12403,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12404],"locationId":1},{"id":12404,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12405],"locationId":2},{"id":12405,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12406],"locationId":3},{"id":12406,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12407],"locationId":4},{"id":12407,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12408],"locationId":1},{"id":12408,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12409],"locationId":2},{"id":12409,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12410],"locationId":3},{"id":12410,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12411],"locationId":4},{"id":12411,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12412],"locationId":1},{"id":12412,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12413],"locationId":2},{"id":12413,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12414],"locationId":3},{"id":12414,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12415],"locationId":4},{"id":12415,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12416],"locationId":1},{"id":12416,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12417],"locationId":2},{"id":12417,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12418],"locationId":3},{"id":12418,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12419],"locationId":4},{"id":12419,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12420],"locationId":1},{"id":12420,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12421],"locationId":2},{"id":12421,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12422],"locationId":3},{"id":12422,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12423],"locationId":4},{"id":12423,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12424],"locationId":1},{"id":12424,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12425],"locationId":2},{"id":12425,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12426],"locationId":3},{"id":12426,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12427],"locationId":4},{"id":12427,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12428],"locationId":1},{"id":12428,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12429],"locationId":2},{"id":12429,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12430],"locationId":3},{"id":12430,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12431],"locationId":4},{"id":12431,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12432],"locationId":1},{"id":12432,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12433],"locationId":2},{"id":12433,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12434],"locationId":3},{"id":12434,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12435],"locationId":4},{"id":12435,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12436],"locationId":1},{"id":12436,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12437],"locationId":2},{"id":12437,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12438],"locationId":3},{"id":12438,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12439],"locationId":4},{"id":12439,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12440],"locationId":1},{"id":12440,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12441],"locationId":2},{"id":12441,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12442],"locationId":3},{"id":12442,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12443],"locationId":4},{"id":12443,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12444],"locationId":1},{"id":12444,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12445],"locationId":2},{"id":12445,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12446],"locationId":3},{"id":12446,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12447],"locationId":4},{"id":12447,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12448],"locationId":1},{"id":12448,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12449],"locationId":2},{"id":12449,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12450],"locationId":3},{"id":12450,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12451],"locationId":4},{"id":12451,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12452],"locationId":1},{"id":12452,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12453],"locationId":2},{"id":12453,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12454],"locationId":3},{"id":12454,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12455],"locationId":4},{"id":12455,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12456],"locationId":1},{"id":12456,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12457],"locationId":2},{"id":12457,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12458],"locationId":3},{"id":12458,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12459],"locationId":4},{"id":12459,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12460],"locationId":1},{"id":12460,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12461],"locationId":2},{"id":12461,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12462],"locationId":3},{"id":12462,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12463],"locationId":4},{"id":12463,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12464],"locationId":1},{"id":12464,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12465],"locationId":2},{"id":12465,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12466],"locationId":3},{"id":12466,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12467],"locationId":4},{"id":12467,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12468],"locationId":1},{"id":12468,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12469],"locationId":2},{"id":12469,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12470],"locationId":3},{"id":12470,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12471],"locationId":4},{"id":12471,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12472],"locationId":1},{"id":12472,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12473],"locationId":2},{"id":12473,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12474],"locationId":3},{"id":12474,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12475],"locationId":4},{"id":12475,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12476],"locationId":1},{"id":12476,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12477],"locationId":2},{"id":12477,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12478],"locationId":3},{"id":12478,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12479],"locationId":4},{"id":12479,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12480],"locationId":1},{"id":12480,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12481],"locationId":2},{"id":12481,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12482],"locationId":3},{"id":12482,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12483],"locationId":4},{"id":12483,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12484],"locationId":1},{"id":12484,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12485],"locationId":2},{"id":12485,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12486],"locationId":3},{"id":12486,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12487],"locationId":4},{"id":12487,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12488],"locationId":1},{"id":12488,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12489],"locationId":2},{"id":12489,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12490],"locationId":3},{"id":12490,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12491],"locationId":4},{"id":12491,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12492],"locationId":1},{"id":12492,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12493],"locationId":2},{"id":12493,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12494],"locationId":3},{"id":12494,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12495],"locationId":4},{"id":12495,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12496],"locationId":1},{"id":12496,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12497],"locationId":2},{"id":12497,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12498],"locationId":3},{"id":12498,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12499],"locationId":4},{"id":12499,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12500],"locationId":1},{"id":12500,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12501],"locationId":2},{"id":12501,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12502],"locationId":3},{"id":12502,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12503],"locationId":4},{"id":12503,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12504],"locationId":1},{"id":12504,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12505],"locationId":2},{"id":12505,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12506],"locationId":3},{"id":12506,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12507],"locationId":4},{"id":12507,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12508],"locationId":1},{"id":12508,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12509],"locationId":2},{"id":12509,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12510],"locationId":3},{"id":12510,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12511],"locationId":4},{"id":12511,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12512],"locationId":1},{"id":12512,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12513],"locationId":2},{"id":12513,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12514],"locationId":3},{"id":12514,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12515],"locationId":4},{"id":12515,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12516],"locationId":1},{"id":12516,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12517],"locationId":2},{"id":12517,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12518],"locationId":3},{"id":12518,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12519],"locationId":4},{"id":12519,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12520],"locationId":1},{"id":12520,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12521],"locationId":2},{"id":12521,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12522],"locationId":3},{"id":12522,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12523],"locationId":4},{"id":12523,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12524],"locationId":1},{"id":12524,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12525],"locationId":2},{"id":12525,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12526],"locationId":3},{"id":12526,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12527],"locationId":4},{"id":12527,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12528],"locationId":1},{"id":12528,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12529],"locationId":2},{"id":12529,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[12530],"locationId":5},{"id":12530,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12531],"locationId":6},{"id":12531,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[12532],"locationId":7},{"id":12532,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12533],"locationId":6},{"id":12533,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[12534],"locationId":8},{"id":12534,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[12535],"locationId":9},{"id":12535,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12536],"locationId":6},{"id":12536,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[12537,12829],"locationId":10},{"id":12537,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[12538],"locationId":84},{"id":12538,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12539],"locationId":6},{"id":12539,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[12540],"locationId":85},{"id":12540,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[12541],"locationId":86},{"id":12541,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[12542],"locationId":87},{"id":12542,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[12543],"locationId":88},{"id":12543,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[12544],"locationId":74},{"id":12544,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[12545],"locationId":89},{"id":12545,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":12829,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":40,"ticks":1,"startLocationId":467,"endLocationId":468}],"locationId":11},{"id":17138,"callFrame":{"functionName":"execute","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":848,"columnNumber":22},"hitCount":0,"children":[17139],"locationId":719},{"id":17139,"callFrame":{"functionName":"run","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":2092,"columnNumber":16},"hitCount":0,"children":[17140],"locationId":720},{"id":17140,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[17141],"locationId":721},{"id":17141,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[17142],"locationId":721},{"id":17142,"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"hitCount":0,"children":[17143,24927],"locationId":722},{"id":17143,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17144],"locationId":398},{"id":17144,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17145],"locationId":399},{"id":17145,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17146],"locationId":2},{"id":17146,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17147],"locationId":3},{"id":17147,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17148],"locationId":398},{"id":17148,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17149],"locationId":399},{"id":17149,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17150],"locationId":2},{"id":17150,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17151],"locationId":3},{"id":17151,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17152],"locationId":398},{"id":17152,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17153],"locationId":399},{"id":17153,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17154],"locationId":2},{"id":17154,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17155],"locationId":3},{"id":17155,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17156],"locationId":398},{"id":17156,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17157],"locationId":399},{"id":17157,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17158],"locationId":2},{"id":17158,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17159],"locationId":3},{"id":17159,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17160],"locationId":398},{"id":17160,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17161],"locationId":399},{"id":17161,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17162],"locationId":2},{"id":17162,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17163],"locationId":3},{"id":17163,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17164],"locationId":398},{"id":17164,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17165],"locationId":399},{"id":17165,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17166],"locationId":2},{"id":17166,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17167],"locationId":3},{"id":17167,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17168],"locationId":398},{"id":17168,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17169],"locationId":399},{"id":17169,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17170],"locationId":2},{"id":17170,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17171],"locationId":3},{"id":17171,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17172],"locationId":398},{"id":17172,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17173],"locationId":399},{"id":17173,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17174],"locationId":2},{"id":17174,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17175],"locationId":3},{"id":17175,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17176],"locationId":398},{"id":17176,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17177],"locationId":399},{"id":17177,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17178],"locationId":2},{"id":17178,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17179],"locationId":3},{"id":17179,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17180],"locationId":398},{"id":17180,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17181],"locationId":399},{"id":17181,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17182],"locationId":2},{"id":17182,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17183],"locationId":3},{"id":17183,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17184],"locationId":398},{"id":17184,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17185],"locationId":399},{"id":17185,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17186],"locationId":2},{"id":17186,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17187],"locationId":3},{"id":17187,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17188],"locationId":398},{"id":17188,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17189],"locationId":399},{"id":17189,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17190],"locationId":2},{"id":17190,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17191],"locationId":3},{"id":17191,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17192],"locationId":398},{"id":17192,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17193],"locationId":399},{"id":17193,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17194],"locationId":2},{"id":17194,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17195],"locationId":3},{"id":17195,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17196],"locationId":398},{"id":17196,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17197],"locationId":399},{"id":17197,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17198],"locationId":2},{"id":17198,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17199],"locationId":3},{"id":17199,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17200],"locationId":398},{"id":17200,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17201],"locationId":399},{"id":17201,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17202],"locationId":2},{"id":17202,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17203],"locationId":3},{"id":17203,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17204],"locationId":398},{"id":17204,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17205],"locationId":399},{"id":17205,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17206],"locationId":2},{"id":17206,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17207],"locationId":3},{"id":17207,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17208],"locationId":398},{"id":17208,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17209],"locationId":399},{"id":17209,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17210],"locationId":2},{"id":17210,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17211],"locationId":3},{"id":17211,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17212],"locationId":398},{"id":17212,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17213],"locationId":399},{"id":17213,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17214],"locationId":2},{"id":17214,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17215],"locationId":3},{"id":17215,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17216],"locationId":398},{"id":17216,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17217],"locationId":399},{"id":17217,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17218],"locationId":2},{"id":17218,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17219],"locationId":3},{"id":17219,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17220],"locationId":398},{"id":17220,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17221],"locationId":399},{"id":17221,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17222],"locationId":2},{"id":17222,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17223],"locationId":3},{"id":17223,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17224],"locationId":398},{"id":17224,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17225],"locationId":399},{"id":17225,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17226],"locationId":2},{"id":17226,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17227],"locationId":3},{"id":17227,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17228],"locationId":398},{"id":17228,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17229],"locationId":399},{"id":17229,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17230],"locationId":2},{"id":17230,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17231],"locationId":3},{"id":17231,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17232],"locationId":398},{"id":17232,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17233],"locationId":399},{"id":17233,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17234],"locationId":2},{"id":17234,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17235],"locationId":3},{"id":17235,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17236],"locationId":398},{"id":17236,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17237],"locationId":399},{"id":17237,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17238],"locationId":2},{"id":17238,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17239],"locationId":3},{"id":17239,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17240],"locationId":398},{"id":17240,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17241],"locationId":399},{"id":17241,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17242],"locationId":2},{"id":17242,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17243],"locationId":3},{"id":17243,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17244],"locationId":398},{"id":17244,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17245],"locationId":399},{"id":17245,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17246],"locationId":2},{"id":17246,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17247],"locationId":3},{"id":17247,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17248],"locationId":398},{"id":17248,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17249],"locationId":399},{"id":17249,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17250],"locationId":2},{"id":17250,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17251],"locationId":3},{"id":17251,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17252],"locationId":398},{"id":17252,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17253],"locationId":399},{"id":17253,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17254],"locationId":2},{"id":17254,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17255],"locationId":3},{"id":17255,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17256],"locationId":398},{"id":17256,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17257],"locationId":399},{"id":17257,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17258],"locationId":2},{"id":17258,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17259],"locationId":3},{"id":17259,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17260],"locationId":398},{"id":17260,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17261],"locationId":399},{"id":17261,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17262],"locationId":2},{"id":17262,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17263],"locationId":3},{"id":17263,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17264],"locationId":398},{"id":17264,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17265],"locationId":399},{"id":17265,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17266],"locationId":2},{"id":17266,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17267],"locationId":3},{"id":17267,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17268],"locationId":398},{"id":17268,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17269],"locationId":399},{"id":17269,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17270],"locationId":2},{"id":17270,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17271],"locationId":3},{"id":17271,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17272],"locationId":398},{"id":17272,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17273],"locationId":399},{"id":17273,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17274],"locationId":2},{"id":17274,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17275],"locationId":3},{"id":17275,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17276],"locationId":398},{"id":17276,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17277],"locationId":399},{"id":17277,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17278],"locationId":2},{"id":17278,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17279],"locationId":3},{"id":17279,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17280],"locationId":398},{"id":17280,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17281],"locationId":399},{"id":17281,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17282],"locationId":2},{"id":17282,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17283],"locationId":3},{"id":17283,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17284],"locationId":398},{"id":17284,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17285],"locationId":399},{"id":17285,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17286],"locationId":2},{"id":17286,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17287],"locationId":3},{"id":17287,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17288],"locationId":398},{"id":17288,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17289],"locationId":399},{"id":17289,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17290],"locationId":2},{"id":17290,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17291],"locationId":3},{"id":17291,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17292],"locationId":398},{"id":17292,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17293],"locationId":399},{"id":17293,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17294],"locationId":2},{"id":17294,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17295],"locationId":3},{"id":17295,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17296],"locationId":398},{"id":17296,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17297],"locationId":399},{"id":17297,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17298],"locationId":2},{"id":17298,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17299],"locationId":3},{"id":17299,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17300],"locationId":398},{"id":17300,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17301],"locationId":399},{"id":17301,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17302],"locationId":2},{"id":17302,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17303],"locationId":3},{"id":17303,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17304],"locationId":398},{"id":17304,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17305],"locationId":399},{"id":17305,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17306],"locationId":2},{"id":17306,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17307],"locationId":3},{"id":17307,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17308],"locationId":398},{"id":17308,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17309],"locationId":399},{"id":17309,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17310],"locationId":2},{"id":17310,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17311],"locationId":3},{"id":17311,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17312],"locationId":398},{"id":17312,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17313],"locationId":399},{"id":17313,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17314],"locationId":2},{"id":17314,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17315],"locationId":3},{"id":17315,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17316],"locationId":398},{"id":17316,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17317],"locationId":399},{"id":17317,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17318],"locationId":2},{"id":17318,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17319],"locationId":3},{"id":17319,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17320],"locationId":398},{"id":17320,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17321],"locationId":399},{"id":17321,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17322],"locationId":2},{"id":17322,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17323],"locationId":3},{"id":17323,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17324],"locationId":398},{"id":17324,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17325],"locationId":399},{"id":17325,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17326],"locationId":2},{"id":17326,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17327],"locationId":3},{"id":17327,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17328],"locationId":398},{"id":17328,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17329],"locationId":399},{"id":17329,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17330],"locationId":2},{"id":17330,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17331],"locationId":3},{"id":17331,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17332],"locationId":398},{"id":17332,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17333],"locationId":399},{"id":17333,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17334],"locationId":2},{"id":17334,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17335],"locationId":3},{"id":17335,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17336],"locationId":398},{"id":17336,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17337],"locationId":399},{"id":17337,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17338],"locationId":2},{"id":17338,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17339],"locationId":3},{"id":17339,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17340],"locationId":398},{"id":17340,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17341],"locationId":399},{"id":17341,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17342],"locationId":2},{"id":17342,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17343],"locationId":3},{"id":17343,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17344],"locationId":398},{"id":17344,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17345],"locationId":399},{"id":17345,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17346],"locationId":2},{"id":17346,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17347],"locationId":3},{"id":17347,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17348],"locationId":398},{"id":17348,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17349],"locationId":399},{"id":17349,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17350],"locationId":2},{"id":17350,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17351],"locationId":3},{"id":17351,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17352],"locationId":398},{"id":17352,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17353],"locationId":399},{"id":17353,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17354],"locationId":2},{"id":17354,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17355],"locationId":3},{"id":17355,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17356],"locationId":398},{"id":17356,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17357],"locationId":399},{"id":17357,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17358],"locationId":2},{"id":17358,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17359],"locationId":3},{"id":17359,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17360],"locationId":398},{"id":17360,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17361],"locationId":399},{"id":17361,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17362],"locationId":2},{"id":17362,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17363],"locationId":3},{"id":17363,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17364],"locationId":398},{"id":17364,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17365],"locationId":399},{"id":17365,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17366],"locationId":2},{"id":17366,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17367],"locationId":3},{"id":17367,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17368],"locationId":398},{"id":17368,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17369],"locationId":399},{"id":17369,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17370],"locationId":2},{"id":17370,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17371],"locationId":3},{"id":17371,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17372],"locationId":398},{"id":17372,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17373],"locationId":399},{"id":17373,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17374],"locationId":2},{"id":17374,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17375],"locationId":3},{"id":17375,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17376],"locationId":398},{"id":17376,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17377],"locationId":399},{"id":17377,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17378,17400],"locationId":2},{"id":17378,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17379],"locationId":5},{"id":17379,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17380],"locationId":6},{"id":17380,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17381],"locationId":7},{"id":17381,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17382],"locationId":6},{"id":17382,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[17383],"locationId":8},{"id":17383,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[17384],"locationId":9},{"id":17384,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17385],"locationId":6},{"id":17385,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[17386],"locationId":10},{"id":17386,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[17387],"locationId":84},{"id":17387,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17388],"locationId":6},{"id":17388,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[17389],"locationId":85},{"id":17389,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[17390],"locationId":86},{"id":17390,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[17391],"locationId":87},{"id":17391,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[17392],"locationId":88},{"id":17392,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[17393],"locationId":74},{"id":17393,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[17394],"locationId":89},{"id":17394,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[17395],"locationId":90},{"id":17395,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17396],"locationId":109},{"id":17396,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17397],"locationId":109},{"id":17397,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17398],"locationId":109},{"id":17398,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[17399],"locationId":109},{"id":17399,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":17400,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17401],"locationId":3},{"id":17401,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17402],"locationId":398},{"id":17402,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17403],"locationId":399},{"id":17403,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17404],"locationId":2},{"id":17404,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17405],"locationId":5},{"id":17405,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17406],"locationId":6},{"id":17406,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17407],"locationId":7},{"id":17407,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17408],"locationId":6},{"id":17408,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[17409],"locationId":8},{"id":17409,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[17410],"locationId":9},{"id":17410,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17411],"locationId":6},{"id":17411,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[17412,17418],"locationId":10},{"id":17412,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[17413],"locationId":11},{"id":17413,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[17414],"locationId":12},{"id":17414,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[17415],"locationId":13},{"id":17415,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[17416],"locationId":14},{"id":17416,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[17417],"locationId":15},{"id":17417,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":17418,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[17419],"locationId":84},{"id":17419,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17420],"locationId":6},{"id":17420,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[17421],"locationId":85},{"id":17421,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[17422],"locationId":86},{"id":17422,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[17423],"locationId":87},{"id":17423,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[17424],"locationId":88},{"id":17424,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[17425],"locationId":74},{"id":17425,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[17426],"locationId":89},{"id":17426,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[17427],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":17427,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":24927,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24928],"locationId":452},{"id":24928,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24929],"locationId":453},{"id":24929,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24930],"locationId":2},{"id":24930,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24931],"locationId":3},{"id":24931,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24932],"locationId":452},{"id":24932,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24933],"locationId":453},{"id":24933,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24934],"locationId":2},{"id":24934,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24935],"locationId":3},{"id":24935,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24936],"locationId":452},{"id":24936,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24937],"locationId":453},{"id":24937,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24938],"locationId":2},{"id":24938,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24939],"locationId":3},{"id":24939,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24940],"locationId":452},{"id":24940,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24941],"locationId":453},{"id":24941,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24942],"locationId":2},{"id":24942,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24943],"locationId":3},{"id":24943,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24944],"locationId":452},{"id":24944,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24945],"locationId":453},{"id":24945,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24946],"locationId":2},{"id":24946,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24947],"locationId":3},{"id":24947,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24948],"locationId":452},{"id":24948,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24949],"locationId":453},{"id":24949,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24950],"locationId":2},{"id":24950,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24951],"locationId":3},{"id":24951,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24952],"locationId":452},{"id":24952,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24953],"locationId":453},{"id":24953,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24954],"locationId":2},{"id":24954,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24955],"locationId":3},{"id":24955,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24956],"locationId":452},{"id":24956,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24957],"locationId":453},{"id":24957,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24958],"locationId":2},{"id":24958,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24959],"locationId":3},{"id":24959,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24960],"locationId":452},{"id":24960,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24961],"locationId":453},{"id":24961,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24962],"locationId":2},{"id":24962,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24963],"locationId":3},{"id":24963,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24964],"locationId":452},{"id":24964,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24965],"locationId":453},{"id":24965,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24966],"locationId":2},{"id":24966,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24967],"locationId":3},{"id":24967,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24968],"locationId":452},{"id":24968,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24969],"locationId":453},{"id":24969,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24970],"locationId":2},{"id":24970,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24971],"locationId":3},{"id":24971,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24972],"locationId":452},{"id":24972,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24973],"locationId":453},{"id":24973,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24974],"locationId":2},{"id":24974,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24975],"locationId":3},{"id":24975,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24976],"locationId":452},{"id":24976,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24977],"locationId":453},{"id":24977,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24978],"locationId":2},{"id":24978,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24979],"locationId":3},{"id":24979,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24980],"locationId":452},{"id":24980,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24981],"locationId":453},{"id":24981,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24982],"locationId":2},{"id":24982,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24983],"locationId":3},{"id":24983,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24984],"locationId":452},{"id":24984,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24985],"locationId":453},{"id":24985,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24986],"locationId":2},{"id":24986,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24987],"locationId":3},{"id":24987,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24988],"locationId":452},{"id":24988,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24989],"locationId":453},{"id":24989,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24990],"locationId":2},{"id":24990,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24991],"locationId":3},{"id":24991,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24992],"locationId":452},{"id":24992,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24993],"locationId":453},{"id":24993,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24994],"locationId":2},{"id":24994,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24995],"locationId":3},{"id":24995,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[24996],"locationId":452},{"id":24996,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[24997],"locationId":453},{"id":24997,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[24998],"locationId":2},{"id":24998,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[24999],"locationId":3},{"id":24999,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25000],"locationId":452},{"id":25000,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25001],"locationId":453},{"id":25001,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25002],"locationId":2},{"id":25002,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25003],"locationId":3},{"id":25003,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25004],"locationId":452},{"id":25004,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25005],"locationId":453},{"id":25005,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25006],"locationId":2},{"id":25006,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25007],"locationId":3},{"id":25007,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25008],"locationId":452},{"id":25008,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25009],"locationId":453},{"id":25009,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25010],"locationId":2},{"id":25010,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25011],"locationId":3},{"id":25011,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25012],"locationId":452},{"id":25012,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25013],"locationId":453},{"id":25013,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25014],"locationId":2},{"id":25014,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25015],"locationId":3},{"id":25015,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25016],"locationId":452},{"id":25016,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25017],"locationId":453},{"id":25017,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25018],"locationId":2},{"id":25018,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25019],"locationId":3},{"id":25019,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25020],"locationId":452},{"id":25020,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25021],"locationId":453},{"id":25021,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25022],"locationId":2},{"id":25022,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25023],"locationId":3},{"id":25023,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25024],"locationId":452},{"id":25024,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25025],"locationId":453},{"id":25025,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25026],"locationId":2},{"id":25026,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25027],"locationId":3},{"id":25027,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25028],"locationId":452},{"id":25028,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25029],"locationId":453},{"id":25029,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25030],"locationId":2},{"id":25030,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25031],"locationId":3},{"id":25031,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25032],"locationId":452},{"id":25032,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25033],"locationId":453},{"id":25033,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25034],"locationId":2},{"id":25034,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25035],"locationId":3},{"id":25035,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25036],"locationId":452},{"id":25036,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25037],"locationId":453},{"id":25037,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25038],"locationId":2},{"id":25038,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25039],"locationId":3},{"id":25039,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25040],"locationId":452},{"id":25040,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25041],"locationId":453},{"id":25041,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25042],"locationId":2},{"id":25042,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25043],"locationId":3},{"id":25043,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25044],"locationId":452},{"id":25044,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25045],"locationId":453},{"id":25045,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25046],"locationId":2},{"id":25046,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25047],"locationId":3},{"id":25047,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25048],"locationId":452},{"id":25048,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25049],"locationId":453},{"id":25049,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25050],"locationId":2},{"id":25050,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25051],"locationId":3},{"id":25051,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25052],"locationId":452},{"id":25052,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25053],"locationId":453},{"id":25053,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25054],"locationId":2},{"id":25054,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25055],"locationId":3},{"id":25055,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25056],"locationId":452},{"id":25056,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25057],"locationId":453},{"id":25057,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25058],"locationId":2},{"id":25058,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25059],"locationId":3},{"id":25059,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25060],"locationId":452},{"id":25060,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25061],"locationId":453},{"id":25061,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25062],"locationId":2},{"id":25062,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25063],"locationId":3},{"id":25063,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25064],"locationId":452},{"id":25064,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25065],"locationId":453},{"id":25065,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25066],"locationId":2},{"id":25066,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25067],"locationId":3},{"id":25067,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25068],"locationId":452},{"id":25068,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25069],"locationId":453},{"id":25069,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25070],"locationId":2},{"id":25070,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25071],"locationId":3},{"id":25071,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25072],"locationId":452},{"id":25072,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25073],"locationId":453},{"id":25073,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25074],"locationId":2},{"id":25074,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25075],"locationId":3},{"id":25075,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25076],"locationId":452},{"id":25076,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25077],"locationId":453},{"id":25077,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25078],"locationId":2},{"id":25078,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25079],"locationId":3},{"id":25079,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25080],"locationId":452},{"id":25080,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25081],"locationId":453},{"id":25081,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25082],"locationId":2},{"id":25082,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25083],"locationId":3},{"id":25083,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25084],"locationId":452},{"id":25084,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25085],"locationId":453},{"id":25085,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25086],"locationId":2},{"id":25086,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25087],"locationId":3},{"id":25087,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25088],"locationId":452},{"id":25088,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25089],"locationId":453},{"id":25089,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25090],"locationId":2},{"id":25090,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25091],"locationId":3},{"id":25091,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25092],"locationId":452},{"id":25092,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25093],"locationId":453},{"id":25093,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25094],"locationId":2},{"id":25094,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25095],"locationId":3},{"id":25095,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25096],"locationId":452},{"id":25096,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25097],"locationId":453},{"id":25097,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25098],"locationId":2},{"id":25098,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25099],"locationId":3},{"id":25099,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25100],"locationId":452},{"id":25100,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25101],"locationId":453},{"id":25101,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25102],"locationId":2},{"id":25102,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25103],"locationId":3},{"id":25103,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25104],"locationId":452},{"id":25104,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25105],"locationId":453},{"id":25105,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25106],"locationId":2},{"id":25106,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25107],"locationId":3},{"id":25107,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25108],"locationId":452},{"id":25108,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25109],"locationId":453},{"id":25109,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25110],"locationId":2},{"id":25110,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25111],"locationId":3},{"id":25111,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25112],"locationId":452},{"id":25112,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25113],"locationId":453},{"id":25113,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25114],"locationId":2},{"id":25114,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25115],"locationId":3},{"id":25115,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25116],"locationId":452},{"id":25116,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25117],"locationId":453},{"id":25117,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25118],"locationId":2},{"id":25118,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25119],"locationId":3},{"id":25119,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25120],"locationId":452},{"id":25120,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25121],"locationId":453},{"id":25121,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25122],"locationId":2},{"id":25122,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25123],"locationId":3},{"id":25123,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25124],"locationId":452},{"id":25124,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25125],"locationId":453},{"id":25125,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25126],"locationId":2},{"id":25126,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25127],"locationId":3},{"id":25127,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25128],"locationId":452},{"id":25128,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25129],"locationId":453},{"id":25129,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25130],"locationId":2},{"id":25130,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25131],"locationId":3},{"id":25131,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25132],"locationId":452},{"id":25132,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25133],"locationId":453},{"id":25133,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25134],"locationId":2},{"id":25134,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25135],"locationId":3},{"id":25135,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25136],"locationId":452},{"id":25136,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25137],"locationId":453},{"id":25137,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25138],"locationId":2},{"id":25138,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25139],"locationId":3},{"id":25139,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25140],"locationId":452},{"id":25140,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25141],"locationId":453},{"id":25141,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25142],"locationId":2},{"id":25142,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25143],"locationId":3},{"id":25143,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25144],"locationId":452},{"id":25144,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25145],"locationId":453},{"id":25145,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25146],"locationId":2},{"id":25146,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25147],"locationId":3},{"id":25147,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25148],"locationId":452},{"id":25148,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25149],"locationId":453},{"id":25149,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25150],"locationId":2},{"id":25150,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25151],"locationId":3},{"id":25151,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25152],"locationId":452},{"id":25152,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25153],"locationId":453},{"id":25153,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25154],"locationId":2},{"id":25154,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25155],"locationId":3},{"id":25155,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25156],"locationId":452},{"id":25156,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25157],"locationId":453},{"id":25157,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25158],"locationId":2},{"id":25158,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25159],"locationId":3},{"id":25159,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25160],"locationId":452},{"id":25160,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25161],"locationId":453},{"id":25161,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25162],"locationId":2},{"id":25162,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25163],"locationId":3},{"id":25163,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25164],"locationId":452},{"id":25164,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25165],"locationId":453},{"id":25165,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25166],"locationId":2},{"id":25166,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25167],"locationId":3},{"id":25167,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25168],"locationId":452},{"id":25168,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25169],"locationId":453},{"id":25169,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25170],"locationId":2},{"id":25170,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25171],"locationId":3},{"id":25171,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25172],"locationId":452},{"id":25172,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25173],"locationId":453},{"id":25173,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25174],"locationId":2},{"id":25174,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25175],"locationId":3},{"id":25175,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25176],"locationId":452},{"id":25176,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25177],"locationId":453},{"id":25177,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25178],"locationId":2},{"id":25178,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25179],"locationId":3},{"id":25179,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25180],"locationId":452},{"id":25180,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25181],"locationId":453},{"id":25181,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25182],"locationId":2},{"id":25182,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25183],"locationId":3},{"id":25183,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25184],"locationId":452},{"id":25184,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25185],"locationId":453},{"id":25185,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25186],"locationId":2},{"id":25186,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25187],"locationId":3},{"id":25187,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25188],"locationId":452},{"id":25188,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25189],"locationId":453},{"id":25189,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25190],"locationId":2},{"id":25190,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25191],"locationId":3},{"id":25191,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25192],"locationId":452},{"id":25192,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25193],"locationId":453},{"id":25193,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25194],"locationId":2},{"id":25194,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25195],"locationId":3},{"id":25195,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25196],"locationId":452},{"id":25196,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25197],"locationId":453},{"id":25197,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25198],"locationId":2},{"id":25198,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25199],"locationId":3},{"id":25199,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25200],"locationId":452},{"id":25200,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25201],"locationId":453},{"id":25201,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25202],"locationId":2},{"id":25202,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25203],"locationId":3},{"id":25203,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25204],"locationId":452},{"id":25204,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25205],"locationId":453},{"id":25205,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25206],"locationId":2},{"id":25206,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25207],"locationId":3},{"id":25207,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25208],"locationId":452},{"id":25208,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25209],"locationId":453},{"id":25209,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25210],"locationId":2},{"id":25210,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25211],"locationId":3},{"id":25211,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25212],"locationId":452},{"id":25212,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25213],"locationId":453},{"id":25213,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25214],"locationId":2},{"id":25214,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25215],"locationId":3},{"id":25215,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25216],"locationId":452},{"id":25216,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25217],"locationId":453},{"id":25217,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25218],"locationId":2},{"id":25218,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25219],"locationId":3},{"id":25219,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25220],"locationId":452},{"id":25220,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25221],"locationId":453},{"id":25221,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25222],"locationId":2},{"id":25222,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25223],"locationId":3},{"id":25223,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25224],"locationId":452},{"id":25224,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25225],"locationId":453},{"id":25225,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25226],"locationId":2},{"id":25226,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25227],"locationId":3},{"id":25227,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25228],"locationId":452},{"id":25228,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25229],"locationId":453},{"id":25229,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25230],"locationId":2},{"id":25230,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25231],"locationId":3},{"id":25231,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25232],"locationId":452},{"id":25232,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25233],"locationId":453},{"id":25233,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25234],"locationId":2},{"id":25234,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25235],"locationId":3},{"id":25235,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25236],"locationId":452},{"id":25236,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25237],"locationId":453},{"id":25237,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25238],"locationId":2},{"id":25238,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25239],"locationId":3},{"id":25239,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25240],"locationId":452},{"id":25240,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25241],"locationId":453},{"id":25241,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25242],"locationId":2},{"id":25242,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25243],"locationId":3},{"id":25243,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25244],"locationId":452},{"id":25244,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25245],"locationId":453},{"id":25245,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25246],"locationId":2},{"id":25246,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[25247],"locationId":5},{"id":25247,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25248],"locationId":6},{"id":25248,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[25249],"locationId":7},{"id":25249,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25250],"locationId":6},{"id":25250,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[25251],"locationId":8},{"id":25251,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[25252],"locationId":9},{"id":25252,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25253],"locationId":6},{"id":25253,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[25254,25277,25650],"locationId":10},{"id":25254,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[25255],"locationId":84},{"id":25255,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25256],"locationId":6},{"id":25256,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[25257],"locationId":85},{"id":25257,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[25258],"locationId":86},{"id":25258,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[25259],"locationId":87},{"id":25259,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[25260],"locationId":88},{"id":25260,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[25261],"locationId":74},{"id":25261,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[25262],"locationId":89},{"id":25262,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[25263],"locationId":90},{"id":25263,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":25277,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[25278],"locationId":11},{"id":25278,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[25279],"locationId":12},{"id":25279,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[25280],"locationId":13},{"id":25280,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[25281],"locationId":14},{"id":25281,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[25282],"locationId":36},{"id":25282,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[25283],"locationId":40},{"id":25283,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":25650,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":12563,"callFrame":{"functionName":"cycle","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1983,"columnNumber":18},"hitCount":0,"children":[12564],"locationId":658},{"id":12564,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12565],"locationId":4},{"id":12565,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12566],"locationId":1},{"id":12566,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12567],"locationId":2},{"id":12567,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12568],"locationId":3},{"id":12568,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12569],"locationId":4},{"id":12569,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12570],"locationId":1},{"id":12570,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12571],"locationId":2},{"id":12571,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12572],"locationId":3},{"id":12572,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12573],"locationId":4},{"id":12573,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12574],"locationId":1},{"id":12574,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12575],"locationId":2},{"id":12575,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12576],"locationId":3},{"id":12576,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12577],"locationId":4},{"id":12577,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12578],"locationId":1},{"id":12578,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12579],"locationId":2},{"id":12579,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12580],"locationId":3},{"id":12580,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12581],"locationId":4},{"id":12581,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12582],"locationId":1},{"id":12582,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12583],"locationId":2},{"id":12583,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12584],"locationId":3},{"id":12584,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12585],"locationId":4},{"id":12585,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12586],"locationId":1},{"id":12586,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12587],"locationId":2},{"id":12587,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12588],"locationId":3},{"id":12588,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12589],"locationId":4},{"id":12589,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12590],"locationId":1},{"id":12590,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12591],"locationId":2},{"id":12591,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12592],"locationId":3},{"id":12592,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12593],"locationId":4},{"id":12593,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12594],"locationId":1},{"id":12594,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12595],"locationId":2},{"id":12595,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12596],"locationId":3},{"id":12596,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12597],"locationId":4},{"id":12597,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12598],"locationId":1},{"id":12598,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12599],"locationId":2},{"id":12599,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12600],"locationId":3},{"id":12600,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12601],"locationId":4},{"id":12601,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12602],"locationId":1},{"id":12602,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12603],"locationId":2},{"id":12603,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12604],"locationId":3},{"id":12604,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12605],"locationId":4},{"id":12605,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12606],"locationId":1},{"id":12606,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12607],"locationId":2},{"id":12607,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12608],"locationId":3},{"id":12608,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12609],"locationId":4},{"id":12609,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12610],"locationId":1},{"id":12610,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12611],"locationId":2},{"id":12611,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12612],"locationId":3},{"id":12612,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12613],"locationId":4},{"id":12613,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12614],"locationId":1},{"id":12614,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12615],"locationId":2},{"id":12615,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12616],"locationId":3},{"id":12616,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12617],"locationId":4},{"id":12617,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12618],"locationId":1},{"id":12618,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12619],"locationId":2},{"id":12619,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12620],"locationId":3},{"id":12620,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12621],"locationId":4},{"id":12621,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12622],"locationId":1},{"id":12622,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12623],"locationId":2},{"id":12623,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12624],"locationId":3},{"id":12624,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12625],"locationId":4},{"id":12625,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12626],"locationId":1},{"id":12626,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12627],"locationId":2},{"id":12627,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12628],"locationId":3},{"id":12628,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12629],"locationId":4},{"id":12629,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12630],"locationId":1},{"id":12630,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12631],"locationId":2},{"id":12631,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12632],"locationId":3},{"id":12632,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12633],"locationId":4},{"id":12633,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12634],"locationId":1},{"id":12634,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12635],"locationId":2},{"id":12635,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12636],"locationId":3},{"id":12636,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12637],"locationId":4},{"id":12637,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12638],"locationId":1},{"id":12638,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12639],"locationId":2},{"id":12639,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12640],"locationId":3},{"id":12640,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12641],"locationId":4},{"id":12641,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12642],"locationId":1},{"id":12642,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12643],"locationId":2},{"id":12643,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12644],"locationId":3},{"id":12644,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12645],"locationId":4},{"id":12645,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12646],"locationId":1},{"id":12646,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12647],"locationId":2},{"id":12647,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12648],"locationId":3},{"id":12648,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12649],"locationId":4},{"id":12649,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12650],"locationId":1},{"id":12650,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12651],"locationId":2},{"id":12651,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12652],"locationId":3},{"id":12652,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12653],"locationId":4},{"id":12653,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12654],"locationId":1},{"id":12654,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12655],"locationId":2},{"id":12655,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12656],"locationId":3},{"id":12656,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12657],"locationId":4},{"id":12657,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12658],"locationId":1},{"id":12658,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12659],"locationId":2},{"id":12659,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12660],"locationId":3},{"id":12660,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12661],"locationId":4},{"id":12661,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12662],"locationId":1},{"id":12662,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12663],"locationId":2},{"id":12663,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12664],"locationId":3},{"id":12664,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12665],"locationId":4},{"id":12665,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12666],"locationId":1},{"id":12666,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12667],"locationId":2},{"id":12667,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12668],"locationId":3},{"id":12668,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12669],"locationId":4},{"id":12669,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12670],"locationId":1},{"id":12670,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12671],"locationId":2},{"id":12671,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12672],"locationId":3},{"id":12672,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12673],"locationId":4},{"id":12673,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12674],"locationId":1},{"id":12674,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12675],"locationId":2},{"id":12675,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12676],"locationId":3},{"id":12676,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12677],"locationId":4},{"id":12677,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12678],"locationId":1},{"id":12678,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12679],"locationId":2},{"id":12679,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12680],"locationId":3},{"id":12680,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12681],"locationId":4},{"id":12681,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12682],"locationId":1},{"id":12682,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12683],"locationId":2},{"id":12683,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12684],"locationId":3},{"id":12684,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12685],"locationId":4},{"id":12685,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12686],"locationId":1},{"id":12686,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12687],"locationId":2},{"id":12687,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12688],"locationId":3},{"id":12688,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12689],"locationId":4},{"id":12689,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12690],"locationId":1},{"id":12690,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12691],"locationId":2},{"id":12691,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12692],"locationId":3},{"id":12692,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12693],"locationId":4},{"id":12693,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12694],"locationId":1},{"id":12694,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12695],"locationId":2},{"id":12695,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12696],"locationId":3},{"id":12696,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12697],"locationId":4},{"id":12697,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12698],"locationId":1},{"id":12698,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12699],"locationId":2},{"id":12699,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12700],"locationId":3},{"id":12700,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12701],"locationId":4},{"id":12701,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12702],"locationId":1},{"id":12702,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12703],"locationId":2},{"id":12703,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12704],"locationId":3},{"id":12704,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12705],"locationId":4},{"id":12705,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12706],"locationId":1},{"id":12706,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12707],"locationId":2},{"id":12707,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12708],"locationId":3},{"id":12708,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12709],"locationId":4},{"id":12709,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12710],"locationId":1},{"id":12710,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12711],"locationId":2},{"id":12711,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12712],"locationId":3},{"id":12712,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12713],"locationId":4},{"id":12713,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12714],"locationId":1},{"id":12714,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12715],"locationId":2},{"id":12715,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12716],"locationId":3},{"id":12716,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12717],"locationId":4},{"id":12717,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12718],"locationId":1},{"id":12718,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12719],"locationId":2},{"id":12719,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12720],"locationId":3},{"id":12720,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12721],"locationId":4},{"id":12721,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12722],"locationId":1},{"id":12722,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12723],"locationId":2},{"id":12723,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12724],"locationId":3},{"id":12724,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12725],"locationId":4},{"id":12725,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12726],"locationId":1},{"id":12726,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12727],"locationId":2},{"id":12727,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12728],"locationId":3},{"id":12728,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12729],"locationId":4},{"id":12729,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12730],"locationId":1},{"id":12730,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12731],"locationId":2},{"id":12731,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12732],"locationId":3},{"id":12732,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12733],"locationId":4},{"id":12733,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12734],"locationId":1},{"id":12734,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12735],"locationId":2},{"id":12735,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12736],"locationId":3},{"id":12736,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12737],"locationId":4},{"id":12737,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12738],"locationId":1},{"id":12738,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12739],"locationId":2},{"id":12739,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12740],"locationId":3},{"id":12740,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12741],"locationId":4},{"id":12741,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12742],"locationId":1},{"id":12742,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12743],"locationId":2},{"id":12743,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12744],"locationId":3},{"id":12744,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12745],"locationId":4},{"id":12745,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12746],"locationId":1},{"id":12746,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12747],"locationId":2},{"id":12747,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12748],"locationId":3},{"id":12748,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12749],"locationId":4},{"id":12749,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12750],"locationId":1},{"id":12750,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12751],"locationId":2},{"id":12751,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12752],"locationId":3},{"id":12752,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12753],"locationId":4},{"id":12753,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12754],"locationId":1},{"id":12754,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12755],"locationId":2},{"id":12755,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12756],"locationId":3},{"id":12756,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12757],"locationId":4},{"id":12757,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12758],"locationId":1},{"id":12758,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12759],"locationId":2},{"id":12759,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12760],"locationId":3},{"id":12760,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12761],"locationId":4},{"id":12761,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12762],"locationId":1},{"id":12762,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12763],"locationId":2},{"id":12763,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12764],"locationId":3},{"id":12764,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12765],"locationId":4},{"id":12765,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12766],"locationId":1},{"id":12766,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12767],"locationId":2},{"id":12767,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12768],"locationId":3},{"id":12768,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12769],"locationId":4},{"id":12769,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12770],"locationId":1},{"id":12770,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12771],"locationId":2},{"id":12771,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12772],"locationId":3},{"id":12772,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12773],"locationId":4},{"id":12773,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12774],"locationId":1},{"id":12774,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12775],"locationId":2},{"id":12775,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12776],"locationId":3},{"id":12776,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12777],"locationId":4},{"id":12777,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12778],"locationId":1},{"id":12778,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12779],"locationId":2},{"id":12779,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12780],"locationId":3},{"id":12780,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12781],"locationId":4},{"id":12781,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12782],"locationId":1},{"id":12782,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12783],"locationId":2},{"id":12783,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12784],"locationId":3},{"id":12784,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12785],"locationId":4},{"id":12785,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12786],"locationId":1},{"id":12786,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12787],"locationId":2},{"id":12787,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12788],"locationId":3},{"id":12788,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12789],"locationId":4},{"id":12789,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12790],"locationId":1},{"id":12790,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12791],"locationId":2},{"id":12791,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12792],"locationId":3},{"id":12792,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12793],"locationId":4},{"id":12793,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12794],"locationId":1},{"id":12794,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12795],"locationId":2},{"id":12795,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12796],"locationId":3},{"id":12796,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12797],"locationId":4},{"id":12797,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12798],"locationId":1},{"id":12798,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12799],"locationId":2},{"id":12799,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12800],"locationId":3},{"id":12800,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12801],"locationId":4},{"id":12801,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12802],"locationId":1},{"id":12802,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12803],"locationId":2},{"id":12803,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12804],"locationId":3},{"id":12804,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12805],"locationId":4},{"id":12805,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12806],"locationId":1},{"id":12806,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12807,12840],"locationId":2},{"id":12807,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[12808],"locationId":5},{"id":12808,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12809],"locationId":6},{"id":12809,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[12810],"locationId":7},{"id":12810,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12811],"locationId":6},{"id":12811,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[12812],"locationId":8},{"id":12812,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[12813],"locationId":9},{"id":12813,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12814],"locationId":6},{"id":12814,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[12815],"locationId":10},{"id":12815,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[12816],"locationId":84},{"id":12816,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12817],"locationId":6},{"id":12817,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[12818],"locationId":85},{"id":12818,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[12819],"locationId":86},{"id":12819,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[12820],"locationId":87},{"id":12820,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[12821],"locationId":88},{"id":12821,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[12822],"locationId":74},{"id":12822,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[12823],"locationId":89},{"id":12823,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[12824,12827],"locationId":90},{"id":12824,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[12825],"locationId":40},{"id":12825,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[12826],"locationId":29},{"id":12826,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":12827,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[12828],"locationId":102},{"id":12828,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579}],"locationId":247},{"id":12840,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12841],"locationId":3},{"id":12841,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12842],"locationId":4},{"id":12842,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12843],"locationId":1},{"id":12843,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12844],"locationId":2},{"id":12844,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[12845],"locationId":5},{"id":12845,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12846],"locationId":6},{"id":12846,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[12847],"locationId":7},{"id":12847,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12848],"locationId":6},{"id":12848,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[12849],"locationId":8},{"id":12849,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[12850],"locationId":9},{"id":12850,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[12851],"locationId":6},{"id":12851,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":12852,"callFrame":{"functionName":"","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":732,"columnNumber":29},"hitCount":0,"children":[12853],"locationId":657},{"id":12853,"callFrame":{"functionName":"cycle","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1983,"columnNumber":18},"hitCount":0,"children":[12854],"locationId":658},{"id":12854,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12855],"locationId":4},{"id":12855,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12856],"locationId":1},{"id":12856,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12857],"locationId":2},{"id":12857,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12858],"locationId":3},{"id":12858,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12859],"locationId":4},{"id":12859,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12860],"locationId":1},{"id":12860,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12861],"locationId":2},{"id":12861,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12862],"locationId":3},{"id":12862,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12863],"locationId":4},{"id":12863,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12864],"locationId":1},{"id":12864,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12865],"locationId":2},{"id":12865,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12866],"locationId":3},{"id":12866,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12867],"locationId":4},{"id":12867,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12868],"locationId":1},{"id":12868,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12869],"locationId":2},{"id":12869,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12870],"locationId":3},{"id":12870,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12871],"locationId":4},{"id":12871,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12872],"locationId":1},{"id":12872,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12873],"locationId":2},{"id":12873,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12874],"locationId":3},{"id":12874,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12875],"locationId":4},{"id":12875,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12876],"locationId":1},{"id":12876,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12877],"locationId":2},{"id":12877,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12878],"locationId":3},{"id":12878,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12879],"locationId":4},{"id":12879,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12880],"locationId":1},{"id":12880,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12881],"locationId":2},{"id":12881,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12882],"locationId":3},{"id":12882,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12883],"locationId":4},{"id":12883,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12884],"locationId":1},{"id":12884,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12885],"locationId":2},{"id":12885,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12886],"locationId":3},{"id":12886,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12887],"locationId":4},{"id":12887,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12888],"locationId":1},{"id":12888,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12889],"locationId":2},{"id":12889,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12890],"locationId":3},{"id":12890,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12891],"locationId":4},{"id":12891,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12892],"locationId":1},{"id":12892,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12893],"locationId":2},{"id":12893,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12894],"locationId":3},{"id":12894,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12895],"locationId":4},{"id":12895,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12896],"locationId":1},{"id":12896,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12897],"locationId":2},{"id":12897,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12898],"locationId":3},{"id":12898,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12899],"locationId":4},{"id":12899,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12900],"locationId":1},{"id":12900,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12901],"locationId":2},{"id":12901,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12902],"locationId":3},{"id":12902,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12903],"locationId":4},{"id":12903,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12904],"locationId":1},{"id":12904,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12905],"locationId":2},{"id":12905,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12906],"locationId":3},{"id":12906,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12907],"locationId":4},{"id":12907,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12908],"locationId":1},{"id":12908,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12909],"locationId":2},{"id":12909,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12910],"locationId":3},{"id":12910,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12911],"locationId":4},{"id":12911,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12912],"locationId":1},{"id":12912,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12913],"locationId":2},{"id":12913,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12914],"locationId":3},{"id":12914,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12915],"locationId":4},{"id":12915,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12916],"locationId":1},{"id":12916,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12917],"locationId":2},{"id":12917,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12918],"locationId":3},{"id":12918,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12919],"locationId":4},{"id":12919,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12920],"locationId":1},{"id":12920,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12921],"locationId":2},{"id":12921,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12922],"locationId":3},{"id":12922,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12923],"locationId":4},{"id":12923,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12924],"locationId":1},{"id":12924,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12925],"locationId":2},{"id":12925,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12926],"locationId":3},{"id":12926,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12927],"locationId":4},{"id":12927,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12928],"locationId":1},{"id":12928,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12929],"locationId":2},{"id":12929,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12930],"locationId":3},{"id":12930,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12931],"locationId":4},{"id":12931,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12932],"locationId":1},{"id":12932,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12933],"locationId":2},{"id":12933,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12934],"locationId":3},{"id":12934,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12935],"locationId":4},{"id":12935,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12936],"locationId":1},{"id":12936,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12937],"locationId":2},{"id":12937,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12938],"locationId":3},{"id":12938,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12939],"locationId":4},{"id":12939,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12940],"locationId":1},{"id":12940,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12941],"locationId":2},{"id":12941,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12942],"locationId":3},{"id":12942,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12943],"locationId":4},{"id":12943,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12944],"locationId":1},{"id":12944,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12945],"locationId":2},{"id":12945,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12946],"locationId":3},{"id":12946,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12947],"locationId":4},{"id":12947,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12948],"locationId":1},{"id":12948,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12949],"locationId":2},{"id":12949,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12950],"locationId":3},{"id":12950,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12951],"locationId":4},{"id":12951,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12952],"locationId":1},{"id":12952,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12953],"locationId":2},{"id":12953,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12954],"locationId":3},{"id":12954,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12955],"locationId":4},{"id":12955,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12956],"locationId":1},{"id":12956,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12957],"locationId":2},{"id":12957,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12958],"locationId":3},{"id":12958,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12959],"locationId":4},{"id":12959,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12960],"locationId":1},{"id":12960,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12961],"locationId":2},{"id":12961,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12962],"locationId":3},{"id":12962,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12963],"locationId":4},{"id":12963,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12964],"locationId":1},{"id":12964,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12965],"locationId":2},{"id":12965,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12966],"locationId":3},{"id":12966,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12967],"locationId":4},{"id":12967,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12968],"locationId":1},{"id":12968,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12969],"locationId":2},{"id":12969,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12970],"locationId":3},{"id":12970,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12971],"locationId":4},{"id":12971,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12972],"locationId":1},{"id":12972,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12973],"locationId":2},{"id":12973,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12974],"locationId":3},{"id":12974,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12975],"locationId":4},{"id":12975,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12976],"locationId":1},{"id":12976,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12977],"locationId":2},{"id":12977,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12978],"locationId":3},{"id":12978,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12979],"locationId":4},{"id":12979,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12980],"locationId":1},{"id":12980,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12981],"locationId":2},{"id":12981,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12982],"locationId":3},{"id":12982,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12983],"locationId":4},{"id":12983,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12984],"locationId":1},{"id":12984,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12985],"locationId":2},{"id":12985,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12986],"locationId":3},{"id":12986,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12987],"locationId":4},{"id":12987,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12988],"locationId":1},{"id":12988,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12989],"locationId":2},{"id":12989,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12990],"locationId":3},{"id":12990,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12991],"locationId":4},{"id":12991,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12992],"locationId":1},{"id":12992,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12993],"locationId":2},{"id":12993,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12994],"locationId":3},{"id":12994,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12995],"locationId":4},{"id":12995,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[12996],"locationId":1},{"id":12996,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[12997],"locationId":2},{"id":12997,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[12998],"locationId":3},{"id":12998,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[12999],"locationId":4},{"id":12999,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13000],"locationId":1},{"id":13000,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13001],"locationId":2},{"id":13001,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13002],"locationId":3},{"id":13002,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13003],"locationId":4},{"id":13003,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13004],"locationId":1},{"id":13004,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13005],"locationId":2},{"id":13005,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13006],"locationId":3},{"id":13006,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13007],"locationId":4},{"id":13007,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13008],"locationId":1},{"id":13008,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13009],"locationId":2},{"id":13009,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13010],"locationId":3},{"id":13010,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13011],"locationId":4},{"id":13011,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13012],"locationId":1},{"id":13012,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13013],"locationId":2},{"id":13013,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13014],"locationId":3},{"id":13014,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13015],"locationId":4},{"id":13015,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13016],"locationId":1},{"id":13016,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13017],"locationId":2},{"id":13017,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13018],"locationId":3},{"id":13018,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13019],"locationId":4},{"id":13019,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13020],"locationId":1},{"id":13020,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13021],"locationId":2},{"id":13021,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13022],"locationId":3},{"id":13022,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13023],"locationId":4},{"id":13023,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13024],"locationId":1},{"id":13024,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13025],"locationId":2},{"id":13025,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13026],"locationId":3},{"id":13026,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13027],"locationId":4},{"id":13027,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13028],"locationId":1},{"id":13028,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13029],"locationId":2},{"id":13029,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13030],"locationId":3},{"id":13030,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13031],"locationId":4},{"id":13031,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13032],"locationId":1},{"id":13032,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13033],"locationId":2},{"id":13033,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13034],"locationId":3},{"id":13034,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13035],"locationId":4},{"id":13035,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13036],"locationId":1},{"id":13036,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13037],"locationId":2},{"id":13037,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13038],"locationId":3},{"id":13038,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13039],"locationId":4},{"id":13039,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13040],"locationId":1},{"id":13040,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13041],"locationId":2},{"id":13041,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13042],"locationId":3},{"id":13042,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13043],"locationId":4},{"id":13043,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13044],"locationId":1},{"id":13044,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13045],"locationId":2},{"id":13045,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13046],"locationId":3},{"id":13046,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13047],"locationId":4},{"id":13047,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13048],"locationId":1},{"id":13048,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13049],"locationId":2},{"id":13049,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13050],"locationId":3},{"id":13050,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13051],"locationId":4},{"id":13051,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13052],"locationId":1},{"id":13052,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13053],"locationId":2},{"id":13053,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13054],"locationId":3},{"id":13054,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13055],"locationId":4},{"id":13055,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13056],"locationId":1},{"id":13056,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13057],"locationId":2},{"id":13057,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13058],"locationId":3},{"id":13058,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13059],"locationId":4},{"id":13059,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13060],"locationId":1},{"id":13060,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13061],"locationId":2},{"id":13061,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13062],"locationId":3},{"id":13062,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13063],"locationId":4},{"id":13063,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13064],"locationId":1},{"id":13064,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13065],"locationId":2},{"id":13065,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13066],"locationId":3},{"id":13066,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13067],"locationId":4},{"id":13067,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13068],"locationId":1},{"id":13068,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13069],"locationId":2},{"id":13069,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13070],"locationId":3},{"id":13070,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13071],"locationId":4},{"id":13071,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13072],"locationId":1},{"id":13072,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13073],"locationId":2},{"id":13073,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13074],"locationId":3},{"id":13074,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13075],"locationId":4},{"id":13075,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13076],"locationId":1},{"id":13076,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13077],"locationId":2},{"id":13077,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13078],"locationId":3},{"id":13078,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13079],"locationId":4},{"id":13079,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13080],"locationId":1},{"id":13080,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13081],"locationId":2},{"id":13081,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13082],"locationId":3},{"id":13082,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13083],"locationId":4},{"id":13083,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13084],"locationId":1},{"id":13084,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13085],"locationId":2},{"id":13085,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13086],"locationId":3},{"id":13086,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13087],"locationId":4},{"id":13087,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13088],"locationId":1},{"id":13088,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13089],"locationId":2},{"id":13089,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13090],"locationId":3},{"id":13090,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13091],"locationId":4},{"id":13091,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13092],"locationId":1},{"id":13092,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13093],"locationId":2},{"id":13093,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13094],"locationId":3},{"id":13094,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13095],"locationId":4},{"id":13095,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13096],"locationId":1},{"id":13096,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13097],"locationId":2},{"id":13097,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[13098],"locationId":3},{"id":13098,"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[13099],"locationId":4},{"id":13099,"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[13100],"locationId":1},{"id":13100,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[13101],"locationId":2},{"id":13101,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[13102],"locationId":5},{"id":13102,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13103],"locationId":6},{"id":13103,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[13104],"locationId":7},{"id":13104,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13105],"locationId":6},{"id":13105,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[13106],"locationId":8},{"id":13106,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[13107],"locationId":9},{"id":13107,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[13108],"locationId":6},{"id":13108,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[13109],"locationId":10},{"id":13109,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":17428,"callFrame":{"functionName":"execute","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":848,"columnNumber":22},"hitCount":0,"children":[17429],"locationId":719},{"id":17429,"callFrame":{"functionName":"run","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":2092,"columnNumber":16},"hitCount":0,"children":[17430],"locationId":720},{"id":17430,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[17431],"locationId":721},{"id":17431,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[17432],"locationId":721},{"id":17432,"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"hitCount":0,"children":[17433,26336],"locationId":722},{"id":17433,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17434],"locationId":398},{"id":17434,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17435],"locationId":399},{"id":17435,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17436],"locationId":2},{"id":17436,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17437],"locationId":3},{"id":17437,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17438],"locationId":398},{"id":17438,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17439],"locationId":399},{"id":17439,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17440],"locationId":2},{"id":17440,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17441],"locationId":3},{"id":17441,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17442],"locationId":398},{"id":17442,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17443],"locationId":399},{"id":17443,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17444],"locationId":2},{"id":17444,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17445],"locationId":3},{"id":17445,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17446],"locationId":398},{"id":17446,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17447],"locationId":399},{"id":17447,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17448],"locationId":2},{"id":17448,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17449],"locationId":3},{"id":17449,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17450],"locationId":398},{"id":17450,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17451],"locationId":399},{"id":17451,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17452],"locationId":2},{"id":17452,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17453],"locationId":3},{"id":17453,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17454],"locationId":398},{"id":17454,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17455],"locationId":399},{"id":17455,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17456],"locationId":2},{"id":17456,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17457],"locationId":3},{"id":17457,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17458],"locationId":398},{"id":17458,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17459],"locationId":399},{"id":17459,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17460],"locationId":2},{"id":17460,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17461],"locationId":3},{"id":17461,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17462],"locationId":398},{"id":17462,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17463],"locationId":399},{"id":17463,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17464],"locationId":2},{"id":17464,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17465],"locationId":3},{"id":17465,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17466],"locationId":398},{"id":17466,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17467],"locationId":399},{"id":17467,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17468],"locationId":2},{"id":17468,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17469],"locationId":3},{"id":17469,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17470],"locationId":398},{"id":17470,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17471],"locationId":399},{"id":17471,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17472],"locationId":2},{"id":17472,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17473],"locationId":3},{"id":17473,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17474],"locationId":398},{"id":17474,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17475],"locationId":399},{"id":17475,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17476],"locationId":2},{"id":17476,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17477],"locationId":3},{"id":17477,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17478],"locationId":398},{"id":17478,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17479],"locationId":399},{"id":17479,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17480],"locationId":2},{"id":17480,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17481],"locationId":3},{"id":17481,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17482],"locationId":398},{"id":17482,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17483],"locationId":399},{"id":17483,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17484],"locationId":2},{"id":17484,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17485],"locationId":3},{"id":17485,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17486],"locationId":398},{"id":17486,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17487],"locationId":399},{"id":17487,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17488],"locationId":2},{"id":17488,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17489],"locationId":3},{"id":17489,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17490],"locationId":398},{"id":17490,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17491],"locationId":399},{"id":17491,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17492],"locationId":2},{"id":17492,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17493],"locationId":3},{"id":17493,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17494],"locationId":398},{"id":17494,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17495],"locationId":399},{"id":17495,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17496],"locationId":2},{"id":17496,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17497],"locationId":3},{"id":17497,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17498],"locationId":398},{"id":17498,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17499],"locationId":399},{"id":17499,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17500],"locationId":2},{"id":17500,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17501],"locationId":3},{"id":17501,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17502],"locationId":398},{"id":17502,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17503],"locationId":399},{"id":17503,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17504],"locationId":2},{"id":17504,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17505],"locationId":3},{"id":17505,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17506],"locationId":398},{"id":17506,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17507],"locationId":399},{"id":17507,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17508],"locationId":2},{"id":17508,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17509],"locationId":3},{"id":17509,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17510],"locationId":398},{"id":17510,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17511],"locationId":399},{"id":17511,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17512],"locationId":2},{"id":17512,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17513],"locationId":3},{"id":17513,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17514],"locationId":398},{"id":17514,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17515],"locationId":399},{"id":17515,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17516],"locationId":2},{"id":17516,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17517],"locationId":3},{"id":17517,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17518],"locationId":398},{"id":17518,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17519],"locationId":399},{"id":17519,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17520],"locationId":2},{"id":17520,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17521],"locationId":3},{"id":17521,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17522],"locationId":398},{"id":17522,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17523],"locationId":399},{"id":17523,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17524],"locationId":2},{"id":17524,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17525],"locationId":3},{"id":17525,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17526],"locationId":398},{"id":17526,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17527],"locationId":399},{"id":17527,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17528],"locationId":2},{"id":17528,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17529],"locationId":3},{"id":17529,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17530],"locationId":398},{"id":17530,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17531],"locationId":399},{"id":17531,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17532],"locationId":2},{"id":17532,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17533],"locationId":3},{"id":17533,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17534],"locationId":398},{"id":17534,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17535],"locationId":399},{"id":17535,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17536],"locationId":2},{"id":17536,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17537],"locationId":3},{"id":17537,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17538],"locationId":398},{"id":17538,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17539],"locationId":399},{"id":17539,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17540],"locationId":2},{"id":17540,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17541],"locationId":3},{"id":17541,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17542],"locationId":398},{"id":17542,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17543],"locationId":399},{"id":17543,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17544],"locationId":2},{"id":17544,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17545],"locationId":3},{"id":17545,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17546],"locationId":398},{"id":17546,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17547],"locationId":399},{"id":17547,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17548],"locationId":2},{"id":17548,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17549],"locationId":3},{"id":17549,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17550],"locationId":398},{"id":17550,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17551],"locationId":399},{"id":17551,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17552],"locationId":2},{"id":17552,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17553],"locationId":3},{"id":17553,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17554],"locationId":398},{"id":17554,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17555],"locationId":399},{"id":17555,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17556],"locationId":2},{"id":17556,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17557],"locationId":3},{"id":17557,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17558],"locationId":398},{"id":17558,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17559],"locationId":399},{"id":17559,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17560],"locationId":2},{"id":17560,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17561],"locationId":3},{"id":17561,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17562],"locationId":398},{"id":17562,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17563],"locationId":399},{"id":17563,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17564],"locationId":2},{"id":17564,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17565],"locationId":3},{"id":17565,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17566],"locationId":398},{"id":17566,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17567],"locationId":399},{"id":17567,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17568],"locationId":2},{"id":17568,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17569],"locationId":3},{"id":17569,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17570],"locationId":398},{"id":17570,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17571],"locationId":399},{"id":17571,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17572],"locationId":2},{"id":17572,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17573],"locationId":3},{"id":17573,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17574],"locationId":398},{"id":17574,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17575],"locationId":399},{"id":17575,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17576],"locationId":2},{"id":17576,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17577],"locationId":3},{"id":17577,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17578],"locationId":398},{"id":17578,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17579],"locationId":399},{"id":17579,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17580],"locationId":2},{"id":17580,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17581],"locationId":3},{"id":17581,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17582],"locationId":398},{"id":17582,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17583],"locationId":399},{"id":17583,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17584],"locationId":2},{"id":17584,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17585],"locationId":3},{"id":17585,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17586],"locationId":398},{"id":17586,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17587],"locationId":399},{"id":17587,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17588],"locationId":2},{"id":17588,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17589],"locationId":3},{"id":17589,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17590],"locationId":398},{"id":17590,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17591],"locationId":399},{"id":17591,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17592],"locationId":2},{"id":17592,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17593],"locationId":3},{"id":17593,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17594],"locationId":398},{"id":17594,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17595],"locationId":399},{"id":17595,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17596],"locationId":2},{"id":17596,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17597],"locationId":3},{"id":17597,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17598],"locationId":398},{"id":17598,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17599],"locationId":399},{"id":17599,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17600],"locationId":2},{"id":17600,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17601],"locationId":3},{"id":17601,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17602],"locationId":398},{"id":17602,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17603],"locationId":399},{"id":17603,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17604],"locationId":2},{"id":17604,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17605],"locationId":3},{"id":17605,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17606],"locationId":398},{"id":17606,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17607],"locationId":399},{"id":17607,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17608],"locationId":2},{"id":17608,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17609],"locationId":3},{"id":17609,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17610],"locationId":398},{"id":17610,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17611],"locationId":399},{"id":17611,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17612],"locationId":2},{"id":17612,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17613],"locationId":3},{"id":17613,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17614],"locationId":398},{"id":17614,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17615],"locationId":399},{"id":17615,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17616],"locationId":2},{"id":17616,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17617],"locationId":3},{"id":17617,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17618],"locationId":398},{"id":17618,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17619],"locationId":399},{"id":17619,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17620],"locationId":2},{"id":17620,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17621],"locationId":3},{"id":17621,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17622],"locationId":398},{"id":17622,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17623],"locationId":399},{"id":17623,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17624],"locationId":2},{"id":17624,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17625],"locationId":3},{"id":17625,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17626],"locationId":398},{"id":17626,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17627],"locationId":399},{"id":17627,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17628],"locationId":2},{"id":17628,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17629],"locationId":3},{"id":17629,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17630],"locationId":398},{"id":17630,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17631],"locationId":399},{"id":17631,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17632],"locationId":2},{"id":17632,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17633],"locationId":3},{"id":17633,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17634],"locationId":398},{"id":17634,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17635],"locationId":399},{"id":17635,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17636],"locationId":2},{"id":17636,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17637],"locationId":3},{"id":17637,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17638],"locationId":398},{"id":17638,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17639],"locationId":399},{"id":17639,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17640],"locationId":2},{"id":17640,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17641],"locationId":3},{"id":17641,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17642],"locationId":398},{"id":17642,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17643],"locationId":399},{"id":17643,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17644],"locationId":2},{"id":17644,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17645],"locationId":3},{"id":17645,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17646],"locationId":398},{"id":17646,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17647],"locationId":399},{"id":17647,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17648],"locationId":2},{"id":17648,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17649],"locationId":3},{"id":17649,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17650],"locationId":398},{"id":17650,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17651],"locationId":399},{"id":17651,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17652],"locationId":2},{"id":17652,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17653],"locationId":3},{"id":17653,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17654],"locationId":398},{"id":17654,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17655],"locationId":399},{"id":17655,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17656],"locationId":2},{"id":17656,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17657],"locationId":3},{"id":17657,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17658],"locationId":398},{"id":17658,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17659],"locationId":399},{"id":17659,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17660],"locationId":2},{"id":17660,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17661],"locationId":3},{"id":17661,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17662],"locationId":398},{"id":17662,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17663],"locationId":399},{"id":17663,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17664],"locationId":2},{"id":17664,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17665],"locationId":3},{"id":17665,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17666],"locationId":398},{"id":17666,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17667],"locationId":399},{"id":17667,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17668],"locationId":2},{"id":17668,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17669],"locationId":3},{"id":17669,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17670],"locationId":398},{"id":17670,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17671],"locationId":399},{"id":17671,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17672],"locationId":2},{"id":17672,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17673],"locationId":5},{"id":17673,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17674],"locationId":6},{"id":17674,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17675],"locationId":7},{"id":17675,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17676],"locationId":6},{"id":17676,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[17677],"locationId":8},{"id":17677,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[17678],"locationId":9},{"id":17678,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17679],"locationId":6},{"id":17679,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[17680],"locationId":10},{"id":17680,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[17681],"locationId":84},{"id":17681,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17682],"locationId":6},{"id":17682,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[17683],"locationId":85},{"id":17683,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[17684],"locationId":86},{"id":17684,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[17685],"locationId":87},{"id":17685,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[17686],"locationId":88},{"id":17686,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[17687],"locationId":74},{"id":17687,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[17688],"locationId":89},{"id":17688,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[17689,17713],"locationId":90},{"id":17689,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[17690],"locationId":40},{"id":17690,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[17691],"locationId":29},{"id":17691,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":17713,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[17714],"locationId":102},{"id":17714,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579}],"locationId":247},{"id":26336,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26337],"locationId":452},{"id":26337,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26338],"locationId":453},{"id":26338,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26339],"locationId":2},{"id":26339,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26340],"locationId":3},{"id":26340,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26341],"locationId":452},{"id":26341,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26342],"locationId":453},{"id":26342,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26343],"locationId":2},{"id":26343,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26344],"locationId":3},{"id":26344,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26345],"locationId":452},{"id":26345,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26346],"locationId":453},{"id":26346,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26347],"locationId":2},{"id":26347,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26348],"locationId":3},{"id":26348,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26349],"locationId":452},{"id":26349,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26350],"locationId":453},{"id":26350,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26351],"locationId":2},{"id":26351,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26352],"locationId":3},{"id":26352,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26353],"locationId":452},{"id":26353,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26354],"locationId":453},{"id":26354,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26355],"locationId":2},{"id":26355,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26356],"locationId":3},{"id":26356,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26357],"locationId":452},{"id":26357,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26358],"locationId":453},{"id":26358,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26359],"locationId":2},{"id":26359,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26360],"locationId":3},{"id":26360,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26361],"locationId":452},{"id":26361,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26362],"locationId":453},{"id":26362,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26363],"locationId":2},{"id":26363,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26364],"locationId":3},{"id":26364,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26365],"locationId":452},{"id":26365,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26366],"locationId":453},{"id":26366,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26367],"locationId":2},{"id":26367,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26368],"locationId":3},{"id":26368,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26369],"locationId":452},{"id":26369,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26370],"locationId":453},{"id":26370,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26371],"locationId":2},{"id":26371,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26372],"locationId":3},{"id":26372,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26373],"locationId":452},{"id":26373,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26374],"locationId":453},{"id":26374,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26375],"locationId":2},{"id":26375,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26376],"locationId":3},{"id":26376,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26377],"locationId":452},{"id":26377,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26378],"locationId":453},{"id":26378,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26379],"locationId":2},{"id":26379,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26380],"locationId":3},{"id":26380,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26381],"locationId":452},{"id":26381,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26382],"locationId":453},{"id":26382,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26383],"locationId":2},{"id":26383,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26384],"locationId":3},{"id":26384,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26385],"locationId":452},{"id":26385,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26386],"locationId":453},{"id":26386,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26387],"locationId":2},{"id":26387,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26388],"locationId":3},{"id":26388,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26389],"locationId":452},{"id":26389,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26390],"locationId":453},{"id":26390,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26391],"locationId":2},{"id":26391,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26392],"locationId":3},{"id":26392,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26393],"locationId":452},{"id":26393,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26394],"locationId":453},{"id":26394,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26395],"locationId":2},{"id":26395,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26396],"locationId":3},{"id":26396,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26397],"locationId":452},{"id":26397,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26398],"locationId":453},{"id":26398,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26399],"locationId":2},{"id":26399,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26400],"locationId":3},{"id":26400,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26401],"locationId":452},{"id":26401,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26402],"locationId":453},{"id":26402,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26403],"locationId":2},{"id":26403,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26404],"locationId":3},{"id":26404,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26405],"locationId":452},{"id":26405,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26406],"locationId":453},{"id":26406,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26407],"locationId":2},{"id":26407,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26408],"locationId":3},{"id":26408,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26409],"locationId":452},{"id":26409,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26410],"locationId":453},{"id":26410,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26411],"locationId":2},{"id":26411,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26412],"locationId":3},{"id":26412,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26413],"locationId":452},{"id":26413,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26414],"locationId":453},{"id":26414,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26415],"locationId":2},{"id":26415,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26416],"locationId":3},{"id":26416,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26417],"locationId":452},{"id":26417,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26418],"locationId":453},{"id":26418,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26419],"locationId":2},{"id":26419,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26420],"locationId":3},{"id":26420,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26421],"locationId":452},{"id":26421,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26422],"locationId":453},{"id":26422,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26423],"locationId":2},{"id":26423,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26424],"locationId":3},{"id":26424,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26425],"locationId":452},{"id":26425,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26426],"locationId":453},{"id":26426,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26427],"locationId":2},{"id":26427,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26428],"locationId":3},{"id":26428,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26429],"locationId":452},{"id":26429,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26430],"locationId":453},{"id":26430,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26431],"locationId":2},{"id":26431,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26432],"locationId":3},{"id":26432,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26433],"locationId":452},{"id":26433,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26434],"locationId":453},{"id":26434,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26435],"locationId":2},{"id":26435,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26436],"locationId":3},{"id":26436,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26437],"locationId":452},{"id":26437,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26438],"locationId":453},{"id":26438,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26439],"locationId":2},{"id":26439,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26440],"locationId":3},{"id":26440,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26441],"locationId":452},{"id":26441,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26442],"locationId":453},{"id":26442,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26443],"locationId":2},{"id":26443,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26444],"locationId":3},{"id":26444,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26445],"locationId":452},{"id":26445,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26446],"locationId":453},{"id":26446,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26447],"locationId":2},{"id":26447,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26448],"locationId":3},{"id":26448,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26449],"locationId":452},{"id":26449,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26450],"locationId":453},{"id":26450,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26451],"locationId":2},{"id":26451,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26452],"locationId":3},{"id":26452,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26453],"locationId":452},{"id":26453,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26454],"locationId":453},{"id":26454,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26455],"locationId":2},{"id":26455,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26456],"locationId":3},{"id":26456,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26457],"locationId":452},{"id":26457,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26458],"locationId":453},{"id":26458,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26459],"locationId":2},{"id":26459,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26460],"locationId":3},{"id":26460,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26461],"locationId":452},{"id":26461,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26462],"locationId":453},{"id":26462,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26463],"locationId":2},{"id":26463,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26464],"locationId":3},{"id":26464,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26465],"locationId":452},{"id":26465,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26466],"locationId":453},{"id":26466,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26467],"locationId":2},{"id":26467,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26468],"locationId":3},{"id":26468,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26469],"locationId":452},{"id":26469,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26470],"locationId":453},{"id":26470,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26471],"locationId":2},{"id":26471,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26472],"locationId":3},{"id":26472,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26473],"locationId":452},{"id":26473,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26474],"locationId":453},{"id":26474,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26475],"locationId":2},{"id":26475,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26476],"locationId":3},{"id":26476,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26477],"locationId":452},{"id":26477,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26478],"locationId":453},{"id":26478,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26479],"locationId":2},{"id":26479,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26480],"locationId":3},{"id":26480,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26481],"locationId":452},{"id":26481,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26482],"locationId":453},{"id":26482,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26483],"locationId":2},{"id":26483,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26484],"locationId":3},{"id":26484,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26485],"locationId":452},{"id":26485,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26486],"locationId":453},{"id":26486,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26487],"locationId":2},{"id":26487,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26488],"locationId":3},{"id":26488,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26489],"locationId":452},{"id":26489,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26490],"locationId":453},{"id":26490,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26491],"locationId":2},{"id":26491,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26492],"locationId":3},{"id":26492,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26493],"locationId":452},{"id":26493,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26494],"locationId":453},{"id":26494,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26495],"locationId":2},{"id":26495,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26496],"locationId":3},{"id":26496,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26497],"locationId":452},{"id":26497,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26498],"locationId":453},{"id":26498,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26499],"locationId":2},{"id":26499,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26500],"locationId":3},{"id":26500,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26501],"locationId":452},{"id":26501,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26502],"locationId":453},{"id":26502,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26503],"locationId":2},{"id":26503,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26504],"locationId":3},{"id":26504,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26505],"locationId":452},{"id":26505,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26506],"locationId":453},{"id":26506,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26507],"locationId":2},{"id":26507,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26508],"locationId":3},{"id":26508,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26509],"locationId":452},{"id":26509,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26510],"locationId":453},{"id":26510,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26511],"locationId":2},{"id":26511,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26512],"locationId":3},{"id":26512,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26513],"locationId":452},{"id":26513,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26514],"locationId":453},{"id":26514,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26515],"locationId":2},{"id":26515,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26516],"locationId":3},{"id":26516,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26517],"locationId":452},{"id":26517,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26518],"locationId":453},{"id":26518,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26519],"locationId":2},{"id":26519,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26520],"locationId":3},{"id":26520,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26521],"locationId":452},{"id":26521,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26522],"locationId":453},{"id":26522,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26523],"locationId":2},{"id":26523,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26524],"locationId":3},{"id":26524,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26525],"locationId":452},{"id":26525,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26526],"locationId":453},{"id":26526,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26527],"locationId":2},{"id":26527,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26528],"locationId":3},{"id":26528,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26529],"locationId":452},{"id":26529,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26530],"locationId":453},{"id":26530,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26531],"locationId":2},{"id":26531,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26532],"locationId":3},{"id":26532,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26533],"locationId":452},{"id":26533,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26534],"locationId":453},{"id":26534,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26535],"locationId":2},{"id":26535,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26536],"locationId":3},{"id":26536,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26537],"locationId":452},{"id":26537,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26538],"locationId":453},{"id":26538,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26539],"locationId":2},{"id":26539,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26540],"locationId":3},{"id":26540,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26541],"locationId":452},{"id":26541,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26542],"locationId":453},{"id":26542,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26543],"locationId":2},{"id":26543,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26544],"locationId":3},{"id":26544,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26545],"locationId":452},{"id":26545,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26546],"locationId":453},{"id":26546,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26547],"locationId":2},{"id":26547,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26548],"locationId":3},{"id":26548,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26549],"locationId":452},{"id":26549,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26550],"locationId":453},{"id":26550,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26551],"locationId":2},{"id":26551,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26552],"locationId":3},{"id":26552,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26553],"locationId":452},{"id":26553,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26554],"locationId":453},{"id":26554,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26555],"locationId":2},{"id":26555,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26556],"locationId":3},{"id":26556,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26557],"locationId":452},{"id":26557,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26558],"locationId":453},{"id":26558,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26559],"locationId":2},{"id":26559,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26560],"locationId":3},{"id":26560,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26561],"locationId":452},{"id":26561,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26562],"locationId":453},{"id":26562,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26563],"locationId":2},{"id":26563,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26564],"locationId":3},{"id":26564,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26565],"locationId":452},{"id":26565,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26566],"locationId":453},{"id":26566,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26567],"locationId":2},{"id":26567,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26568],"locationId":3},{"id":26568,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26569],"locationId":452},{"id":26569,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26570],"locationId":453},{"id":26570,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26571],"locationId":2},{"id":26571,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26572],"locationId":3},{"id":26572,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26573],"locationId":452},{"id":26573,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26574],"locationId":453},{"id":26574,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26575],"locationId":2},{"id":26575,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26576],"locationId":3},{"id":26576,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26577],"locationId":452},{"id":26577,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26578],"locationId":453},{"id":26578,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26579],"locationId":2},{"id":26579,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26580],"locationId":3},{"id":26580,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26581],"locationId":452},{"id":26581,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26582],"locationId":453},{"id":26582,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26583],"locationId":2},{"id":26583,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26584],"locationId":3},{"id":26584,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26585],"locationId":452},{"id":26585,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26586],"locationId":453},{"id":26586,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26587],"locationId":2},{"id":26587,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26588],"locationId":3},{"id":26588,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26589],"locationId":452},{"id":26589,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26590],"locationId":453},{"id":26590,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26591],"locationId":2},{"id":26591,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26592],"locationId":3},{"id":26592,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26593],"locationId":452},{"id":26593,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26594],"locationId":453},{"id":26594,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26595],"locationId":2},{"id":26595,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26596],"locationId":3},{"id":26596,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26597],"locationId":452},{"id":26597,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26598],"locationId":453},{"id":26598,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26599],"locationId":2},{"id":26599,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26600],"locationId":3},{"id":26600,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26601],"locationId":452},{"id":26601,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26602],"locationId":453},{"id":26602,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26603],"locationId":2},{"id":26603,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26604],"locationId":3},{"id":26604,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26605],"locationId":452},{"id":26605,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26606],"locationId":453},{"id":26606,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26607],"locationId":2},{"id":26607,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26608],"locationId":3},{"id":26608,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26609],"locationId":452},{"id":26609,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26610],"locationId":453},{"id":26610,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26611],"locationId":2},{"id":26611,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26612],"locationId":3},{"id":26612,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26613],"locationId":452},{"id":26613,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26614],"locationId":453},{"id":26614,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26615],"locationId":2},{"id":26615,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26616],"locationId":3},{"id":26616,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26617],"locationId":452},{"id":26617,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26618],"locationId":453},{"id":26618,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26619],"locationId":2},{"id":26619,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26620],"locationId":3},{"id":26620,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26621],"locationId":452},{"id":26621,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26622],"locationId":453},{"id":26622,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26623],"locationId":2},{"id":26623,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26624],"locationId":3},{"id":26624,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26625],"locationId":452},{"id":26625,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26626],"locationId":453},{"id":26626,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26627],"locationId":2},{"id":26627,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26628],"locationId":3},{"id":26628,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26629],"locationId":452},{"id":26629,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26630],"locationId":453},{"id":26630,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26631],"locationId":2},{"id":26631,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26632],"locationId":3},{"id":26632,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26633],"locationId":452},{"id":26633,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26634],"locationId":453},{"id":26634,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26635],"locationId":2},{"id":26635,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26636],"locationId":3},{"id":26636,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26637],"locationId":452},{"id":26637,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26638],"locationId":453},{"id":26638,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26639],"locationId":2},{"id":26639,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26640],"locationId":3},{"id":26640,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26641],"locationId":452},{"id":26641,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26642],"locationId":453},{"id":26642,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26643],"locationId":2},{"id":26643,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26644],"locationId":3},{"id":26644,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26645],"locationId":452},{"id":26645,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26646],"locationId":453},{"id":26646,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26647],"locationId":2},{"id":26647,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26648],"locationId":3},{"id":26648,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26649],"locationId":452},{"id":26649,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26650],"locationId":453},{"id":26650,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26651],"locationId":2},{"id":26651,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26652],"locationId":3},{"id":26652,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26653],"locationId":452},{"id":26653,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26654],"locationId":453},{"id":26654,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26655],"locationId":2},{"id":26655,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26656],"locationId":3},{"id":26656,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26657],"locationId":452},{"id":26657,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26658],"locationId":453},{"id":26658,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26659],"locationId":2},{"id":26659,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[26660],"locationId":5},{"id":26660,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[26661],"locationId":6},{"id":26661,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[26662],"locationId":7},{"id":26662,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[26663],"locationId":6},{"id":26663,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[26664],"locationId":8},{"id":26664,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[26665],"locationId":9},{"id":26665,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[26666],"locationId":6},{"id":26666,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[26667],"locationId":10},{"id":26667,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[26668],"locationId":84},{"id":26668,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[26669],"locationId":6},{"id":26669,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[26670],"locationId":85},{"id":26670,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[26671],"locationId":86},{"id":26671,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[26672],"locationId":87},{"id":26672,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[26673],"locationId":88},{"id":26673,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[26674],"locationId":74},{"id":26674,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[26675],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":26675,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":17728,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[17729,17991],"locationId":721},{"id":17729,"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"hitCount":0,"children":[17730,25993],"locationId":722},{"id":17730,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17731],"locationId":398},{"id":17731,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17732],"locationId":399},{"id":17732,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17733],"locationId":2},{"id":17733,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17734],"locationId":3},{"id":17734,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17735],"locationId":398},{"id":17735,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17736],"locationId":399},{"id":17736,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17737],"locationId":2},{"id":17737,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17738],"locationId":3},{"id":17738,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17739],"locationId":398},{"id":17739,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17740],"locationId":399},{"id":17740,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17741],"locationId":2},{"id":17741,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17742],"locationId":3},{"id":17742,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17743],"locationId":398},{"id":17743,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17744],"locationId":399},{"id":17744,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17745],"locationId":2},{"id":17745,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17746],"locationId":3},{"id":17746,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17747],"locationId":398},{"id":17747,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17748],"locationId":399},{"id":17748,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17749],"locationId":2},{"id":17749,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17750],"locationId":3},{"id":17750,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17751],"locationId":398},{"id":17751,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17752],"locationId":399},{"id":17752,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17753],"locationId":2},{"id":17753,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17754],"locationId":3},{"id":17754,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17755],"locationId":398},{"id":17755,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17756],"locationId":399},{"id":17756,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17757],"locationId":2},{"id":17757,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17758],"locationId":3},{"id":17758,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17759],"locationId":398},{"id":17759,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17760],"locationId":399},{"id":17760,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17761],"locationId":2},{"id":17761,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17762],"locationId":3},{"id":17762,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17763],"locationId":398},{"id":17763,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17764],"locationId":399},{"id":17764,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17765],"locationId":2},{"id":17765,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17766],"locationId":3},{"id":17766,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17767],"locationId":398},{"id":17767,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17768],"locationId":399},{"id":17768,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17769],"locationId":2},{"id":17769,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17770],"locationId":3},{"id":17770,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17771],"locationId":398},{"id":17771,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17772],"locationId":399},{"id":17772,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17773],"locationId":2},{"id":17773,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17774],"locationId":3},{"id":17774,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17775],"locationId":398},{"id":17775,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17776],"locationId":399},{"id":17776,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17777],"locationId":2},{"id":17777,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17778],"locationId":3},{"id":17778,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17779],"locationId":398},{"id":17779,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17780],"locationId":399},{"id":17780,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17781],"locationId":2},{"id":17781,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17782],"locationId":3},{"id":17782,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17783],"locationId":398},{"id":17783,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17784],"locationId":399},{"id":17784,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17785],"locationId":2},{"id":17785,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17786],"locationId":3},{"id":17786,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17787],"locationId":398},{"id":17787,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17788],"locationId":399},{"id":17788,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17789],"locationId":2},{"id":17789,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17790],"locationId":3},{"id":17790,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17791],"locationId":398},{"id":17791,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17792],"locationId":399},{"id":17792,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17793],"locationId":2},{"id":17793,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17794],"locationId":3},{"id":17794,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17795],"locationId":398},{"id":17795,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17796],"locationId":399},{"id":17796,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17797],"locationId":2},{"id":17797,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17798],"locationId":3},{"id":17798,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17799],"locationId":398},{"id":17799,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17800],"locationId":399},{"id":17800,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17801],"locationId":2},{"id":17801,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17802],"locationId":3},{"id":17802,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17803],"locationId":398},{"id":17803,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17804],"locationId":399},{"id":17804,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17805],"locationId":2},{"id":17805,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17806],"locationId":3},{"id":17806,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17807],"locationId":398},{"id":17807,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17808],"locationId":399},{"id":17808,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17809],"locationId":2},{"id":17809,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17810],"locationId":3},{"id":17810,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17811],"locationId":398},{"id":17811,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17812],"locationId":399},{"id":17812,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17813],"locationId":2},{"id":17813,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17814],"locationId":3},{"id":17814,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17815],"locationId":398},{"id":17815,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17816],"locationId":399},{"id":17816,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17817],"locationId":2},{"id":17817,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17818],"locationId":3},{"id":17818,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17819],"locationId":398},{"id":17819,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17820],"locationId":399},{"id":17820,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17821],"locationId":2},{"id":17821,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17822],"locationId":3},{"id":17822,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17823],"locationId":398},{"id":17823,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17824],"locationId":399},{"id":17824,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17825],"locationId":2},{"id":17825,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17826],"locationId":3},{"id":17826,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17827],"locationId":398},{"id":17827,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17828],"locationId":399},{"id":17828,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17829],"locationId":2},{"id":17829,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17830],"locationId":3},{"id":17830,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17831],"locationId":398},{"id":17831,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17832],"locationId":399},{"id":17832,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17833],"locationId":2},{"id":17833,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17834],"locationId":3},{"id":17834,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17835],"locationId":398},{"id":17835,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17836],"locationId":399},{"id":17836,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17837],"locationId":2},{"id":17837,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17838],"locationId":3},{"id":17838,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17839],"locationId":398},{"id":17839,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17840],"locationId":399},{"id":17840,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17841],"locationId":2},{"id":17841,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17842],"locationId":3},{"id":17842,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17843],"locationId":398},{"id":17843,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17844],"locationId":399},{"id":17844,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17845],"locationId":2},{"id":17845,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17846],"locationId":3},{"id":17846,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17847],"locationId":398},{"id":17847,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17848],"locationId":399},{"id":17848,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17849],"locationId":2},{"id":17849,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17850],"locationId":3},{"id":17850,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17851],"locationId":398},{"id":17851,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17852],"locationId":399},{"id":17852,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17853],"locationId":2},{"id":17853,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17854],"locationId":3},{"id":17854,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17855],"locationId":398},{"id":17855,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17856],"locationId":399},{"id":17856,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17857],"locationId":2},{"id":17857,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17858],"locationId":3},{"id":17858,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17859],"locationId":398},{"id":17859,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17860],"locationId":399},{"id":17860,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17861],"locationId":2},{"id":17861,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17862],"locationId":3},{"id":17862,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17863],"locationId":398},{"id":17863,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17864],"locationId":399},{"id":17864,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17865],"locationId":2},{"id":17865,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17866],"locationId":3},{"id":17866,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17867],"locationId":398},{"id":17867,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17868],"locationId":399},{"id":17868,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17869],"locationId":2},{"id":17869,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17870],"locationId":3},{"id":17870,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17871],"locationId":398},{"id":17871,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17872],"locationId":399},{"id":17872,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17873],"locationId":2},{"id":17873,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17874],"locationId":3},{"id":17874,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17875],"locationId":398},{"id":17875,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17876],"locationId":399},{"id":17876,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17877],"locationId":2},{"id":17877,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17878],"locationId":3},{"id":17878,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17879],"locationId":398},{"id":17879,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17880],"locationId":399},{"id":17880,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17881],"locationId":2},{"id":17881,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17882],"locationId":3},{"id":17882,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17883],"locationId":398},{"id":17883,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17884],"locationId":399},{"id":17884,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17885],"locationId":2},{"id":17885,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17886],"locationId":3},{"id":17886,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17887],"locationId":398},{"id":17887,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17888],"locationId":399},{"id":17888,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17889],"locationId":2},{"id":17889,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17890],"locationId":3},{"id":17890,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17891],"locationId":398},{"id":17891,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17892],"locationId":399},{"id":17892,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17893],"locationId":2},{"id":17893,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17894],"locationId":3},{"id":17894,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17895],"locationId":398},{"id":17895,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17896],"locationId":399},{"id":17896,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17897],"locationId":2},{"id":17897,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17898],"locationId":3},{"id":17898,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17899],"locationId":398},{"id":17899,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17900],"locationId":399},{"id":17900,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17901],"locationId":2},{"id":17901,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17902],"locationId":3},{"id":17902,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17903],"locationId":398},{"id":17903,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17904],"locationId":399},{"id":17904,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17905],"locationId":2},{"id":17905,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17906],"locationId":3},{"id":17906,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17907],"locationId":398},{"id":17907,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17908],"locationId":399},{"id":17908,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17909],"locationId":2},{"id":17909,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17910],"locationId":3},{"id":17910,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17911],"locationId":398},{"id":17911,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17912],"locationId":399},{"id":17912,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17913],"locationId":2},{"id":17913,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17914],"locationId":3},{"id":17914,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17915],"locationId":398},{"id":17915,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17916],"locationId":399},{"id":17916,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17917],"locationId":2},{"id":17917,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17918],"locationId":3},{"id":17918,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17919],"locationId":398},{"id":17919,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17920],"locationId":399},{"id":17920,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17921],"locationId":2},{"id":17921,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17922],"locationId":3},{"id":17922,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17923],"locationId":398},{"id":17923,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17924],"locationId":399},{"id":17924,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17925],"locationId":2},{"id":17925,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17926],"locationId":3},{"id":17926,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17927],"locationId":398},{"id":17927,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17928],"locationId":399},{"id":17928,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17929],"locationId":2},{"id":17929,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17930],"locationId":3},{"id":17930,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17931],"locationId":398},{"id":17931,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17932],"locationId":399},{"id":17932,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17933],"locationId":2},{"id":17933,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17934],"locationId":3},{"id":17934,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17935],"locationId":398},{"id":17935,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17936],"locationId":399},{"id":17936,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17937],"locationId":2},{"id":17937,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17938],"locationId":3},{"id":17938,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17939],"locationId":398},{"id":17939,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17940],"locationId":399},{"id":17940,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17941],"locationId":2},{"id":17941,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17942],"locationId":3},{"id":17942,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17943],"locationId":398},{"id":17943,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17944],"locationId":399},{"id":17944,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17945],"locationId":2},{"id":17945,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17946],"locationId":3},{"id":17946,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17947],"locationId":398},{"id":17947,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17948],"locationId":399},{"id":17948,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17949],"locationId":2},{"id":17949,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17950],"locationId":3},{"id":17950,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17951],"locationId":398},{"id":17951,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17952],"locationId":399},{"id":17952,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17953],"locationId":2},{"id":17953,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17954],"locationId":3},{"id":17954,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17955],"locationId":398},{"id":17955,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17956],"locationId":399},{"id":17956,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17957],"locationId":2},{"id":17957,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17958],"locationId":3},{"id":17958,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17959],"locationId":398},{"id":17959,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17960],"locationId":399},{"id":17960,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17961],"locationId":2},{"id":17961,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17962],"locationId":3},{"id":17962,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17963],"locationId":398},{"id":17963,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17964],"locationId":399},{"id":17964,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17965],"locationId":2},{"id":17965,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17966],"locationId":3},{"id":17966,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17967],"locationId":398},{"id":17967,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17968],"locationId":399},{"id":17968,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17969],"locationId":2},{"id":17969,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17970],"locationId":3},{"id":17970,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17971],"locationId":398},{"id":17971,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17972],"locationId":399},{"id":17972,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17973,19321],"locationId":2},{"id":17973,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[17974],"locationId":5},{"id":17974,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17975],"locationId":6},{"id":17975,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[17976],"locationId":7},{"id":17976,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17977],"locationId":6},{"id":17977,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[17978],"locationId":8},{"id":17978,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[17979],"locationId":9},{"id":17979,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[17980],"locationId":6},{"id":17980,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[17981,18505],"locationId":10},{"id":17981,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[17982],"locationId":11},{"id":17982,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[17983],"locationId":12},{"id":17983,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[17984],"locationId":13},{"id":17984,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[17985,18516],"locationId":14},{"id":17985,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[17986],"locationId":15},{"id":17986,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[17987],"locationId":28},{"id":17987,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[17988],"locationId":29},{"id":17988,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":47},"hitCount":0,"children":[17989],"locationId":30},{"id":17989,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[17990],"locationId":13},{"id":17990,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":141,"endLocationId":142}],"locationId":68},{"id":18516,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[18517],"locationId":36},{"id":18517,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[18518],"locationId":40},{"id":18518,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[18519],"locationId":29},{"id":18519,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":18505,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[18506],"locationId":84},{"id":18506,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18507],"locationId":6},{"id":18507,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[18508],"locationId":85},{"id":18508,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[18509],"locationId":86},{"id":18509,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[18510],"locationId":87},{"id":18510,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[18511],"locationId":88},{"id":18511,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[18512],"locationId":74},{"id":18512,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[18513],"locationId":89},{"id":18513,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[18514,18520],"locationId":90},{"id":18514,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[18515],"locationId":40},{"id":18515,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":18520,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":19321,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19322],"locationId":3},{"id":19322,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19323],"locationId":398},{"id":19323,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19324],"locationId":399},{"id":19324,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19325],"locationId":2},{"id":19325,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19326],"locationId":5},{"id":19326,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19327],"locationId":6},{"id":19327,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19328],"locationId":7},{"id":19328,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19329],"locationId":6},{"id":19329,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19330],"locationId":8},{"id":19330,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19331],"locationId":9},{"id":19331,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19332],"locationId":6},{"id":19332,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[19333],"locationId":10},{"id":19333,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":25993,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25994],"locationId":452},{"id":25994,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25995],"locationId":453},{"id":25995,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25996],"locationId":2},{"id":25996,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25997],"locationId":3},{"id":25997,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25998],"locationId":452},{"id":25998,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25999],"locationId":453},{"id":25999,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26000],"locationId":2},{"id":26000,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26001],"locationId":3},{"id":26001,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26002],"locationId":452},{"id":26002,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26003],"locationId":453},{"id":26003,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26004],"locationId":2},{"id":26004,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26005],"locationId":3},{"id":26005,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26006],"locationId":452},{"id":26006,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26007],"locationId":453},{"id":26007,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26008],"locationId":2},{"id":26008,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26009],"locationId":3},{"id":26009,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26010],"locationId":452},{"id":26010,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26011],"locationId":453},{"id":26011,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26012],"locationId":2},{"id":26012,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26013],"locationId":3},{"id":26013,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26014],"locationId":452},{"id":26014,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26015],"locationId":453},{"id":26015,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26016],"locationId":2},{"id":26016,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26017],"locationId":3},{"id":26017,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26018],"locationId":452},{"id":26018,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26019],"locationId":453},{"id":26019,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26020],"locationId":2},{"id":26020,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26021],"locationId":3},{"id":26021,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26022],"locationId":452},{"id":26022,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26023],"locationId":453},{"id":26023,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26024],"locationId":2},{"id":26024,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26025],"locationId":3},{"id":26025,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26026],"locationId":452},{"id":26026,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26027],"locationId":453},{"id":26027,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26028],"locationId":2},{"id":26028,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26029],"locationId":3},{"id":26029,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26030],"locationId":452},{"id":26030,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26031],"locationId":453},{"id":26031,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26032],"locationId":2},{"id":26032,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26033],"locationId":3},{"id":26033,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26034],"locationId":452},{"id":26034,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26035],"locationId":453},{"id":26035,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26036],"locationId":2},{"id":26036,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26037],"locationId":3},{"id":26037,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26038],"locationId":452},{"id":26038,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26039],"locationId":453},{"id":26039,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26040],"locationId":2},{"id":26040,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26041],"locationId":3},{"id":26041,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26042],"locationId":452},{"id":26042,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26043],"locationId":453},{"id":26043,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26044],"locationId":2},{"id":26044,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26045],"locationId":3},{"id":26045,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26046],"locationId":452},{"id":26046,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26047],"locationId":453},{"id":26047,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26048],"locationId":2},{"id":26048,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26049],"locationId":3},{"id":26049,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26050],"locationId":452},{"id":26050,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26051],"locationId":453},{"id":26051,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26052],"locationId":2},{"id":26052,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26053],"locationId":3},{"id":26053,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26054],"locationId":452},{"id":26054,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26055],"locationId":453},{"id":26055,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26056],"locationId":2},{"id":26056,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26057],"locationId":3},{"id":26057,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26058],"locationId":452},{"id":26058,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26059],"locationId":453},{"id":26059,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26060],"locationId":2},{"id":26060,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26061],"locationId":3},{"id":26061,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26062],"locationId":452},{"id":26062,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26063],"locationId":453},{"id":26063,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26064],"locationId":2},{"id":26064,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26065],"locationId":3},{"id":26065,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26066],"locationId":452},{"id":26066,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26067],"locationId":453},{"id":26067,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26068],"locationId":2},{"id":26068,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26069],"locationId":3},{"id":26069,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26070],"locationId":452},{"id":26070,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26071],"locationId":453},{"id":26071,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26072],"locationId":2},{"id":26072,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26073],"locationId":3},{"id":26073,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26074],"locationId":452},{"id":26074,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26075],"locationId":453},{"id":26075,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26076],"locationId":2},{"id":26076,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26077],"locationId":3},{"id":26077,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26078],"locationId":452},{"id":26078,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26079],"locationId":453},{"id":26079,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26080],"locationId":2},{"id":26080,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26081],"locationId":3},{"id":26081,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26082],"locationId":452},{"id":26082,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26083],"locationId":453},{"id":26083,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26084],"locationId":2},{"id":26084,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26085],"locationId":3},{"id":26085,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26086],"locationId":452},{"id":26086,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26087],"locationId":453},{"id":26087,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26088],"locationId":2},{"id":26088,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26089],"locationId":3},{"id":26089,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26090],"locationId":452},{"id":26090,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26091],"locationId":453},{"id":26091,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26092],"locationId":2},{"id":26092,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26093],"locationId":3},{"id":26093,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26094],"locationId":452},{"id":26094,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26095],"locationId":453},{"id":26095,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26096],"locationId":2},{"id":26096,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26097],"locationId":3},{"id":26097,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26098],"locationId":452},{"id":26098,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26099],"locationId":453},{"id":26099,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26100],"locationId":2},{"id":26100,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26101],"locationId":3},{"id":26101,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26102],"locationId":452},{"id":26102,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26103],"locationId":453},{"id":26103,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26104],"locationId":2},{"id":26104,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26105],"locationId":3},{"id":26105,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26106],"locationId":452},{"id":26106,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26107],"locationId":453},{"id":26107,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26108],"locationId":2},{"id":26108,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26109],"locationId":3},{"id":26109,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26110],"locationId":452},{"id":26110,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26111],"locationId":453},{"id":26111,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26112],"locationId":2},{"id":26112,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26113],"locationId":3},{"id":26113,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26114],"locationId":452},{"id":26114,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26115],"locationId":453},{"id":26115,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26116],"locationId":2},{"id":26116,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26117],"locationId":3},{"id":26117,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26118],"locationId":452},{"id":26118,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26119],"locationId":453},{"id":26119,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26120],"locationId":2},{"id":26120,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26121],"locationId":3},{"id":26121,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26122],"locationId":452},{"id":26122,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26123],"locationId":453},{"id":26123,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26124],"locationId":2},{"id":26124,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26125],"locationId":3},{"id":26125,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26126],"locationId":452},{"id":26126,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26127],"locationId":453},{"id":26127,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26128],"locationId":2},{"id":26128,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26129],"locationId":3},{"id":26129,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26130],"locationId":452},{"id":26130,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26131],"locationId":453},{"id":26131,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26132],"locationId":2},{"id":26132,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26133],"locationId":3},{"id":26133,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26134],"locationId":452},{"id":26134,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26135],"locationId":453},{"id":26135,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26136],"locationId":2},{"id":26136,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26137],"locationId":3},{"id":26137,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26138],"locationId":452},{"id":26138,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26139],"locationId":453},{"id":26139,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26140],"locationId":2},{"id":26140,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26141],"locationId":3},{"id":26141,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26142],"locationId":452},{"id":26142,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26143],"locationId":453},{"id":26143,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26144],"locationId":2},{"id":26144,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26145],"locationId":3},{"id":26145,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26146],"locationId":452},{"id":26146,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26147],"locationId":453},{"id":26147,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26148],"locationId":2},{"id":26148,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26149],"locationId":3},{"id":26149,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26150],"locationId":452},{"id":26150,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26151],"locationId":453},{"id":26151,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26152],"locationId":2},{"id":26152,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26153],"locationId":3},{"id":26153,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26154],"locationId":452},{"id":26154,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26155],"locationId":453},{"id":26155,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26156],"locationId":2},{"id":26156,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26157],"locationId":3},{"id":26157,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26158],"locationId":452},{"id":26158,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26159],"locationId":453},{"id":26159,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26160],"locationId":2},{"id":26160,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26161],"locationId":3},{"id":26161,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26162],"locationId":452},{"id":26162,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26163],"locationId":453},{"id":26163,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26164],"locationId":2},{"id":26164,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26165],"locationId":3},{"id":26165,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26166],"locationId":452},{"id":26166,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26167],"locationId":453},{"id":26167,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26168],"locationId":2},{"id":26168,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26169],"locationId":3},{"id":26169,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26170],"locationId":452},{"id":26170,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26171],"locationId":453},{"id":26171,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26172],"locationId":2},{"id":26172,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26173],"locationId":3},{"id":26173,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26174],"locationId":452},{"id":26174,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26175],"locationId":453},{"id":26175,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26176],"locationId":2},{"id":26176,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26177],"locationId":3},{"id":26177,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26178],"locationId":452},{"id":26178,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26179],"locationId":453},{"id":26179,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26180],"locationId":2},{"id":26180,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26181],"locationId":3},{"id":26181,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26182],"locationId":452},{"id":26182,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26183],"locationId":453},{"id":26183,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26184],"locationId":2},{"id":26184,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26185],"locationId":3},{"id":26185,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26186],"locationId":452},{"id":26186,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26187],"locationId":453},{"id":26187,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26188],"locationId":2},{"id":26188,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26189],"locationId":3},{"id":26189,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26190],"locationId":452},{"id":26190,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26191],"locationId":453},{"id":26191,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26192],"locationId":2},{"id":26192,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26193],"locationId":3},{"id":26193,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26194],"locationId":452},{"id":26194,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26195],"locationId":453},{"id":26195,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26196],"locationId":2},{"id":26196,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26197],"locationId":3},{"id":26197,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26198],"locationId":452},{"id":26198,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26199],"locationId":453},{"id":26199,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26200],"locationId":2},{"id":26200,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26201],"locationId":3},{"id":26201,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26202],"locationId":452},{"id":26202,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26203],"locationId":453},{"id":26203,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26204],"locationId":2},{"id":26204,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26205],"locationId":3},{"id":26205,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26206],"locationId":452},{"id":26206,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26207],"locationId":453},{"id":26207,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26208],"locationId":2},{"id":26208,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26209],"locationId":3},{"id":26209,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26210],"locationId":452},{"id":26210,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26211],"locationId":453},{"id":26211,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26212],"locationId":2},{"id":26212,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26213],"locationId":3},{"id":26213,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26214],"locationId":452},{"id":26214,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26215],"locationId":453},{"id":26215,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26216],"locationId":2},{"id":26216,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26217],"locationId":3},{"id":26217,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26218],"locationId":452},{"id":26218,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26219],"locationId":453},{"id":26219,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26220],"locationId":2},{"id":26220,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26221],"locationId":3},{"id":26221,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26222],"locationId":452},{"id":26222,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26223],"locationId":453},{"id":26223,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26224],"locationId":2},{"id":26224,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26225],"locationId":3},{"id":26225,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26226],"locationId":452},{"id":26226,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26227],"locationId":453},{"id":26227,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26228],"locationId":2},{"id":26228,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26229],"locationId":3},{"id":26229,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26230],"locationId":452},{"id":26230,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26231],"locationId":453},{"id":26231,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26232],"locationId":2},{"id":26232,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26233],"locationId":3},{"id":26233,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26234],"locationId":452},{"id":26234,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26235],"locationId":453},{"id":26235,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26236],"locationId":2},{"id":26236,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26237],"locationId":3},{"id":26237,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26238],"locationId":452},{"id":26238,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26239],"locationId":453},{"id":26239,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26240],"locationId":2},{"id":26240,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26241],"locationId":3},{"id":26241,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26242],"locationId":452},{"id":26242,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26243],"locationId":453},{"id":26243,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26244],"locationId":2},{"id":26244,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26245],"locationId":3},{"id":26245,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26246],"locationId":452},{"id":26246,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26247],"locationId":453},{"id":26247,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26248],"locationId":2},{"id":26248,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26249],"locationId":3},{"id":26249,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26250],"locationId":452},{"id":26250,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26251],"locationId":453},{"id":26251,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26252],"locationId":2},{"id":26252,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26253],"locationId":3},{"id":26253,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26254],"locationId":452},{"id":26254,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26255],"locationId":453},{"id":26255,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26256],"locationId":2},{"id":26256,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26257],"locationId":3},{"id":26257,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26258],"locationId":452},{"id":26258,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26259],"locationId":453},{"id":26259,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26260],"locationId":2},{"id":26260,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26261],"locationId":3},{"id":26261,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26262],"locationId":452},{"id":26262,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26263],"locationId":453},{"id":26263,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26264],"locationId":2},{"id":26264,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26265],"locationId":3},{"id":26265,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26266],"locationId":452},{"id":26266,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26267],"locationId":453},{"id":26267,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26268],"locationId":2},{"id":26268,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26269],"locationId":3},{"id":26269,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26270],"locationId":452},{"id":26270,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26271],"locationId":453},{"id":26271,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26272],"locationId":2},{"id":26272,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26273],"locationId":3},{"id":26273,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26274],"locationId":452},{"id":26274,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26275],"locationId":453},{"id":26275,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26276],"locationId":2},{"id":26276,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26277],"locationId":3},{"id":26277,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26278],"locationId":452},{"id":26278,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26279],"locationId":453},{"id":26279,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26280],"locationId":2},{"id":26280,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26281],"locationId":3},{"id":26281,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26282],"locationId":452},{"id":26282,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26283],"locationId":453},{"id":26283,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26284],"locationId":2},{"id":26284,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26285],"locationId":3},{"id":26285,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26286],"locationId":452},{"id":26286,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26287],"locationId":453},{"id":26287,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26288],"locationId":2},{"id":26288,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26289],"locationId":3},{"id":26289,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26290],"locationId":452},{"id":26290,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26291],"locationId":453},{"id":26291,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26292],"locationId":2},{"id":26292,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26293],"locationId":3},{"id":26293,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26294],"locationId":452},{"id":26294,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26295],"locationId":453},{"id":26295,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26296],"locationId":2},{"id":26296,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26297],"locationId":3},{"id":26297,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26298],"locationId":452},{"id":26298,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26299],"locationId":453},{"id":26299,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26300],"locationId":2},{"id":26300,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26301],"locationId":3},{"id":26301,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26302],"locationId":452},{"id":26302,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26303],"locationId":453},{"id":26303,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26304],"locationId":2},{"id":26304,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26305],"locationId":3},{"id":26305,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26306],"locationId":452},{"id":26306,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26307],"locationId":453},{"id":26307,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26308],"locationId":2},{"id":26308,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26309],"locationId":3},{"id":26309,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26310],"locationId":452},{"id":26310,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26311],"locationId":453},{"id":26311,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26312],"locationId":2},{"id":26312,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26313],"locationId":3},{"id":26313,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26314],"locationId":452},{"id":26314,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26315],"locationId":453},{"id":26315,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26316,28092],"locationId":2},{"id":26316,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[26317],"locationId":5},{"id":26317,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[26318],"locationId":6},{"id":26318,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[26319],"locationId":7},{"id":26319,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[26320],"locationId":6},{"id":26320,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[26321],"locationId":8},{"id":26321,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[26322],"locationId":9},{"id":26322,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[26323],"locationId":6},{"id":26323,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[26324],"locationId":10},{"id":26324,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[26325],"locationId":84},{"id":26325,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[26326],"locationId":6},{"id":26326,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[26327],"locationId":85},{"id":26327,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[26328],"locationId":86},{"id":26328,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[26329],"locationId":87},{"id":26329,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[26330],"locationId":88},{"id":26330,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[26331],"locationId":74},{"id":26331,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[26332],"locationId":89},{"id":26332,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[26333,27707],"locationId":90},{"id":26333,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[26334],"locationId":40},{"id":26334,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[26335],"locationId":29},{"id":26335,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":27707,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[27708],"locationId":109},{"id":27708,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[27709],"locationId":114},{"id":27709,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":28092,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28093],"locationId":3},{"id":28093,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28094],"locationId":452},{"id":28094,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28095],"locationId":453},{"id":28095,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28096],"locationId":2},{"id":28096,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28097],"locationId":5},{"id":28097,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28098],"locationId":6},{"id":28098,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28099],"locationId":7},{"id":28099,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28100],"locationId":6},{"id":28100,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28101],"locationId":8},{"id":28101,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28102],"locationId":9},{"id":28102,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28103],"locationId":6},{"id":28103,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28104,28119],"locationId":10},{"id":28104,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[28105],"locationId":11},{"id":28105,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[28106],"locationId":12},{"id":28106,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[28107],"locationId":13},{"id":28107,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[28108],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":28108,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":202,"endLocationId":203}],"locationId":15},{"id":28119,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28120],"locationId":84},{"id":28120,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28121],"locationId":6},{"id":28121,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28122],"locationId":85},{"id":28122,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28123],"locationId":86},{"id":28123,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28124],"locationId":87},{"id":28124,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28125],"locationId":88},{"id":28125,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28126],"locationId":74},{"id":28126,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":17991,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[17992],"locationId":721},{"id":17992,"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"hitCount":0,"children":[17993,26676],"locationId":722},{"id":17993,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17994],"locationId":398},{"id":17994,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17995],"locationId":399},{"id":17995,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[17996],"locationId":2},{"id":17996,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[17997],"locationId":3},{"id":17997,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[17998],"locationId":398},{"id":17998,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[17999],"locationId":399},{"id":17999,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18000],"locationId":2},{"id":18000,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18001],"locationId":3},{"id":18001,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18002],"locationId":398},{"id":18002,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18003],"locationId":399},{"id":18003,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18004],"locationId":2},{"id":18004,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18005],"locationId":3},{"id":18005,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18006],"locationId":398},{"id":18006,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18007],"locationId":399},{"id":18007,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18008],"locationId":2},{"id":18008,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18009],"locationId":3},{"id":18009,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18010],"locationId":398},{"id":18010,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18011],"locationId":399},{"id":18011,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18012],"locationId":2},{"id":18012,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18013],"locationId":3},{"id":18013,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18014],"locationId":398},{"id":18014,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18015],"locationId":399},{"id":18015,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18016],"locationId":2},{"id":18016,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18017],"locationId":3},{"id":18017,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18018],"locationId":398},{"id":18018,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18019],"locationId":399},{"id":18019,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18020],"locationId":2},{"id":18020,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18021],"locationId":3},{"id":18021,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18022],"locationId":398},{"id":18022,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18023],"locationId":399},{"id":18023,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18024],"locationId":2},{"id":18024,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18025],"locationId":3},{"id":18025,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18026],"locationId":398},{"id":18026,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18027],"locationId":399},{"id":18027,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18028],"locationId":2},{"id":18028,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18029],"locationId":3},{"id":18029,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18030],"locationId":398},{"id":18030,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18031],"locationId":399},{"id":18031,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18032],"locationId":2},{"id":18032,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18033],"locationId":3},{"id":18033,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18034],"locationId":398},{"id":18034,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18035],"locationId":399},{"id":18035,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18036],"locationId":2},{"id":18036,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18037],"locationId":3},{"id":18037,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18038],"locationId":398},{"id":18038,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18039],"locationId":399},{"id":18039,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18040],"locationId":2},{"id":18040,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18041],"locationId":3},{"id":18041,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18042],"locationId":398},{"id":18042,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18043],"locationId":399},{"id":18043,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18044],"locationId":2},{"id":18044,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18045],"locationId":3},{"id":18045,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18046],"locationId":398},{"id":18046,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18047],"locationId":399},{"id":18047,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18048],"locationId":2},{"id":18048,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18049],"locationId":3},{"id":18049,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18050],"locationId":398},{"id":18050,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18051],"locationId":399},{"id":18051,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18052],"locationId":2},{"id":18052,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18053],"locationId":3},{"id":18053,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18054],"locationId":398},{"id":18054,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18055],"locationId":399},{"id":18055,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18056],"locationId":2},{"id":18056,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18057],"locationId":3},{"id":18057,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18058],"locationId":398},{"id":18058,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18059],"locationId":399},{"id":18059,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18060],"locationId":2},{"id":18060,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18061],"locationId":3},{"id":18061,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18062],"locationId":398},{"id":18062,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18063],"locationId":399},{"id":18063,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18064],"locationId":2},{"id":18064,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18065],"locationId":3},{"id":18065,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18066],"locationId":398},{"id":18066,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18067],"locationId":399},{"id":18067,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18068],"locationId":2},{"id":18068,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18069],"locationId":3},{"id":18069,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18070],"locationId":398},{"id":18070,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18071],"locationId":399},{"id":18071,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18072],"locationId":2},{"id":18072,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18073],"locationId":3},{"id":18073,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18074],"locationId":398},{"id":18074,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18075],"locationId":399},{"id":18075,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18076],"locationId":2},{"id":18076,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18077],"locationId":3},{"id":18077,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18078],"locationId":398},{"id":18078,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18079],"locationId":399},{"id":18079,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18080],"locationId":2},{"id":18080,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18081],"locationId":3},{"id":18081,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18082],"locationId":398},{"id":18082,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18083],"locationId":399},{"id":18083,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18084],"locationId":2},{"id":18084,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18085],"locationId":3},{"id":18085,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18086],"locationId":398},{"id":18086,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18087],"locationId":399},{"id":18087,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18088],"locationId":2},{"id":18088,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18089],"locationId":3},{"id":18089,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18090],"locationId":398},{"id":18090,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18091],"locationId":399},{"id":18091,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18092],"locationId":2},{"id":18092,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18093],"locationId":3},{"id":18093,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18094],"locationId":398},{"id":18094,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18095],"locationId":399},{"id":18095,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18096],"locationId":2},{"id":18096,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18097],"locationId":3},{"id":18097,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18098],"locationId":398},{"id":18098,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18099],"locationId":399},{"id":18099,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18100],"locationId":2},{"id":18100,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18101],"locationId":3},{"id":18101,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18102],"locationId":398},{"id":18102,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18103],"locationId":399},{"id":18103,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18104],"locationId":2},{"id":18104,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18105],"locationId":3},{"id":18105,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18106],"locationId":398},{"id":18106,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18107],"locationId":399},{"id":18107,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18108],"locationId":2},{"id":18108,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18109],"locationId":3},{"id":18109,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18110],"locationId":398},{"id":18110,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18111],"locationId":399},{"id":18111,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18112],"locationId":2},{"id":18112,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18113],"locationId":3},{"id":18113,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18114],"locationId":398},{"id":18114,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18115],"locationId":399},{"id":18115,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18116],"locationId":2},{"id":18116,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18117],"locationId":3},{"id":18117,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18118],"locationId":398},{"id":18118,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18119],"locationId":399},{"id":18119,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18120],"locationId":2},{"id":18120,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18121],"locationId":3},{"id":18121,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18122],"locationId":398},{"id":18122,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18123],"locationId":399},{"id":18123,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18124],"locationId":2},{"id":18124,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18125],"locationId":3},{"id":18125,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18126],"locationId":398},{"id":18126,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18127],"locationId":399},{"id":18127,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18128],"locationId":2},{"id":18128,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18129],"locationId":3},{"id":18129,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18130],"locationId":398},{"id":18130,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18131],"locationId":399},{"id":18131,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18132],"locationId":2},{"id":18132,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18133],"locationId":3},{"id":18133,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18134],"locationId":398},{"id":18134,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18135],"locationId":399},{"id":18135,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18136],"locationId":2},{"id":18136,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18137],"locationId":3},{"id":18137,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18138],"locationId":398},{"id":18138,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18139],"locationId":399},{"id":18139,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18140],"locationId":2},{"id":18140,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18141],"locationId":3},{"id":18141,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18142],"locationId":398},{"id":18142,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18143],"locationId":399},{"id":18143,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18144],"locationId":2},{"id":18144,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18145],"locationId":3},{"id":18145,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18146],"locationId":398},{"id":18146,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18147],"locationId":399},{"id":18147,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18148],"locationId":2},{"id":18148,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18149],"locationId":3},{"id":18149,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18150],"locationId":398},{"id":18150,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18151],"locationId":399},{"id":18151,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18152],"locationId":2},{"id":18152,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18153],"locationId":3},{"id":18153,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18154],"locationId":398},{"id":18154,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18155],"locationId":399},{"id":18155,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18156],"locationId":2},{"id":18156,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18157],"locationId":3},{"id":18157,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18158],"locationId":398},{"id":18158,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18159],"locationId":399},{"id":18159,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18160],"locationId":2},{"id":18160,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18161],"locationId":3},{"id":18161,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18162],"locationId":398},{"id":18162,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18163],"locationId":399},{"id":18163,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18164],"locationId":2},{"id":18164,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18165],"locationId":3},{"id":18165,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18166],"locationId":398},{"id":18166,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18167],"locationId":399},{"id":18167,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18168],"locationId":2},{"id":18168,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18169],"locationId":3},{"id":18169,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18170],"locationId":398},{"id":18170,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18171],"locationId":399},{"id":18171,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18172],"locationId":2},{"id":18172,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18173],"locationId":3},{"id":18173,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18174],"locationId":398},{"id":18174,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18175],"locationId":399},{"id":18175,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18176],"locationId":2},{"id":18176,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18177],"locationId":3},{"id":18177,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18178],"locationId":398},{"id":18178,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18179],"locationId":399},{"id":18179,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18180],"locationId":2},{"id":18180,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18181],"locationId":3},{"id":18181,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18182],"locationId":398},{"id":18182,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18183],"locationId":399},{"id":18183,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18184],"locationId":2},{"id":18184,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18185],"locationId":3},{"id":18185,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18186],"locationId":398},{"id":18186,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18187],"locationId":399},{"id":18187,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18188],"locationId":2},{"id":18188,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18189],"locationId":3},{"id":18189,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18190],"locationId":398},{"id":18190,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18191],"locationId":399},{"id":18191,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18192],"locationId":2},{"id":18192,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18193],"locationId":3},{"id":18193,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18194],"locationId":398},{"id":18194,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18195],"locationId":399},{"id":18195,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18196],"locationId":2},{"id":18196,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18197],"locationId":3},{"id":18197,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18198],"locationId":398},{"id":18198,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18199],"locationId":399},{"id":18199,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18200],"locationId":2},{"id":18200,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18201],"locationId":3},{"id":18201,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18202],"locationId":398},{"id":18202,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18203],"locationId":399},{"id":18203,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18204],"locationId":2},{"id":18204,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18205],"locationId":3},{"id":18205,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18206],"locationId":398},{"id":18206,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18207],"locationId":399},{"id":18207,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18208],"locationId":2},{"id":18208,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18209],"locationId":3},{"id":18209,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18210],"locationId":398},{"id":18210,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18211],"locationId":399},{"id":18211,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18212],"locationId":2},{"id":18212,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18213],"locationId":3},{"id":18213,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18214],"locationId":398},{"id":18214,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18215],"locationId":399},{"id":18215,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18216],"locationId":2},{"id":18216,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18217],"locationId":3},{"id":18217,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18218],"locationId":398},{"id":18218,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18219],"locationId":399},{"id":18219,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18220],"locationId":2},{"id":18220,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18221],"locationId":3},{"id":18221,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18222],"locationId":398},{"id":18222,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18223],"locationId":399},{"id":18223,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18224],"locationId":2},{"id":18224,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18225],"locationId":3},{"id":18225,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18226],"locationId":398},{"id":18226,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18227],"locationId":399},{"id":18227,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18228],"locationId":2},{"id":18228,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18229],"locationId":3},{"id":18229,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18230],"locationId":398},{"id":18230,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18231],"locationId":399},{"id":18231,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18232],"locationId":2},{"id":18232,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18233],"locationId":3},{"id":18233,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18234],"locationId":398},{"id":18234,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18235],"locationId":399},{"id":18235,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18236],"locationId":2},{"id":18236,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[18237],"locationId":5},{"id":18237,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18238],"locationId":6},{"id":18238,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[18239],"locationId":7},{"id":18239,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18240],"locationId":6},{"id":18240,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[18241],"locationId":8},{"id":18241,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[18242],"locationId":9},{"id":18242,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18243],"locationId":6},{"id":18243,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[18244],"locationId":10},{"id":18244,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":26676,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26677],"locationId":452},{"id":26677,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26678],"locationId":453},{"id":26678,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26679],"locationId":2},{"id":26679,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26680],"locationId":3},{"id":26680,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26681],"locationId":452},{"id":26681,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26682],"locationId":453},{"id":26682,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26683],"locationId":2},{"id":26683,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26684],"locationId":3},{"id":26684,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26685],"locationId":452},{"id":26685,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26686],"locationId":453},{"id":26686,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26687],"locationId":2},{"id":26687,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26688],"locationId":3},{"id":26688,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26689],"locationId":452},{"id":26689,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26690],"locationId":453},{"id":26690,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26691],"locationId":2},{"id":26691,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26692],"locationId":3},{"id":26692,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26693],"locationId":452},{"id":26693,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26694],"locationId":453},{"id":26694,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26695],"locationId":2},{"id":26695,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26696],"locationId":3},{"id":26696,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26697],"locationId":452},{"id":26697,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26698],"locationId":453},{"id":26698,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26699],"locationId":2},{"id":26699,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26700],"locationId":3},{"id":26700,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26701],"locationId":452},{"id":26701,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26702],"locationId":453},{"id":26702,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26703],"locationId":2},{"id":26703,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26704],"locationId":3},{"id":26704,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26705],"locationId":452},{"id":26705,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26706],"locationId":453},{"id":26706,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26707],"locationId":2},{"id":26707,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26708],"locationId":3},{"id":26708,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26709],"locationId":452},{"id":26709,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26710],"locationId":453},{"id":26710,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26711],"locationId":2},{"id":26711,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26712],"locationId":3},{"id":26712,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26713],"locationId":452},{"id":26713,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26714],"locationId":453},{"id":26714,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26715],"locationId":2},{"id":26715,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26716],"locationId":3},{"id":26716,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26717],"locationId":452},{"id":26717,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26718],"locationId":453},{"id":26718,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26719],"locationId":2},{"id":26719,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26720],"locationId":3},{"id":26720,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26721],"locationId":452},{"id":26721,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26722],"locationId":453},{"id":26722,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26723],"locationId":2},{"id":26723,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26724],"locationId":3},{"id":26724,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26725],"locationId":452},{"id":26725,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26726],"locationId":453},{"id":26726,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26727],"locationId":2},{"id":26727,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26728],"locationId":3},{"id":26728,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26729],"locationId":452},{"id":26729,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26730],"locationId":453},{"id":26730,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26731],"locationId":2},{"id":26731,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26732],"locationId":3},{"id":26732,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26733],"locationId":452},{"id":26733,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26734],"locationId":453},{"id":26734,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26735],"locationId":2},{"id":26735,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26736],"locationId":3},{"id":26736,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26737],"locationId":452},{"id":26737,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26738],"locationId":453},{"id":26738,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26739],"locationId":2},{"id":26739,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26740],"locationId":3},{"id":26740,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26741],"locationId":452},{"id":26741,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26742],"locationId":453},{"id":26742,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26743],"locationId":2},{"id":26743,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26744],"locationId":3},{"id":26744,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26745],"locationId":452},{"id":26745,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26746],"locationId":453},{"id":26746,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26747],"locationId":2},{"id":26747,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26748],"locationId":3},{"id":26748,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26749],"locationId":452},{"id":26749,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26750],"locationId":453},{"id":26750,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26751],"locationId":2},{"id":26751,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26752],"locationId":3},{"id":26752,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26753],"locationId":452},{"id":26753,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26754],"locationId":453},{"id":26754,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26755],"locationId":2},{"id":26755,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26756],"locationId":3},{"id":26756,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26757],"locationId":452},{"id":26757,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26758],"locationId":453},{"id":26758,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26759],"locationId":2},{"id":26759,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26760],"locationId":3},{"id":26760,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26761],"locationId":452},{"id":26761,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26762],"locationId":453},{"id":26762,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26763],"locationId":2},{"id":26763,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26764],"locationId":3},{"id":26764,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26765],"locationId":452},{"id":26765,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26766],"locationId":453},{"id":26766,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26767],"locationId":2},{"id":26767,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26768],"locationId":3},{"id":26768,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26769],"locationId":452},{"id":26769,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26770],"locationId":453},{"id":26770,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26771],"locationId":2},{"id":26771,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26772],"locationId":3},{"id":26772,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26773],"locationId":452},{"id":26773,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26774],"locationId":453},{"id":26774,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26775],"locationId":2},{"id":26775,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26776],"locationId":3},{"id":26776,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26777],"locationId":452},{"id":26777,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26778],"locationId":453},{"id":26778,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26779],"locationId":2},{"id":26779,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26780],"locationId":3},{"id":26780,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26781],"locationId":452},{"id":26781,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26782],"locationId":453},{"id":26782,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26783],"locationId":2},{"id":26783,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26784],"locationId":3},{"id":26784,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26785],"locationId":452},{"id":26785,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26786],"locationId":453},{"id":26786,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26787],"locationId":2},{"id":26787,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26788],"locationId":3},{"id":26788,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26789],"locationId":452},{"id":26789,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26790],"locationId":453},{"id":26790,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26791],"locationId":2},{"id":26791,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26792],"locationId":3},{"id":26792,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26793],"locationId":452},{"id":26793,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26794],"locationId":453},{"id":26794,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26795],"locationId":2},{"id":26795,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26796],"locationId":3},{"id":26796,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26797],"locationId":452},{"id":26797,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26798],"locationId":453},{"id":26798,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26799],"locationId":2},{"id":26799,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26800],"locationId":3},{"id":26800,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26801],"locationId":452},{"id":26801,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26802],"locationId":453},{"id":26802,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26803],"locationId":2},{"id":26803,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26804],"locationId":3},{"id":26804,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26805],"locationId":452},{"id":26805,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26806],"locationId":453},{"id":26806,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26807],"locationId":2},{"id":26807,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26808],"locationId":3},{"id":26808,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26809],"locationId":452},{"id":26809,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26810],"locationId":453},{"id":26810,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26811],"locationId":2},{"id":26811,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26812],"locationId":3},{"id":26812,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26813],"locationId":452},{"id":26813,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26814],"locationId":453},{"id":26814,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26815],"locationId":2},{"id":26815,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26816],"locationId":3},{"id":26816,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26817],"locationId":452},{"id":26817,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26818],"locationId":453},{"id":26818,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26819],"locationId":2},{"id":26819,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26820],"locationId":3},{"id":26820,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26821],"locationId":452},{"id":26821,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26822],"locationId":453},{"id":26822,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26823],"locationId":2},{"id":26823,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26824],"locationId":3},{"id":26824,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26825],"locationId":452},{"id":26825,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26826],"locationId":453},{"id":26826,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26827],"locationId":2},{"id":26827,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26828],"locationId":3},{"id":26828,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26829],"locationId":452},{"id":26829,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26830],"locationId":453},{"id":26830,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26831],"locationId":2},{"id":26831,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26832],"locationId":3},{"id":26832,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26833],"locationId":452},{"id":26833,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26834],"locationId":453},{"id":26834,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26835],"locationId":2},{"id":26835,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26836],"locationId":3},{"id":26836,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26837],"locationId":452},{"id":26837,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26838],"locationId":453},{"id":26838,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26839],"locationId":2},{"id":26839,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26840],"locationId":3},{"id":26840,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26841],"locationId":452},{"id":26841,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26842],"locationId":453},{"id":26842,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26843],"locationId":2},{"id":26843,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26844],"locationId":3},{"id":26844,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26845],"locationId":452},{"id":26845,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26846],"locationId":453},{"id":26846,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26847],"locationId":2},{"id":26847,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26848],"locationId":3},{"id":26848,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26849],"locationId":452},{"id":26849,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26850],"locationId":453},{"id":26850,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26851],"locationId":2},{"id":26851,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26852],"locationId":3},{"id":26852,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26853],"locationId":452},{"id":26853,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26854],"locationId":453},{"id":26854,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26855],"locationId":2},{"id":26855,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26856],"locationId":3},{"id":26856,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26857],"locationId":452},{"id":26857,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26858],"locationId":453},{"id":26858,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26859],"locationId":2},{"id":26859,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26860],"locationId":3},{"id":26860,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26861],"locationId":452},{"id":26861,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26862],"locationId":453},{"id":26862,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26863],"locationId":2},{"id":26863,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26864],"locationId":3},{"id":26864,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26865],"locationId":452},{"id":26865,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26866],"locationId":453},{"id":26866,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26867],"locationId":2},{"id":26867,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26868],"locationId":3},{"id":26868,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26869],"locationId":452},{"id":26869,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26870],"locationId":453},{"id":26870,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26871],"locationId":2},{"id":26871,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26872],"locationId":3},{"id":26872,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26873],"locationId":452},{"id":26873,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26874],"locationId":453},{"id":26874,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26875],"locationId":2},{"id":26875,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26876],"locationId":3},{"id":26876,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26877],"locationId":452},{"id":26877,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26878],"locationId":453},{"id":26878,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26879],"locationId":2},{"id":26879,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26880],"locationId":3},{"id":26880,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26881],"locationId":452},{"id":26881,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26882],"locationId":453},{"id":26882,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26883],"locationId":2},{"id":26883,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26884],"locationId":3},{"id":26884,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26885],"locationId":452},{"id":26885,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26886],"locationId":453},{"id":26886,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26887],"locationId":2},{"id":26887,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26888],"locationId":3},{"id":26888,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26889],"locationId":452},{"id":26889,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26890],"locationId":453},{"id":26890,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26891],"locationId":2},{"id":26891,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26892],"locationId":3},{"id":26892,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26893],"locationId":452},{"id":26893,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26894],"locationId":453},{"id":26894,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26895],"locationId":2},{"id":26895,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26896],"locationId":3},{"id":26896,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26897],"locationId":452},{"id":26897,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26898],"locationId":453},{"id":26898,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26899],"locationId":2},{"id":26899,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26900],"locationId":3},{"id":26900,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26901],"locationId":452},{"id":26901,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26902],"locationId":453},{"id":26902,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26903],"locationId":2},{"id":26903,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26904],"locationId":3},{"id":26904,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26905],"locationId":452},{"id":26905,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26906],"locationId":453},{"id":26906,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26907],"locationId":2},{"id":26907,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26908],"locationId":3},{"id":26908,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26909],"locationId":452},{"id":26909,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26910],"locationId":453},{"id":26910,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26911],"locationId":2},{"id":26911,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26912],"locationId":3},{"id":26912,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26913],"locationId":452},{"id":26913,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26914],"locationId":453},{"id":26914,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26915],"locationId":2},{"id":26915,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26916],"locationId":3},{"id":26916,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26917],"locationId":452},{"id":26917,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26918],"locationId":453},{"id":26918,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26919],"locationId":2},{"id":26919,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26920],"locationId":3},{"id":26920,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26921],"locationId":452},{"id":26921,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26922],"locationId":453},{"id":26922,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26923],"locationId":2},{"id":26923,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26924],"locationId":3},{"id":26924,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26925],"locationId":452},{"id":26925,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26926],"locationId":453},{"id":26926,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26927],"locationId":2},{"id":26927,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26928],"locationId":3},{"id":26928,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26929],"locationId":452},{"id":26929,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26930],"locationId":453},{"id":26930,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26931],"locationId":2},{"id":26931,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26932],"locationId":3},{"id":26932,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26933],"locationId":452},{"id":26933,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26934],"locationId":453},{"id":26934,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26935],"locationId":2},{"id":26935,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26936],"locationId":3},{"id":26936,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26937],"locationId":452},{"id":26937,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26938],"locationId":453},{"id":26938,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26939],"locationId":2},{"id":26939,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26940],"locationId":3},{"id":26940,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26941],"locationId":452},{"id":26941,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26942],"locationId":453},{"id":26942,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26943],"locationId":2},{"id":26943,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26944],"locationId":3},{"id":26944,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26945],"locationId":452},{"id":26945,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26946],"locationId":453},{"id":26946,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26947],"locationId":2},{"id":26947,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26948],"locationId":3},{"id":26948,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26949],"locationId":452},{"id":26949,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26950],"locationId":453},{"id":26950,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26951],"locationId":2},{"id":26951,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26952],"locationId":3},{"id":26952,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26953],"locationId":452},{"id":26953,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26954],"locationId":453},{"id":26954,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26955],"locationId":2},{"id":26955,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26956],"locationId":3},{"id":26956,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26957],"locationId":452},{"id":26957,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26958],"locationId":453},{"id":26958,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26959],"locationId":2},{"id":26959,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26960],"locationId":3},{"id":26960,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26961],"locationId":452},{"id":26961,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26962],"locationId":453},{"id":26962,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26963],"locationId":2},{"id":26963,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26964],"locationId":3},{"id":26964,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26965],"locationId":452},{"id":26965,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26966],"locationId":453},{"id":26966,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26967],"locationId":2},{"id":26967,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26968],"locationId":3},{"id":26968,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26969],"locationId":452},{"id":26969,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26970],"locationId":453},{"id":26970,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26971],"locationId":2},{"id":26971,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26972],"locationId":3},{"id":26972,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26973],"locationId":452},{"id":26973,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26974],"locationId":453},{"id":26974,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26975],"locationId":2},{"id":26975,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26976],"locationId":3},{"id":26976,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26977],"locationId":452},{"id":26977,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26978],"locationId":453},{"id":26978,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26979],"locationId":2},{"id":26979,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26980],"locationId":3},{"id":26980,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26981],"locationId":452},{"id":26981,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26982],"locationId":453},{"id":26982,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26983],"locationId":2},{"id":26983,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26984],"locationId":3},{"id":26984,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26985],"locationId":452},{"id":26985,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26986],"locationId":453},{"id":26986,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26987],"locationId":2},{"id":26987,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26988],"locationId":3},{"id":26988,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26989],"locationId":452},{"id":26989,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26990],"locationId":453},{"id":26990,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26991],"locationId":2},{"id":26991,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26992],"locationId":3},{"id":26992,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26993],"locationId":452},{"id":26993,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26994],"locationId":453},{"id":26994,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26995],"locationId":2},{"id":26995,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[26996],"locationId":3},{"id":26996,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[26997],"locationId":452},{"id":26997,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[26998],"locationId":453},{"id":26998,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[26999],"locationId":2},{"id":26999,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[27000],"locationId":5},{"id":27000,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27001],"locationId":6},{"id":27001,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[27002],"locationId":7},{"id":27002,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27003],"locationId":6},{"id":27003,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[27004],"locationId":8},{"id":27004,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[27005],"locationId":9},{"id":27005,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27006],"locationId":6},{"id":27006,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[27007],"locationId":10},{"id":27007,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[27008],"locationId":84},{"id":27008,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27009],"locationId":6},{"id":27009,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[27010],"locationId":85},{"id":27010,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[27011],"locationId":86},{"id":27011,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[27012],"locationId":87},{"id":27012,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[27013],"locationId":88},{"id":27013,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[27014],"locationId":74},{"id":27014,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[27015],"locationId":89},{"id":27015,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[27016],"locationId":90},{"id":27016,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[27017],"locationId":117},{"id":27017,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":1,"children":[27710],"positionTicks":[{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":27710,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[27711],"locationId":123},{"id":27711,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[27712],"locationId":29},{"id":27712,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":18245,"callFrame":{"functionName":"run","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":2092,"columnNumber":16},"hitCount":0,"children":[18246],"locationId":720},{"id":18246,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[18247],"locationId":721},{"id":18247,"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"hitCount":0,"children":[18248],"locationId":721},{"id":18248,"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"hitCount":0,"children":[18249,25651],"locationId":722},{"id":18249,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18250],"locationId":398},{"id":18250,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18251],"locationId":399},{"id":18251,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18252],"locationId":2},{"id":18252,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18253],"locationId":3},{"id":18253,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18254],"locationId":398},{"id":18254,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18255],"locationId":399},{"id":18255,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18256],"locationId":2},{"id":18256,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18257],"locationId":3},{"id":18257,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18258],"locationId":398},{"id":18258,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18259],"locationId":399},{"id":18259,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18260],"locationId":2},{"id":18260,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18261],"locationId":3},{"id":18261,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18262],"locationId":398},{"id":18262,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18263],"locationId":399},{"id":18263,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18264],"locationId":2},{"id":18264,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18265],"locationId":3},{"id":18265,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18266],"locationId":398},{"id":18266,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18267],"locationId":399},{"id":18267,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18268],"locationId":2},{"id":18268,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18269],"locationId":3},{"id":18269,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18270],"locationId":398},{"id":18270,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18271],"locationId":399},{"id":18271,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18272],"locationId":2},{"id":18272,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18273],"locationId":3},{"id":18273,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18274],"locationId":398},{"id":18274,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18275],"locationId":399},{"id":18275,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18276],"locationId":2},{"id":18276,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18277],"locationId":3},{"id":18277,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18278],"locationId":398},{"id":18278,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18279],"locationId":399},{"id":18279,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18280],"locationId":2},{"id":18280,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18281],"locationId":3},{"id":18281,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18282],"locationId":398},{"id":18282,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18283],"locationId":399},{"id":18283,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18284],"locationId":2},{"id":18284,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18285],"locationId":3},{"id":18285,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18286],"locationId":398},{"id":18286,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18287],"locationId":399},{"id":18287,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18288],"locationId":2},{"id":18288,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18289],"locationId":3},{"id":18289,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18290],"locationId":398},{"id":18290,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18291],"locationId":399},{"id":18291,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18292],"locationId":2},{"id":18292,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18293],"locationId":3},{"id":18293,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18294],"locationId":398},{"id":18294,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18295],"locationId":399},{"id":18295,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18296],"locationId":2},{"id":18296,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18297],"locationId":3},{"id":18297,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18298],"locationId":398},{"id":18298,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18299],"locationId":399},{"id":18299,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18300],"locationId":2},{"id":18300,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18301],"locationId":3},{"id":18301,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18302],"locationId":398},{"id":18302,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18303],"locationId":399},{"id":18303,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18304],"locationId":2},{"id":18304,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18305],"locationId":3},{"id":18305,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18306],"locationId":398},{"id":18306,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18307],"locationId":399},{"id":18307,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18308],"locationId":2},{"id":18308,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18309],"locationId":3},{"id":18309,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18310],"locationId":398},{"id":18310,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18311],"locationId":399},{"id":18311,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18312],"locationId":2},{"id":18312,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18313],"locationId":3},{"id":18313,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18314],"locationId":398},{"id":18314,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18315],"locationId":399},{"id":18315,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18316],"locationId":2},{"id":18316,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18317],"locationId":3},{"id":18317,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18318],"locationId":398},{"id":18318,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18319],"locationId":399},{"id":18319,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18320],"locationId":2},{"id":18320,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18321],"locationId":3},{"id":18321,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18322],"locationId":398},{"id":18322,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18323],"locationId":399},{"id":18323,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18324],"locationId":2},{"id":18324,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18325],"locationId":3},{"id":18325,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18326],"locationId":398},{"id":18326,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18327],"locationId":399},{"id":18327,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18328],"locationId":2},{"id":18328,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18329],"locationId":3},{"id":18329,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18330],"locationId":398},{"id":18330,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18331],"locationId":399},{"id":18331,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18332],"locationId":2},{"id":18332,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18333],"locationId":3},{"id":18333,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18334],"locationId":398},{"id":18334,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18335],"locationId":399},{"id":18335,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18336],"locationId":2},{"id":18336,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18337],"locationId":3},{"id":18337,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18338],"locationId":398},{"id":18338,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18339],"locationId":399},{"id":18339,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18340],"locationId":2},{"id":18340,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18341],"locationId":3},{"id":18341,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18342],"locationId":398},{"id":18342,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18343],"locationId":399},{"id":18343,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18344],"locationId":2},{"id":18344,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18345],"locationId":3},{"id":18345,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18346],"locationId":398},{"id":18346,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18347],"locationId":399},{"id":18347,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18348],"locationId":2},{"id":18348,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18349],"locationId":3},{"id":18349,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18350],"locationId":398},{"id":18350,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18351],"locationId":399},{"id":18351,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18352],"locationId":2},{"id":18352,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18353],"locationId":3},{"id":18353,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18354],"locationId":398},{"id":18354,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18355],"locationId":399},{"id":18355,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18356],"locationId":2},{"id":18356,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18357],"locationId":3},{"id":18357,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18358],"locationId":398},{"id":18358,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18359],"locationId":399},{"id":18359,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18360],"locationId":2},{"id":18360,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18361],"locationId":3},{"id":18361,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18362],"locationId":398},{"id":18362,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18363],"locationId":399},{"id":18363,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18364],"locationId":2},{"id":18364,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18365],"locationId":3},{"id":18365,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18366],"locationId":398},{"id":18366,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18367],"locationId":399},{"id":18367,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18368],"locationId":2},{"id":18368,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18369],"locationId":3},{"id":18369,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18370],"locationId":398},{"id":18370,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18371],"locationId":399},{"id":18371,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18372],"locationId":2},{"id":18372,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18373],"locationId":3},{"id":18373,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18374],"locationId":398},{"id":18374,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18375],"locationId":399},{"id":18375,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18376],"locationId":2},{"id":18376,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18377],"locationId":3},{"id":18377,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18378],"locationId":398},{"id":18378,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18379],"locationId":399},{"id":18379,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18380],"locationId":2},{"id":18380,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18381],"locationId":3},{"id":18381,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18382],"locationId":398},{"id":18382,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18383],"locationId":399},{"id":18383,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18384],"locationId":2},{"id":18384,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18385],"locationId":3},{"id":18385,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18386],"locationId":398},{"id":18386,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18387],"locationId":399},{"id":18387,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18388],"locationId":2},{"id":18388,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18389],"locationId":3},{"id":18389,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18390],"locationId":398},{"id":18390,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18391],"locationId":399},{"id":18391,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18392],"locationId":2},{"id":18392,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18393],"locationId":3},{"id":18393,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18394],"locationId":398},{"id":18394,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18395],"locationId":399},{"id":18395,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18396],"locationId":2},{"id":18396,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18397],"locationId":3},{"id":18397,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18398],"locationId":398},{"id":18398,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18399],"locationId":399},{"id":18399,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18400],"locationId":2},{"id":18400,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18401],"locationId":3},{"id":18401,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18402],"locationId":398},{"id":18402,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18403],"locationId":399},{"id":18403,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18404],"locationId":2},{"id":18404,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18405],"locationId":3},{"id":18405,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18406],"locationId":398},{"id":18406,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18407],"locationId":399},{"id":18407,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18408],"locationId":2},{"id":18408,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18409],"locationId":3},{"id":18409,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18410],"locationId":398},{"id":18410,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18411],"locationId":399},{"id":18411,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18412],"locationId":2},{"id":18412,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18413],"locationId":3},{"id":18413,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18414],"locationId":398},{"id":18414,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18415],"locationId":399},{"id":18415,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18416],"locationId":2},{"id":18416,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18417],"locationId":3},{"id":18417,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18418],"locationId":398},{"id":18418,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18419],"locationId":399},{"id":18419,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18420],"locationId":2},{"id":18420,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18421],"locationId":3},{"id":18421,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18422],"locationId":398},{"id":18422,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18423],"locationId":399},{"id":18423,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18424],"locationId":2},{"id":18424,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18425],"locationId":3},{"id":18425,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18426],"locationId":398},{"id":18426,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18427],"locationId":399},{"id":18427,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18428],"locationId":2},{"id":18428,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18429],"locationId":3},{"id":18429,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18430],"locationId":398},{"id":18430,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18431],"locationId":399},{"id":18431,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18432],"locationId":2},{"id":18432,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18433],"locationId":3},{"id":18433,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18434],"locationId":398},{"id":18434,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18435],"locationId":399},{"id":18435,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18436],"locationId":2},{"id":18436,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18437],"locationId":3},{"id":18437,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18438],"locationId":398},{"id":18438,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18439],"locationId":399},{"id":18439,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18440],"locationId":2},{"id":18440,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18441],"locationId":3},{"id":18441,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18442],"locationId":398},{"id":18442,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18443],"locationId":399},{"id":18443,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18444],"locationId":2},{"id":18444,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18445],"locationId":3},{"id":18445,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18446],"locationId":398},{"id":18446,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18447],"locationId":399},{"id":18447,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18448],"locationId":2},{"id":18448,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18449],"locationId":3},{"id":18449,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18450],"locationId":398},{"id":18450,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18451],"locationId":399},{"id":18451,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18452],"locationId":2},{"id":18452,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18453],"locationId":3},{"id":18453,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18454],"locationId":398},{"id":18454,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18455],"locationId":399},{"id":18455,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18456],"locationId":2},{"id":18456,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18457],"locationId":3},{"id":18457,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18458],"locationId":398},{"id":18458,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18459],"locationId":399},{"id":18459,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18460],"locationId":2},{"id":18460,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18461],"locationId":3},{"id":18461,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18462],"locationId":398},{"id":18462,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18463],"locationId":399},{"id":18463,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18464],"locationId":2},{"id":18464,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18465],"locationId":3},{"id":18465,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18466],"locationId":398},{"id":18466,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18467],"locationId":399},{"id":18467,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18468],"locationId":2},{"id":18468,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18469],"locationId":3},{"id":18469,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18470],"locationId":398},{"id":18470,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18471],"locationId":399},{"id":18471,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18472],"locationId":2},{"id":18472,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18473],"locationId":3},{"id":18473,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18474],"locationId":398},{"id":18474,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18475],"locationId":399},{"id":18475,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18476],"locationId":2},{"id":18476,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18477],"locationId":3},{"id":18477,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18478],"locationId":398},{"id":18478,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18479],"locationId":399},{"id":18479,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18480],"locationId":2},{"id":18480,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18481],"locationId":3},{"id":18481,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18482],"locationId":398},{"id":18482,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18483],"locationId":399},{"id":18483,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18484],"locationId":2},{"id":18484,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18485],"locationId":3},{"id":18485,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18486],"locationId":398},{"id":18486,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18487],"locationId":399},{"id":18487,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18488],"locationId":2},{"id":18488,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18489],"locationId":3},{"id":18489,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18490],"locationId":398},{"id":18490,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18491],"locationId":399},{"id":18491,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18492],"locationId":2},{"id":18492,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[18493],"locationId":5},{"id":18493,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18494],"locationId":6},{"id":18494,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[18495],"locationId":7},{"id":18495,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18496],"locationId":6},{"id":18496,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[18497],"locationId":8},{"id":18497,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[18498],"locationId":9},{"id":18498,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18499],"locationId":6},{"id":18499,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[18500],"locationId":10},{"id":18500,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[18501],"locationId":11},{"id":18501,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[18502],"locationId":12},{"id":18502,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[18503],"locationId":13},{"id":18503,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[18504],"locationId":14},{"id":18504,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39}],"locationId":36},{"id":25651,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25652],"locationId":452},{"id":25652,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25653],"locationId":453},{"id":25653,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25654],"locationId":2},{"id":25654,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25655],"locationId":3},{"id":25655,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25656],"locationId":452},{"id":25656,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25657],"locationId":453},{"id":25657,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25658],"locationId":2},{"id":25658,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25659],"locationId":3},{"id":25659,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25660],"locationId":452},{"id":25660,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25661],"locationId":453},{"id":25661,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25662],"locationId":2},{"id":25662,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25663],"locationId":3},{"id":25663,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25664],"locationId":452},{"id":25664,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25665],"locationId":453},{"id":25665,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25666],"locationId":2},{"id":25666,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25667],"locationId":3},{"id":25667,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25668],"locationId":452},{"id":25668,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25669],"locationId":453},{"id":25669,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25670],"locationId":2},{"id":25670,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25671],"locationId":3},{"id":25671,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25672],"locationId":452},{"id":25672,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25673],"locationId":453},{"id":25673,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25674],"locationId":2},{"id":25674,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25675],"locationId":3},{"id":25675,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25676],"locationId":452},{"id":25676,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25677],"locationId":453},{"id":25677,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25678],"locationId":2},{"id":25678,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25679],"locationId":3},{"id":25679,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25680],"locationId":452},{"id":25680,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25681],"locationId":453},{"id":25681,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25682],"locationId":2},{"id":25682,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25683],"locationId":3},{"id":25683,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25684],"locationId":452},{"id":25684,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25685],"locationId":453},{"id":25685,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25686],"locationId":2},{"id":25686,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25687],"locationId":3},{"id":25687,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25688],"locationId":452},{"id":25688,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25689],"locationId":453},{"id":25689,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25690],"locationId":2},{"id":25690,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25691],"locationId":3},{"id":25691,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25692],"locationId":452},{"id":25692,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25693],"locationId":453},{"id":25693,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25694],"locationId":2},{"id":25694,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25695],"locationId":3},{"id":25695,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25696],"locationId":452},{"id":25696,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25697],"locationId":453},{"id":25697,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25698],"locationId":2},{"id":25698,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25699],"locationId":3},{"id":25699,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25700],"locationId":452},{"id":25700,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25701],"locationId":453},{"id":25701,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25702],"locationId":2},{"id":25702,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25703],"locationId":3},{"id":25703,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25704],"locationId":452},{"id":25704,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25705],"locationId":453},{"id":25705,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25706],"locationId":2},{"id":25706,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25707],"locationId":3},{"id":25707,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25708],"locationId":452},{"id":25708,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25709],"locationId":453},{"id":25709,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25710],"locationId":2},{"id":25710,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25711],"locationId":3},{"id":25711,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25712],"locationId":452},{"id":25712,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25713],"locationId":453},{"id":25713,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25714],"locationId":2},{"id":25714,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25715],"locationId":3},{"id":25715,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25716],"locationId":452},{"id":25716,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25717],"locationId":453},{"id":25717,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25718],"locationId":2},{"id":25718,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25719],"locationId":3},{"id":25719,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25720],"locationId":452},{"id":25720,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25721],"locationId":453},{"id":25721,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25722],"locationId":2},{"id":25722,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25723],"locationId":3},{"id":25723,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25724],"locationId":452},{"id":25724,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25725],"locationId":453},{"id":25725,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25726],"locationId":2},{"id":25726,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25727],"locationId":3},{"id":25727,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25728],"locationId":452},{"id":25728,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25729],"locationId":453},{"id":25729,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25730],"locationId":2},{"id":25730,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25731],"locationId":3},{"id":25731,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25732],"locationId":452},{"id":25732,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25733],"locationId":453},{"id":25733,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25734],"locationId":2},{"id":25734,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25735],"locationId":3},{"id":25735,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25736],"locationId":452},{"id":25736,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25737],"locationId":453},{"id":25737,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25738],"locationId":2},{"id":25738,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25739],"locationId":3},{"id":25739,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25740],"locationId":452},{"id":25740,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25741],"locationId":453},{"id":25741,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25742],"locationId":2},{"id":25742,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25743],"locationId":3},{"id":25743,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25744],"locationId":452},{"id":25744,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25745],"locationId":453},{"id":25745,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25746],"locationId":2},{"id":25746,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25747],"locationId":3},{"id":25747,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25748],"locationId":452},{"id":25748,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25749],"locationId":453},{"id":25749,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25750],"locationId":2},{"id":25750,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25751],"locationId":3},{"id":25751,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25752],"locationId":452},{"id":25752,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25753],"locationId":453},{"id":25753,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25754],"locationId":2},{"id":25754,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25755],"locationId":3},{"id":25755,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25756],"locationId":452},{"id":25756,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25757],"locationId":453},{"id":25757,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25758],"locationId":2},{"id":25758,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25759],"locationId":3},{"id":25759,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25760],"locationId":452},{"id":25760,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25761],"locationId":453},{"id":25761,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25762],"locationId":2},{"id":25762,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25763],"locationId":3},{"id":25763,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25764],"locationId":452},{"id":25764,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25765],"locationId":453},{"id":25765,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25766],"locationId":2},{"id":25766,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25767],"locationId":3},{"id":25767,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25768],"locationId":452},{"id":25768,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25769],"locationId":453},{"id":25769,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25770],"locationId":2},{"id":25770,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25771],"locationId":3},{"id":25771,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25772],"locationId":452},{"id":25772,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25773],"locationId":453},{"id":25773,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25774],"locationId":2},{"id":25774,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25775],"locationId":3},{"id":25775,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25776],"locationId":452},{"id":25776,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25777],"locationId":453},{"id":25777,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25778],"locationId":2},{"id":25778,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25779],"locationId":3},{"id":25779,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25780],"locationId":452},{"id":25780,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25781],"locationId":453},{"id":25781,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25782],"locationId":2},{"id":25782,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25783],"locationId":3},{"id":25783,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25784],"locationId":452},{"id":25784,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25785],"locationId":453},{"id":25785,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25786],"locationId":2},{"id":25786,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25787],"locationId":3},{"id":25787,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25788],"locationId":452},{"id":25788,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25789],"locationId":453},{"id":25789,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25790],"locationId":2},{"id":25790,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25791],"locationId":3},{"id":25791,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25792],"locationId":452},{"id":25792,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25793],"locationId":453},{"id":25793,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25794],"locationId":2},{"id":25794,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25795],"locationId":3},{"id":25795,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25796],"locationId":452},{"id":25796,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25797],"locationId":453},{"id":25797,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25798],"locationId":2},{"id":25798,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25799],"locationId":3},{"id":25799,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25800],"locationId":452},{"id":25800,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25801],"locationId":453},{"id":25801,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25802],"locationId":2},{"id":25802,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25803],"locationId":3},{"id":25803,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25804],"locationId":452},{"id":25804,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25805],"locationId":453},{"id":25805,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25806],"locationId":2},{"id":25806,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25807],"locationId":3},{"id":25807,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25808],"locationId":452},{"id":25808,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25809],"locationId":453},{"id":25809,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25810],"locationId":2},{"id":25810,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25811],"locationId":3},{"id":25811,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25812],"locationId":452},{"id":25812,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25813],"locationId":453},{"id":25813,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25814],"locationId":2},{"id":25814,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25815],"locationId":3},{"id":25815,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25816],"locationId":452},{"id":25816,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25817],"locationId":453},{"id":25817,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25818],"locationId":2},{"id":25818,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25819],"locationId":3},{"id":25819,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25820],"locationId":452},{"id":25820,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25821],"locationId":453},{"id":25821,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25822],"locationId":2},{"id":25822,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25823],"locationId":3},{"id":25823,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25824],"locationId":452},{"id":25824,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25825],"locationId":453},{"id":25825,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25826],"locationId":2},{"id":25826,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25827],"locationId":3},{"id":25827,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25828],"locationId":452},{"id":25828,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25829],"locationId":453},{"id":25829,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25830],"locationId":2},{"id":25830,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25831],"locationId":3},{"id":25831,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25832],"locationId":452},{"id":25832,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25833],"locationId":453},{"id":25833,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25834],"locationId":2},{"id":25834,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25835],"locationId":3},{"id":25835,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25836],"locationId":452},{"id":25836,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25837],"locationId":453},{"id":25837,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25838],"locationId":2},{"id":25838,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25839],"locationId":3},{"id":25839,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25840],"locationId":452},{"id":25840,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25841],"locationId":453},{"id":25841,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25842],"locationId":2},{"id":25842,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25843],"locationId":3},{"id":25843,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25844],"locationId":452},{"id":25844,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25845],"locationId":453},{"id":25845,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25846],"locationId":2},{"id":25846,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25847],"locationId":3},{"id":25847,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25848],"locationId":452},{"id":25848,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25849],"locationId":453},{"id":25849,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25850],"locationId":2},{"id":25850,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25851],"locationId":3},{"id":25851,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25852],"locationId":452},{"id":25852,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25853],"locationId":453},{"id":25853,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25854],"locationId":2},{"id":25854,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25855],"locationId":3},{"id":25855,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25856],"locationId":452},{"id":25856,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25857],"locationId":453},{"id":25857,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25858],"locationId":2},{"id":25858,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25859],"locationId":3},{"id":25859,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25860],"locationId":452},{"id":25860,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25861],"locationId":453},{"id":25861,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25862],"locationId":2},{"id":25862,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25863],"locationId":3},{"id":25863,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25864],"locationId":452},{"id":25864,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25865],"locationId":453},{"id":25865,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25866],"locationId":2},{"id":25866,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25867],"locationId":3},{"id":25867,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25868],"locationId":452},{"id":25868,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25869],"locationId":453},{"id":25869,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25870],"locationId":2},{"id":25870,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25871],"locationId":3},{"id":25871,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25872],"locationId":452},{"id":25872,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25873],"locationId":453},{"id":25873,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25874],"locationId":2},{"id":25874,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25875],"locationId":3},{"id":25875,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25876],"locationId":452},{"id":25876,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25877],"locationId":453},{"id":25877,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25878],"locationId":2},{"id":25878,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25879],"locationId":3},{"id":25879,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25880],"locationId":452},{"id":25880,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25881],"locationId":453},{"id":25881,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25882],"locationId":2},{"id":25882,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25883],"locationId":3},{"id":25883,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25884],"locationId":452},{"id":25884,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25885],"locationId":453},{"id":25885,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25886],"locationId":2},{"id":25886,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25887],"locationId":3},{"id":25887,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25888],"locationId":452},{"id":25888,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25889],"locationId":453},{"id":25889,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25890],"locationId":2},{"id":25890,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25891],"locationId":3},{"id":25891,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25892],"locationId":452},{"id":25892,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25893],"locationId":453},{"id":25893,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25894],"locationId":2},{"id":25894,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25895],"locationId":3},{"id":25895,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25896],"locationId":452},{"id":25896,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25897],"locationId":453},{"id":25897,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25898],"locationId":2},{"id":25898,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25899],"locationId":3},{"id":25899,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25900],"locationId":452},{"id":25900,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25901],"locationId":453},{"id":25901,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25902],"locationId":2},{"id":25902,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25903],"locationId":3},{"id":25903,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25904],"locationId":452},{"id":25904,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25905],"locationId":453},{"id":25905,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25906],"locationId":2},{"id":25906,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25907],"locationId":3},{"id":25907,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25908],"locationId":452},{"id":25908,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25909],"locationId":453},{"id":25909,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25910],"locationId":2},{"id":25910,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25911],"locationId":3},{"id":25911,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25912],"locationId":452},{"id":25912,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25913],"locationId":453},{"id":25913,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25914],"locationId":2},{"id":25914,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25915],"locationId":3},{"id":25915,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25916],"locationId":452},{"id":25916,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25917],"locationId":453},{"id":25917,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25918],"locationId":2},{"id":25918,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25919],"locationId":3},{"id":25919,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25920],"locationId":452},{"id":25920,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25921],"locationId":453},{"id":25921,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25922],"locationId":2},{"id":25922,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25923],"locationId":3},{"id":25923,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25924],"locationId":452},{"id":25924,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25925],"locationId":453},{"id":25925,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25926],"locationId":2},{"id":25926,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25927],"locationId":3},{"id":25927,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25928],"locationId":452},{"id":25928,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25929],"locationId":453},{"id":25929,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25930],"locationId":2},{"id":25930,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25931],"locationId":3},{"id":25931,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25932],"locationId":452},{"id":25932,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25933],"locationId":453},{"id":25933,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25934],"locationId":2},{"id":25934,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25935],"locationId":3},{"id":25935,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25936],"locationId":452},{"id":25936,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25937],"locationId":453},{"id":25937,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25938],"locationId":2},{"id":25938,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25939],"locationId":3},{"id":25939,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25940],"locationId":452},{"id":25940,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25941],"locationId":453},{"id":25941,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25942],"locationId":2},{"id":25942,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25943],"locationId":3},{"id":25943,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25944],"locationId":452},{"id":25944,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25945],"locationId":453},{"id":25945,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25946],"locationId":2},{"id":25946,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25947],"locationId":3},{"id":25947,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25948],"locationId":452},{"id":25948,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25949],"locationId":453},{"id":25949,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25950],"locationId":2},{"id":25950,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25951],"locationId":3},{"id":25951,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25952],"locationId":452},{"id":25952,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25953],"locationId":453},{"id":25953,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25954],"locationId":2},{"id":25954,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25955],"locationId":3},{"id":25955,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25956],"locationId":452},{"id":25956,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25957],"locationId":453},{"id":25957,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25958],"locationId":2},{"id":25958,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25959],"locationId":3},{"id":25959,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25960],"locationId":452},{"id":25960,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25961],"locationId":453},{"id":25961,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25962],"locationId":2},{"id":25962,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25963],"locationId":3},{"id":25963,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25964],"locationId":452},{"id":25964,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25965],"locationId":453},{"id":25965,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25966],"locationId":2},{"id":25966,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25967],"locationId":3},{"id":25967,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25968],"locationId":452},{"id":25968,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25969],"locationId":453},{"id":25969,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25970],"locationId":2},{"id":25970,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[25971],"locationId":3},{"id":25971,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[25972],"locationId":452},{"id":25972,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[25973],"locationId":453},{"id":25973,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[25974],"locationId":2},{"id":25974,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[25975],"locationId":5},{"id":25975,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25976],"locationId":6},{"id":25976,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[25977],"locationId":7},{"id":25977,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25978],"locationId":6},{"id":25978,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[25979],"locationId":8},{"id":25979,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[25980],"locationId":9},{"id":25980,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25981],"locationId":6},{"id":25981,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[25982,25983],"locationId":10},{"id":25982,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":25983,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[25984],"locationId":84},{"id":25984,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[25985],"locationId":6},{"id":25985,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[25986],"locationId":85},{"id":25986,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[25987],"locationId":86},{"id":25987,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[25988],"locationId":87},{"id":25988,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[25989],"locationId":88},{"id":25989,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[25990],"locationId":74},{"id":25990,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[25991],"locationId":89},{"id":25991,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[25992,27706],"locationId":90},{"id":25992,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":27706,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":18521,"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"hitCount":0,"children":[18522,27713],"locationId":722},{"id":18522,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18523],"locationId":398},{"id":18523,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18524],"locationId":399},{"id":18524,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18525],"locationId":2},{"id":18525,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18526],"locationId":3},{"id":18526,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18527],"locationId":398},{"id":18527,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18528],"locationId":399},{"id":18528,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18529],"locationId":2},{"id":18529,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18530],"locationId":3},{"id":18530,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18531],"locationId":398},{"id":18531,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18532],"locationId":399},{"id":18532,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18533],"locationId":2},{"id":18533,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18534],"locationId":3},{"id":18534,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18535],"locationId":398},{"id":18535,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18536],"locationId":399},{"id":18536,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18537],"locationId":2},{"id":18537,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18538],"locationId":3},{"id":18538,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18539],"locationId":398},{"id":18539,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18540],"locationId":399},{"id":18540,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18541],"locationId":2},{"id":18541,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18542],"locationId":3},{"id":18542,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18543],"locationId":398},{"id":18543,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18544],"locationId":399},{"id":18544,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18545],"locationId":2},{"id":18545,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18546],"locationId":3},{"id":18546,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18547],"locationId":398},{"id":18547,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18548],"locationId":399},{"id":18548,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18549],"locationId":2},{"id":18549,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18550],"locationId":3},{"id":18550,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18551],"locationId":398},{"id":18551,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18552],"locationId":399},{"id":18552,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18553],"locationId":2},{"id":18553,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18554],"locationId":3},{"id":18554,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18555],"locationId":398},{"id":18555,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18556],"locationId":399},{"id":18556,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18557],"locationId":2},{"id":18557,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18558],"locationId":3},{"id":18558,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18559],"locationId":398},{"id":18559,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18560],"locationId":399},{"id":18560,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18561],"locationId":2},{"id":18561,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18562],"locationId":3},{"id":18562,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18563],"locationId":398},{"id":18563,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18564],"locationId":399},{"id":18564,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18565],"locationId":2},{"id":18565,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18566],"locationId":3},{"id":18566,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18567],"locationId":398},{"id":18567,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18568],"locationId":399},{"id":18568,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18569],"locationId":2},{"id":18569,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18570],"locationId":3},{"id":18570,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18571],"locationId":398},{"id":18571,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18572],"locationId":399},{"id":18572,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18573],"locationId":2},{"id":18573,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18574],"locationId":3},{"id":18574,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18575],"locationId":398},{"id":18575,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18576],"locationId":399},{"id":18576,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18577],"locationId":2},{"id":18577,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18578],"locationId":3},{"id":18578,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18579],"locationId":398},{"id":18579,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18580],"locationId":399},{"id":18580,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18581],"locationId":2},{"id":18581,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18582],"locationId":3},{"id":18582,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18583],"locationId":398},{"id":18583,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18584],"locationId":399},{"id":18584,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18585],"locationId":2},{"id":18585,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18586],"locationId":3},{"id":18586,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18587],"locationId":398},{"id":18587,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18588],"locationId":399},{"id":18588,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18589],"locationId":2},{"id":18589,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18590],"locationId":3},{"id":18590,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18591],"locationId":398},{"id":18591,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18592],"locationId":399},{"id":18592,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18593],"locationId":2},{"id":18593,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18594],"locationId":3},{"id":18594,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18595],"locationId":398},{"id":18595,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18596],"locationId":399},{"id":18596,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18597],"locationId":2},{"id":18597,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18598],"locationId":3},{"id":18598,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18599],"locationId":398},{"id":18599,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18600],"locationId":399},{"id":18600,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18601],"locationId":2},{"id":18601,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18602],"locationId":3},{"id":18602,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18603],"locationId":398},{"id":18603,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18604],"locationId":399},{"id":18604,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18605],"locationId":2},{"id":18605,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18606],"locationId":3},{"id":18606,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18607],"locationId":398},{"id":18607,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18608],"locationId":399},{"id":18608,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18609],"locationId":2},{"id":18609,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18610],"locationId":3},{"id":18610,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18611],"locationId":398},{"id":18611,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18612],"locationId":399},{"id":18612,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18613],"locationId":2},{"id":18613,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18614],"locationId":3},{"id":18614,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18615],"locationId":398},{"id":18615,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18616],"locationId":399},{"id":18616,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18617],"locationId":2},{"id":18617,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18618],"locationId":3},{"id":18618,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18619],"locationId":398},{"id":18619,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18620],"locationId":399},{"id":18620,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18621],"locationId":2},{"id":18621,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18622],"locationId":3},{"id":18622,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18623],"locationId":398},{"id":18623,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18624],"locationId":399},{"id":18624,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18625],"locationId":2},{"id":18625,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18626],"locationId":3},{"id":18626,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18627],"locationId":398},{"id":18627,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18628],"locationId":399},{"id":18628,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18629],"locationId":2},{"id":18629,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18630],"locationId":3},{"id":18630,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18631],"locationId":398},{"id":18631,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18632],"locationId":399},{"id":18632,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18633],"locationId":2},{"id":18633,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18634],"locationId":3},{"id":18634,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18635],"locationId":398},{"id":18635,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18636],"locationId":399},{"id":18636,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18637],"locationId":2},{"id":18637,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18638],"locationId":3},{"id":18638,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18639],"locationId":398},{"id":18639,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18640],"locationId":399},{"id":18640,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18641],"locationId":2},{"id":18641,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18642],"locationId":3},{"id":18642,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18643],"locationId":398},{"id":18643,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18644],"locationId":399},{"id":18644,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18645],"locationId":2},{"id":18645,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18646],"locationId":3},{"id":18646,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18647],"locationId":398},{"id":18647,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18648],"locationId":399},{"id":18648,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18649],"locationId":2},{"id":18649,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18650],"locationId":3},{"id":18650,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18651],"locationId":398},{"id":18651,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18652],"locationId":399},{"id":18652,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18653],"locationId":2},{"id":18653,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18654],"locationId":3},{"id":18654,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18655],"locationId":398},{"id":18655,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18656],"locationId":399},{"id":18656,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18657],"locationId":2},{"id":18657,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18658],"locationId":3},{"id":18658,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18659],"locationId":398},{"id":18659,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18660],"locationId":399},{"id":18660,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18661],"locationId":2},{"id":18661,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18662],"locationId":3},{"id":18662,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18663],"locationId":398},{"id":18663,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18664],"locationId":399},{"id":18664,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18665],"locationId":2},{"id":18665,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18666],"locationId":3},{"id":18666,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18667],"locationId":398},{"id":18667,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18668],"locationId":399},{"id":18668,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18669],"locationId":2},{"id":18669,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18670],"locationId":3},{"id":18670,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18671],"locationId":398},{"id":18671,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18672],"locationId":399},{"id":18672,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18673],"locationId":2},{"id":18673,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18674],"locationId":3},{"id":18674,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18675],"locationId":398},{"id":18675,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18676],"locationId":399},{"id":18676,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18677],"locationId":2},{"id":18677,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18678],"locationId":3},{"id":18678,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18679],"locationId":398},{"id":18679,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18680],"locationId":399},{"id":18680,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18681],"locationId":2},{"id":18681,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18682],"locationId":3},{"id":18682,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18683],"locationId":398},{"id":18683,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18684],"locationId":399},{"id":18684,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18685],"locationId":2},{"id":18685,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18686],"locationId":3},{"id":18686,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18687],"locationId":398},{"id":18687,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18688],"locationId":399},{"id":18688,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18689],"locationId":2},{"id":18689,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18690],"locationId":3},{"id":18690,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18691],"locationId":398},{"id":18691,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18692],"locationId":399},{"id":18692,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18693],"locationId":2},{"id":18693,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18694],"locationId":3},{"id":18694,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18695],"locationId":398},{"id":18695,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18696],"locationId":399},{"id":18696,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18697],"locationId":2},{"id":18697,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18698],"locationId":3},{"id":18698,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18699],"locationId":398},{"id":18699,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18700],"locationId":399},{"id":18700,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18701],"locationId":2},{"id":18701,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18702],"locationId":3},{"id":18702,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18703],"locationId":398},{"id":18703,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18704],"locationId":399},{"id":18704,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18705],"locationId":2},{"id":18705,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18706],"locationId":3},{"id":18706,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18707],"locationId":398},{"id":18707,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18708],"locationId":399},{"id":18708,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18709],"locationId":2},{"id":18709,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18710],"locationId":3},{"id":18710,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18711],"locationId":398},{"id":18711,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18712],"locationId":399},{"id":18712,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18713],"locationId":2},{"id":18713,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18714],"locationId":3},{"id":18714,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18715],"locationId":398},{"id":18715,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18716],"locationId":399},{"id":18716,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18717],"locationId":2},{"id":18717,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18718],"locationId":3},{"id":18718,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18719],"locationId":398},{"id":18719,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18720],"locationId":399},{"id":18720,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18721],"locationId":2},{"id":18721,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18722],"locationId":3},{"id":18722,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18723],"locationId":398},{"id":18723,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18724],"locationId":399},{"id":18724,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18725],"locationId":2},{"id":18725,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18726],"locationId":3},{"id":18726,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18727],"locationId":398},{"id":18727,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18728],"locationId":399},{"id":18728,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18729],"locationId":2},{"id":18729,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18730],"locationId":3},{"id":18730,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18731],"locationId":398},{"id":18731,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18732],"locationId":399},{"id":18732,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18733],"locationId":2},{"id":18733,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18734],"locationId":3},{"id":18734,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18735],"locationId":398},{"id":18735,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18736],"locationId":399},{"id":18736,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18737],"locationId":2},{"id":18737,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18738],"locationId":3},{"id":18738,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18739],"locationId":398},{"id":18739,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18740],"locationId":399},{"id":18740,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18741],"locationId":2},{"id":18741,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18742],"locationId":3},{"id":18742,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18743],"locationId":398},{"id":18743,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18744],"locationId":399},{"id":18744,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18745],"locationId":2},{"id":18745,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18746],"locationId":3},{"id":18746,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18747],"locationId":398},{"id":18747,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18748],"locationId":399},{"id":18748,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18749],"locationId":2},{"id":18749,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18750],"locationId":3},{"id":18750,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18751],"locationId":398},{"id":18751,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18752],"locationId":399},{"id":18752,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18753],"locationId":2},{"id":18753,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18754],"locationId":3},{"id":18754,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18755],"locationId":398},{"id":18755,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18756],"locationId":399},{"id":18756,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18757],"locationId":2},{"id":18757,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18758],"locationId":3},{"id":18758,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18759],"locationId":398},{"id":18759,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18760],"locationId":399},{"id":18760,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18761],"locationId":2},{"id":18761,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18762],"locationId":3},{"id":18762,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18763],"locationId":398},{"id":18763,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18764],"locationId":399},{"id":18764,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18765],"locationId":2},{"id":18765,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[18766],"locationId":5},{"id":18766,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18767],"locationId":6},{"id":18767,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[18768],"locationId":7},{"id":18768,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18769],"locationId":6},{"id":18769,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[18770],"locationId":8},{"id":18770,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[18771],"locationId":9},{"id":18771,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18772],"locationId":6},{"id":18772,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[18773],"locationId":10},{"id":18773,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[18774],"locationId":84},{"id":18774,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[18775],"locationId":6},{"id":18775,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[18776],"locationId":85},{"id":18776,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[18777],"locationId":86},{"id":18777,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[18778],"locationId":87},{"id":18778,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[18779],"locationId":88},{"id":18779,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[18780],"locationId":74},{"id":18780,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[18781],"locationId":89},{"id":18781,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[18782,18785],"locationId":90},{"id":18782,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[18783],"locationId":40},{"id":18783,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[18784],"locationId":29},{"id":18784,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":18785,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[18786],"locationId":102},{"id":18786,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579}],"locationId":247},{"id":27713,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27714],"locationId":452},{"id":27714,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27715],"locationId":453},{"id":27715,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27716],"locationId":2},{"id":27716,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27717],"locationId":3},{"id":27717,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27718],"locationId":452},{"id":27718,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27719],"locationId":453},{"id":27719,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27720],"locationId":2},{"id":27720,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27721],"locationId":3},{"id":27721,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27722],"locationId":452},{"id":27722,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27723],"locationId":453},{"id":27723,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27724],"locationId":2},{"id":27724,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27725],"locationId":3},{"id":27725,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27726],"locationId":452},{"id":27726,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27727],"locationId":453},{"id":27727,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27728],"locationId":2},{"id":27728,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27729],"locationId":3},{"id":27729,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27730],"locationId":452},{"id":27730,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27731],"locationId":453},{"id":27731,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27732],"locationId":2},{"id":27732,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27733],"locationId":3},{"id":27733,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27734],"locationId":452},{"id":27734,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27735],"locationId":453},{"id":27735,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27736],"locationId":2},{"id":27736,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27737],"locationId":3},{"id":27737,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27738],"locationId":452},{"id":27738,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27739],"locationId":453},{"id":27739,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27740],"locationId":2},{"id":27740,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27741],"locationId":3},{"id":27741,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27742],"locationId":452},{"id":27742,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27743],"locationId":453},{"id":27743,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27744],"locationId":2},{"id":27744,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27745],"locationId":3},{"id":27745,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27746],"locationId":452},{"id":27746,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27747],"locationId":453},{"id":27747,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27748],"locationId":2},{"id":27748,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27749],"locationId":3},{"id":27749,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27750],"locationId":452},{"id":27750,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27751],"locationId":453},{"id":27751,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27752],"locationId":2},{"id":27752,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27753],"locationId":3},{"id":27753,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27754],"locationId":452},{"id":27754,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27755],"locationId":453},{"id":27755,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27756],"locationId":2},{"id":27756,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27757],"locationId":3},{"id":27757,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27758],"locationId":452},{"id":27758,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27759],"locationId":453},{"id":27759,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27760],"locationId":2},{"id":27760,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27761],"locationId":3},{"id":27761,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27762],"locationId":452},{"id":27762,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27763],"locationId":453},{"id":27763,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27764],"locationId":2},{"id":27764,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27765],"locationId":3},{"id":27765,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27766],"locationId":452},{"id":27766,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27767],"locationId":453},{"id":27767,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27768],"locationId":2},{"id":27768,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27769],"locationId":3},{"id":27769,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27770],"locationId":452},{"id":27770,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27771],"locationId":453},{"id":27771,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27772],"locationId":2},{"id":27772,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27773],"locationId":3},{"id":27773,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27774],"locationId":452},{"id":27774,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27775],"locationId":453},{"id":27775,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27776],"locationId":2},{"id":27776,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27777],"locationId":3},{"id":27777,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27778],"locationId":452},{"id":27778,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27779],"locationId":453},{"id":27779,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27780],"locationId":2},{"id":27780,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27781],"locationId":3},{"id":27781,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27782],"locationId":452},{"id":27782,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27783],"locationId":453},{"id":27783,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27784],"locationId":2},{"id":27784,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27785],"locationId":3},{"id":27785,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27786],"locationId":452},{"id":27786,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27787],"locationId":453},{"id":27787,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27788],"locationId":2},{"id":27788,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27789],"locationId":3},{"id":27789,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27790],"locationId":452},{"id":27790,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27791],"locationId":453},{"id":27791,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27792],"locationId":2},{"id":27792,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27793],"locationId":3},{"id":27793,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27794],"locationId":452},{"id":27794,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27795],"locationId":453},{"id":27795,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27796],"locationId":2},{"id":27796,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27797],"locationId":3},{"id":27797,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27798],"locationId":452},{"id":27798,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27799],"locationId":453},{"id":27799,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27800],"locationId":2},{"id":27800,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27801],"locationId":3},{"id":27801,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27802],"locationId":452},{"id":27802,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27803],"locationId":453},{"id":27803,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27804],"locationId":2},{"id":27804,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27805],"locationId":3},{"id":27805,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27806],"locationId":452},{"id":27806,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27807],"locationId":453},{"id":27807,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27808],"locationId":2},{"id":27808,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27809],"locationId":3},{"id":27809,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27810],"locationId":452},{"id":27810,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27811],"locationId":453},{"id":27811,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27812],"locationId":2},{"id":27812,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27813],"locationId":3},{"id":27813,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27814],"locationId":452},{"id":27814,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27815],"locationId":453},{"id":27815,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27816],"locationId":2},{"id":27816,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27817],"locationId":3},{"id":27817,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27818],"locationId":452},{"id":27818,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27819],"locationId":453},{"id":27819,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27820],"locationId":2},{"id":27820,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27821],"locationId":3},{"id":27821,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27822],"locationId":452},{"id":27822,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27823],"locationId":453},{"id":27823,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27824],"locationId":2},{"id":27824,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27825],"locationId":3},{"id":27825,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27826],"locationId":452},{"id":27826,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27827],"locationId":453},{"id":27827,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27828],"locationId":2},{"id":27828,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27829],"locationId":3},{"id":27829,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27830],"locationId":452},{"id":27830,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27831],"locationId":453},{"id":27831,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27832],"locationId":2},{"id":27832,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27833],"locationId":3},{"id":27833,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27834],"locationId":452},{"id":27834,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27835],"locationId":453},{"id":27835,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27836],"locationId":2},{"id":27836,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27837],"locationId":3},{"id":27837,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27838],"locationId":452},{"id":27838,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27839],"locationId":453},{"id":27839,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27840],"locationId":2},{"id":27840,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27841],"locationId":3},{"id":27841,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27842],"locationId":452},{"id":27842,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27843],"locationId":453},{"id":27843,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27844],"locationId":2},{"id":27844,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27845],"locationId":3},{"id":27845,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27846],"locationId":452},{"id":27846,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27847],"locationId":453},{"id":27847,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27848],"locationId":2},{"id":27848,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27849],"locationId":3},{"id":27849,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27850],"locationId":452},{"id":27850,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27851],"locationId":453},{"id":27851,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27852],"locationId":2},{"id":27852,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27853],"locationId":3},{"id":27853,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27854],"locationId":452},{"id":27854,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27855],"locationId":453},{"id":27855,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27856],"locationId":2},{"id":27856,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27857],"locationId":3},{"id":27857,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27858],"locationId":452},{"id":27858,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27859],"locationId":453},{"id":27859,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27860],"locationId":2},{"id":27860,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27861],"locationId":3},{"id":27861,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27862],"locationId":452},{"id":27862,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27863],"locationId":453},{"id":27863,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27864],"locationId":2},{"id":27864,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27865],"locationId":3},{"id":27865,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27866],"locationId":452},{"id":27866,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27867],"locationId":453},{"id":27867,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27868],"locationId":2},{"id":27868,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27869],"locationId":3},{"id":27869,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27870],"locationId":452},{"id":27870,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27871],"locationId":453},{"id":27871,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27872],"locationId":2},{"id":27872,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27873],"locationId":3},{"id":27873,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27874],"locationId":452},{"id":27874,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27875],"locationId":453},{"id":27875,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27876],"locationId":2},{"id":27876,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27877],"locationId":3},{"id":27877,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27878],"locationId":452},{"id":27878,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27879],"locationId":453},{"id":27879,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27880],"locationId":2},{"id":27880,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27881],"locationId":3},{"id":27881,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27882],"locationId":452},{"id":27882,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27883],"locationId":453},{"id":27883,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27884],"locationId":2},{"id":27884,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27885],"locationId":3},{"id":27885,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27886],"locationId":452},{"id":27886,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27887],"locationId":453},{"id":27887,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27888],"locationId":2},{"id":27888,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27889],"locationId":3},{"id":27889,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27890],"locationId":452},{"id":27890,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27891],"locationId":453},{"id":27891,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27892],"locationId":2},{"id":27892,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27893],"locationId":3},{"id":27893,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27894],"locationId":452},{"id":27894,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27895],"locationId":453},{"id":27895,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27896],"locationId":2},{"id":27896,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27897],"locationId":3},{"id":27897,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27898],"locationId":452},{"id":27898,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27899],"locationId":453},{"id":27899,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27900],"locationId":2},{"id":27900,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27901],"locationId":3},{"id":27901,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27902],"locationId":452},{"id":27902,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27903],"locationId":453},{"id":27903,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27904],"locationId":2},{"id":27904,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27905],"locationId":3},{"id":27905,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27906],"locationId":452},{"id":27906,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27907],"locationId":453},{"id":27907,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27908],"locationId":2},{"id":27908,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27909],"locationId":3},{"id":27909,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27910],"locationId":452},{"id":27910,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27911],"locationId":453},{"id":27911,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27912],"locationId":2},{"id":27912,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27913],"locationId":3},{"id":27913,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27914],"locationId":452},{"id":27914,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27915],"locationId":453},{"id":27915,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27916],"locationId":2},{"id":27916,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27917],"locationId":3},{"id":27917,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27918],"locationId":452},{"id":27918,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27919],"locationId":453},{"id":27919,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27920],"locationId":2},{"id":27920,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27921],"locationId":3},{"id":27921,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27922],"locationId":452},{"id":27922,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27923],"locationId":453},{"id":27923,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27924],"locationId":2},{"id":27924,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27925],"locationId":3},{"id":27925,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27926],"locationId":452},{"id":27926,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27927],"locationId":453},{"id":27927,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27928],"locationId":2},{"id":27928,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27929],"locationId":3},{"id":27929,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27930],"locationId":452},{"id":27930,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27931],"locationId":453},{"id":27931,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27932],"locationId":2},{"id":27932,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27933],"locationId":3},{"id":27933,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27934],"locationId":452},{"id":27934,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27935],"locationId":453},{"id":27935,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27936],"locationId":2},{"id":27936,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27937],"locationId":3},{"id":27937,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27938],"locationId":452},{"id":27938,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27939],"locationId":453},{"id":27939,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27940],"locationId":2},{"id":27940,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27941],"locationId":3},{"id":27941,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27942],"locationId":452},{"id":27942,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27943],"locationId":453},{"id":27943,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27944],"locationId":2},{"id":27944,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27945],"locationId":3},{"id":27945,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27946],"locationId":452},{"id":27946,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27947],"locationId":453},{"id":27947,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27948],"locationId":2},{"id":27948,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27949],"locationId":3},{"id":27949,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27950],"locationId":452},{"id":27950,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27951],"locationId":453},{"id":27951,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27952],"locationId":2},{"id":27952,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27953],"locationId":3},{"id":27953,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27954],"locationId":452},{"id":27954,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27955],"locationId":453},{"id":27955,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27956],"locationId":2},{"id":27956,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27957],"locationId":3},{"id":27957,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27958],"locationId":452},{"id":27958,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27959],"locationId":453},{"id":27959,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27960],"locationId":2},{"id":27960,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27961],"locationId":3},{"id":27961,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27962],"locationId":452},{"id":27962,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27963],"locationId":453},{"id":27963,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27964],"locationId":2},{"id":27964,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27965],"locationId":3},{"id":27965,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27966],"locationId":452},{"id":27966,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27967],"locationId":453},{"id":27967,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27968],"locationId":2},{"id":27968,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27969],"locationId":3},{"id":27969,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27970],"locationId":452},{"id":27970,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27971],"locationId":453},{"id":27971,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27972],"locationId":2},{"id":27972,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27973],"locationId":3},{"id":27973,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27974],"locationId":452},{"id":27974,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27975],"locationId":453},{"id":27975,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27976],"locationId":2},{"id":27976,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27977],"locationId":3},{"id":27977,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27978],"locationId":452},{"id":27978,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27979],"locationId":453},{"id":27979,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27980],"locationId":2},{"id":27980,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27981],"locationId":3},{"id":27981,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27982],"locationId":452},{"id":27982,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27983],"locationId":453},{"id":27983,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27984],"locationId":2},{"id":27984,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27985],"locationId":3},{"id":27985,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27986],"locationId":452},{"id":27986,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27987],"locationId":453},{"id":27987,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27988],"locationId":2},{"id":27988,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27989],"locationId":3},{"id":27989,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27990],"locationId":452},{"id":27990,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27991],"locationId":453},{"id":27991,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27992],"locationId":2},{"id":27992,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27993],"locationId":3},{"id":27993,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27994],"locationId":452},{"id":27994,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27995],"locationId":453},{"id":27995,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27996],"locationId":2},{"id":27996,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27997],"locationId":3},{"id":27997,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27998],"locationId":452},{"id":27998,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27999],"locationId":453},{"id":27999,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28000],"locationId":2},{"id":28000,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28001],"locationId":3},{"id":28001,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28002],"locationId":452},{"id":28002,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28003],"locationId":453},{"id":28003,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28004],"locationId":2},{"id":28004,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28005],"locationId":3},{"id":28005,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28006],"locationId":452},{"id":28006,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28007],"locationId":453},{"id":28007,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28008],"locationId":2},{"id":28008,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28009],"locationId":3},{"id":28009,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28010],"locationId":452},{"id":28010,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28011],"locationId":453},{"id":28011,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28012],"locationId":2},{"id":28012,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28013],"locationId":3},{"id":28013,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28014],"locationId":452},{"id":28014,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28015],"locationId":453},{"id":28015,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28016],"locationId":2},{"id":28016,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28017],"locationId":3},{"id":28017,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28018],"locationId":452},{"id":28018,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28019],"locationId":453},{"id":28019,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28020],"locationId":2},{"id":28020,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28021],"locationId":3},{"id":28021,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28022],"locationId":452},{"id":28022,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28023],"locationId":453},{"id":28023,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28024],"locationId":2},{"id":28024,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28025],"locationId":3},{"id":28025,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28026],"locationId":452},{"id":28026,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28027],"locationId":453},{"id":28027,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28028],"locationId":2},{"id":28028,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28029],"locationId":3},{"id":28029,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28030],"locationId":452},{"id":28030,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28031],"locationId":453},{"id":28031,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28032],"locationId":2},{"id":28032,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28033],"locationId":3},{"id":28033,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28034],"locationId":452},{"id":28034,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28035],"locationId":453},{"id":28035,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28036],"locationId":2},{"id":28036,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28037],"locationId":3},{"id":28037,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28038],"locationId":452},{"id":28038,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28039],"locationId":453},{"id":28039,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28040],"locationId":2},{"id":28040,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28041],"locationId":5},{"id":28041,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28042],"locationId":6},{"id":28042,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28043],"locationId":7},{"id":28043,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28044],"locationId":6},{"id":28044,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28045],"locationId":8},{"id":28045,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28046],"locationId":9},{"id":28046,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28047],"locationId":6},{"id":28047,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28048,28080,28109],"locationId":10},{"id":28048,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":28080,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[28081],"locationId":11},{"id":28081,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[28082],"locationId":12},{"id":28082,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[28083],"locationId":13},{"id":28083,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[28084,28088],"locationId":14},{"id":28084,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[28085],"locationId":46},{"id":28085,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[28086],"locationId":54},{"id":28086,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[28087],"locationId":55},{"id":28087,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":80,"ticks":1,"startLocationId":59,"endLocationId":60}],"locationId":56},{"id":28088,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[28089],"locationId":36},{"id":28089,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[28090],"locationId":40},{"id":28090,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[28091],"locationId":29},{"id":28091,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":28109,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28110],"locationId":84},{"id":28110,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28111],"locationId":6},{"id":28111,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28112],"locationId":85},{"id":28112,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28113],"locationId":86},{"id":28113,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28114],"locationId":87},{"id":28114,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28115],"locationId":88},{"id":28115,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28116],"locationId":74},{"id":28116,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[28117],"locationId":89},{"id":28117,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[28118],"locationId":90},{"id":28118,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":18787,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18788],"locationId":399},{"id":18788,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18789],"locationId":2},{"id":18789,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18790],"locationId":3},{"id":18790,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18791],"locationId":398},{"id":18791,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18792],"locationId":399},{"id":18792,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18793],"locationId":2},{"id":18793,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18794],"locationId":3},{"id":18794,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18795],"locationId":398},{"id":18795,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18796],"locationId":399},{"id":18796,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18797],"locationId":2},{"id":18797,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18798],"locationId":3},{"id":18798,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18799],"locationId":398},{"id":18799,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18800],"locationId":399},{"id":18800,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18801],"locationId":2},{"id":18801,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18802],"locationId":3},{"id":18802,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18803],"locationId":398},{"id":18803,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18804],"locationId":399},{"id":18804,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18805],"locationId":2},{"id":18805,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18806],"locationId":3},{"id":18806,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18807],"locationId":398},{"id":18807,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18808],"locationId":399},{"id":18808,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18809],"locationId":2},{"id":18809,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18810],"locationId":3},{"id":18810,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18811],"locationId":398},{"id":18811,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18812],"locationId":399},{"id":18812,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18813],"locationId":2},{"id":18813,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18814],"locationId":3},{"id":18814,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18815],"locationId":398},{"id":18815,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18816],"locationId":399},{"id":18816,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18817],"locationId":2},{"id":18817,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18818],"locationId":3},{"id":18818,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18819],"locationId":398},{"id":18819,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18820],"locationId":399},{"id":18820,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18821],"locationId":2},{"id":18821,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18822],"locationId":3},{"id":18822,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18823],"locationId":398},{"id":18823,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18824],"locationId":399},{"id":18824,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18825],"locationId":2},{"id":18825,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18826],"locationId":3},{"id":18826,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18827],"locationId":398},{"id":18827,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18828],"locationId":399},{"id":18828,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18829],"locationId":2},{"id":18829,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18830],"locationId":3},{"id":18830,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18831],"locationId":398},{"id":18831,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18832],"locationId":399},{"id":18832,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18833],"locationId":2},{"id":18833,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18834],"locationId":3},{"id":18834,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18835],"locationId":398},{"id":18835,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18836],"locationId":399},{"id":18836,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18837],"locationId":2},{"id":18837,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18838],"locationId":3},{"id":18838,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18839],"locationId":398},{"id":18839,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18840],"locationId":399},{"id":18840,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18841],"locationId":2},{"id":18841,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18842],"locationId":3},{"id":18842,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18843],"locationId":398},{"id":18843,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18844],"locationId":399},{"id":18844,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18845],"locationId":2},{"id":18845,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18846],"locationId":3},{"id":18846,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18847],"locationId":398},{"id":18847,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18848],"locationId":399},{"id":18848,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18849],"locationId":2},{"id":18849,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18850],"locationId":3},{"id":18850,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18851],"locationId":398},{"id":18851,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18852],"locationId":399},{"id":18852,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18853],"locationId":2},{"id":18853,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18854],"locationId":3},{"id":18854,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18855],"locationId":398},{"id":18855,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18856],"locationId":399},{"id":18856,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18857],"locationId":2},{"id":18857,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18858],"locationId":3},{"id":18858,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18859],"locationId":398},{"id":18859,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18860],"locationId":399},{"id":18860,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18861],"locationId":2},{"id":18861,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18862],"locationId":3},{"id":18862,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18863],"locationId":398},{"id":18863,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18864],"locationId":399},{"id":18864,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18865],"locationId":2},{"id":18865,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18866],"locationId":3},{"id":18866,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18867],"locationId":398},{"id":18867,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18868],"locationId":399},{"id":18868,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18869],"locationId":2},{"id":18869,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18870],"locationId":3},{"id":18870,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18871],"locationId":398},{"id":18871,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18872],"locationId":399},{"id":18872,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18873],"locationId":2},{"id":18873,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18874],"locationId":3},{"id":18874,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18875],"locationId":398},{"id":18875,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18876],"locationId":399},{"id":18876,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18877],"locationId":2},{"id":18877,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18878],"locationId":3},{"id":18878,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18879],"locationId":398},{"id":18879,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18880],"locationId":399},{"id":18880,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18881],"locationId":2},{"id":18881,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18882],"locationId":3},{"id":18882,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18883],"locationId":398},{"id":18883,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18884],"locationId":399},{"id":18884,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18885],"locationId":2},{"id":18885,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18886],"locationId":3},{"id":18886,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18887],"locationId":398},{"id":18887,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18888],"locationId":399},{"id":18888,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18889],"locationId":2},{"id":18889,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18890],"locationId":3},{"id":18890,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18891],"locationId":398},{"id":18891,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18892],"locationId":399},{"id":18892,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18893],"locationId":2},{"id":18893,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18894],"locationId":3},{"id":18894,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18895],"locationId":398},{"id":18895,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18896],"locationId":399},{"id":18896,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18897],"locationId":2},{"id":18897,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18898],"locationId":3},{"id":18898,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18899],"locationId":398},{"id":18899,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18900],"locationId":399},{"id":18900,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18901],"locationId":2},{"id":18901,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18902],"locationId":3},{"id":18902,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18903],"locationId":398},{"id":18903,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18904],"locationId":399},{"id":18904,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18905],"locationId":2},{"id":18905,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18906],"locationId":3},{"id":18906,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18907],"locationId":398},{"id":18907,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18908],"locationId":399},{"id":18908,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18909],"locationId":2},{"id":18909,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18910],"locationId":3},{"id":18910,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18911],"locationId":398},{"id":18911,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18912],"locationId":399},{"id":18912,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18913],"locationId":2},{"id":18913,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18914],"locationId":3},{"id":18914,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18915],"locationId":398},{"id":18915,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18916],"locationId":399},{"id":18916,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18917],"locationId":2},{"id":18917,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18918],"locationId":3},{"id":18918,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18919],"locationId":398},{"id":18919,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18920],"locationId":399},{"id":18920,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18921],"locationId":2},{"id":18921,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18922],"locationId":3},{"id":18922,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18923],"locationId":398},{"id":18923,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18924],"locationId":399},{"id":18924,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18925],"locationId":2},{"id":18925,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18926],"locationId":3},{"id":18926,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18927],"locationId":398},{"id":18927,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18928],"locationId":399},{"id":18928,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18929],"locationId":2},{"id":18929,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18930],"locationId":3},{"id":18930,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18931],"locationId":398},{"id":18931,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18932],"locationId":399},{"id":18932,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18933],"locationId":2},{"id":18933,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18934],"locationId":3},{"id":18934,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18935],"locationId":398},{"id":18935,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18936],"locationId":399},{"id":18936,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18937],"locationId":2},{"id":18937,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18938],"locationId":3},{"id":18938,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18939],"locationId":398},{"id":18939,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18940],"locationId":399},{"id":18940,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18941],"locationId":2},{"id":18941,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18942],"locationId":3},{"id":18942,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18943],"locationId":398},{"id":18943,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18944],"locationId":399},{"id":18944,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18945],"locationId":2},{"id":18945,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18946],"locationId":3},{"id":18946,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18947],"locationId":398},{"id":18947,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18948],"locationId":399},{"id":18948,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18949],"locationId":2},{"id":18949,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18950],"locationId":3},{"id":18950,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18951],"locationId":398},{"id":18951,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18952],"locationId":399},{"id":18952,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18953],"locationId":2},{"id":18953,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18954],"locationId":3},{"id":18954,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18955],"locationId":398},{"id":18955,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18956],"locationId":399},{"id":18956,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18957],"locationId":2},{"id":18957,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18958],"locationId":3},{"id":18958,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18959],"locationId":398},{"id":18959,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18960],"locationId":399},{"id":18960,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18961],"locationId":2},{"id":18961,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18962],"locationId":3},{"id":18962,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18963],"locationId":398},{"id":18963,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18964],"locationId":399},{"id":18964,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18965],"locationId":2},{"id":18965,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18966],"locationId":3},{"id":18966,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18967],"locationId":398},{"id":18967,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18968],"locationId":399},{"id":18968,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18969],"locationId":2},{"id":18969,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18970],"locationId":3},{"id":18970,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18971],"locationId":398},{"id":18971,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18972],"locationId":399},{"id":18972,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18973],"locationId":2},{"id":18973,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18974],"locationId":3},{"id":18974,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18975],"locationId":398},{"id":18975,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18976],"locationId":399},{"id":18976,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18977],"locationId":2},{"id":18977,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18978],"locationId":3},{"id":18978,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18979],"locationId":398},{"id":18979,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18980],"locationId":399},{"id":18980,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18981],"locationId":2},{"id":18981,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18982],"locationId":3},{"id":18982,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18983],"locationId":398},{"id":18983,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18984],"locationId":399},{"id":18984,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18985],"locationId":2},{"id":18985,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18986],"locationId":3},{"id":18986,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18987],"locationId":398},{"id":18987,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18988],"locationId":399},{"id":18988,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18989],"locationId":2},{"id":18989,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18990],"locationId":3},{"id":18990,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18991],"locationId":398},{"id":18991,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18992],"locationId":399},{"id":18992,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18993],"locationId":2},{"id":18993,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18994],"locationId":3},{"id":18994,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18995],"locationId":398},{"id":18995,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[18996],"locationId":399},{"id":18996,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[18997],"locationId":2},{"id":18997,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[18998],"locationId":3},{"id":18998,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[18999],"locationId":398},{"id":18999,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19000],"locationId":399},{"id":19000,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19001],"locationId":2},{"id":19001,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19002],"locationId":3},{"id":19002,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19003],"locationId":398},{"id":19003,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19004],"locationId":399},{"id":19004,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19005,20979],"locationId":2},{"id":19005,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19006],"locationId":3},{"id":19006,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19007],"locationId":398},{"id":19007,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19008],"locationId":399},{"id":19008,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19009,21218],"locationId":2},{"id":19009,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19010],"locationId":3},{"id":19010,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19011],"locationId":398},{"id":19011,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19012],"locationId":399},{"id":19012,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19013,21080],"locationId":2},{"id":19013,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19014],"locationId":3},{"id":19014,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19015],"locationId":398},{"id":19015,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19016],"locationId":399},{"id":19016,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19017,20689],"locationId":2},{"id":19017,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19018],"locationId":3},{"id":19018,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19019],"locationId":398},{"id":19019,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19020],"locationId":399},{"id":19020,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19021,20257],"locationId":2},{"id":19021,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19022],"locationId":3},{"id":19022,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19023],"locationId":398},{"id":19023,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19024],"locationId":399},{"id":19024,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19025,20040],"locationId":2},{"id":19025,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19026],"locationId":3},{"id":19026,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19027],"locationId":398},{"id":19027,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19028],"locationId":399},{"id":19028,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19029,19307],"locationId":2},{"id":19029,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19030],"locationId":5},{"id":19030,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19031],"locationId":6},{"id":19031,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19032],"locationId":7},{"id":19032,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19033],"locationId":6},{"id":19033,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19034],"locationId":8},{"id":19034,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19035],"locationId":9},{"id":19035,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19036],"locationId":6},{"id":19036,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[19037],"locationId":10},{"id":19037,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[19038],"locationId":84},{"id":19038,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19039],"locationId":6},{"id":19039,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[19040],"locationId":85},{"id":19040,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[19041],"locationId":86},{"id":19041,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[19042],"locationId":87},{"id":19042,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[19043],"locationId":88},{"id":19043,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[19044],"locationId":74},{"id":19044,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[19045],"locationId":89},{"id":19045,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[19046,21376],"locationId":90},{"id":19046,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19047,20344],"locationId":109},{"id":19047,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19048,19918],"locationId":109},{"id":19048,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19049,20452],"locationId":109},{"id":19049,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[19050,20969],"locationId":109},{"id":19050,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":6,"children":[21030,21471],"positionTicks":[{"line":29,"ticks":6,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21030,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116},{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":21471,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":20969,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[21029],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21029,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20452,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20453],"locationId":114},{"id":20453,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":19918,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[19919],"locationId":114},{"id":19919,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[19920],"locationId":114},{"id":19920,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":9,"children":[20950],"positionTicks":[{"line":29,"ticks":9,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20950,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246},{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20344,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20345],"locationId":114},{"id":20345,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20346],"locationId":114},{"id":20346,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20347],"locationId":114},{"id":20347,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":29,"ticks":4,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21376,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[21377],"locationId":97},{"id":21377,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[21378],"locationId":97},{"id":21378,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[21379],"locationId":97},{"id":21379,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":19307,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19308],"locationId":3},{"id":19308,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19309],"locationId":398},{"id":19309,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19310],"locationId":399},{"id":19310,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19311,20102],"locationId":2},{"id":19311,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19312],"locationId":5},{"id":19312,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19313],"locationId":6},{"id":19313,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19314],"locationId":7},{"id":19314,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19315],"locationId":6},{"id":19315,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19316,20032],"locationId":8},{"id":19316,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19317],"locationId":9},{"id":19317,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19318],"locationId":6},{"id":19318,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[19319,19597,19866,20219,20236,20768,21466],"locationId":10},{"id":19319,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":302,"positionTicks":[{"line":547,"ticks":206,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":96,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":19597,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[19598],"locationId":11},{"id":19598,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[19599,20754,21339],"locationId":12},{"id":19599,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[19600],"locationId":13},{"id":19600,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[19601,19865,19952,19957],"locationId":14},{"id":19601,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":24,"children":[20220],"positionTicks":[{"line":784,"ticks":10,"startLocationId":20,"endLocationId":21},{"line":790,"ticks":1,"startLocationId":16,"endLocationId":17},{"line":786,"ticks":7,"startLocationId":18,"endLocationId":19},{"line":763,"ticks":5,"startLocationId":22,"endLocationId":23},{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":20220,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":8,"positionTicks":[{"line":338,"ticks":8,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":19865,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":15,"positionTicks":[{"line":726,"ticks":15,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":19952,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":4,"children":[20228],"positionTicks":[{"line":648,"ticks":1,"startLocationId":38,"endLocationId":39},{"line":647,"ticks":3,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":20228,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[20229],"locationId":40},{"id":20229,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":7,"children":[20240],"positionTicks":[{"line":13,"ticks":7,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":20240,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":9,"positionTicks":[{"line":26,"ticks":9,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":19957,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":3,"children":[19958],"positionTicks":[{"line":667,"ticks":2,"startLocationId":47,"endLocationId":48},{"line":664,"ticks":1,"startLocationId":313,"endLocationId":314}],"locationId":46},{"id":19958,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[19959],"locationId":54},{"id":19959,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[19960],"locationId":55},{"id":19960,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[19961,20111],"locationId":56},{"id":19961,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[19962],"locationId":28},{"id":19962,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":3,"positionTicks":[{"line":13,"ticks":3,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":20111,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":3,"positionTicks":[{"line":791,"ticks":3,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":20754,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[20755,21318,21337],"locationId":72},{"id":20755,"callFrame":{"functionName":"referencedFileDoesNotExist","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":38,"columnNumber":32},"hitCount":1,"positionTicks":[{"line":39,"ticks":1,"startLocationId":779,"endLocationId":780}],"locationId":778},{"id":21318,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[21319],"locationId":73},{"id":21319,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21320,21382],"locationId":74},{"id":21320,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[21321,21361],"locationId":75},{"id":21321,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":71,"ticks":1,"startLocationId":79,"endLocationId":80}],"locationId":78},{"id":21361,"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":110,"ticks":1,"startLocationId":756,"endLocationId":757}],"locationId":81},{"id":21382,"callFrame":{"functionName":"isXmlFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":21,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":23,"ticks":1,"startLocationId":781,"endLocationId":782}],"locationId":153},{"id":21337,"callFrame":{"functionName":"scriptImportCaseMismatch","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":79,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":81,"ticks":1,"startLocationId":784,"endLocationId":785}],"locationId":783},{"id":21339,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[21340],"locationId":372},{"id":21340,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[21341],"locationId":373},{"id":21341,"callFrame":{"functionName":"verifyNewExpressions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":42,"columnNumber":24},"hitCount":0,"children":[21342],"locationId":374},{"id":21342,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":414,"ticks":1,"startLocationId":634,"endLocationId":635}],"locationId":13},{"id":19866,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[19867],"locationId":84},{"id":19867,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19868],"locationId":6},{"id":19868,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[19869],"locationId":85},{"id":19869,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[19870],"locationId":86},{"id":19870,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[19871],"locationId":87},{"id":19871,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[19872],"locationId":88},{"id":19872,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[19873],"locationId":74},{"id":19873,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[19874,20012],"locationId":89},{"id":19874,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":33,"children":[19875,19921,19950,20152,21197,21198,21322],"positionTicks":[{"line":76,"ticks":16,"startLocationId":93,"endLocationId":94},{"line":83,"ticks":10,"startLocationId":92,"endLocationId":95},{"line":82,"ticks":7,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":19875,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[19876],"locationId":117},{"id":19876,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":15,"children":[19882,20011],"positionTicks":[{"line":110,"ticks":5,"startLocationId":119,"endLocationId":120},{"line":113,"ticks":9,"startLocationId":121,"endLocationId":122},{"line":108,"ticks":1,"startLocationId":294,"endLocationId":295}],"locationId":118},{"id":19882,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[19883],"locationId":123},{"id":19883,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":27,"children":[19884],"positionTicks":[{"line":13,"ticks":27,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":19884,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":27,"positionTicks":[{"line":26,"ticks":27,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20011,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":20,"positionTicks":[{"line":791,"ticks":20,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":19921,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":57,"children":[20090,21271],"positionTicks":[{"line":27,"ticks":57,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20090,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":5,"positionTicks":[{"line":25,"ticks":4,"startLocationId":112,"endLocationId":113},{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21271,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246},{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":19950,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":64,"children":[21128],"positionTicks":[{"line":48,"ticks":57,"startLocationId":98,"endLocationId":99},{"line":50,"ticks":7,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":21128,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":3,"positionTicks":[{"line":45,"ticks":1,"startLocationId":776,"endLocationId":777},{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101},{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":20152,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":6,"positionTicks":[{"line":42,"ticks":2,"startLocationId":126,"endLocationId":124},{"line":26,"ticks":2,"startLocationId":127,"endLocationId":128},{"line":43,"ticks":2,"startLocationId":124,"endLocationId":125}],"locationId":40},{"id":21197,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":2,"positionTicks":[{"line":256,"ticks":1,"startLocationId":786,"endLocationId":107},{"line":262,"ticks":1,"startLocationId":787,"endLocationId":788}],"locationId":102},{"id":21198,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":60,"ticks":1,"startLocationId":481,"endLocationId":482}],"locationId":250},{"id":21322,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":564,"ticks":1,"startLocationId":789,"endLocationId":790}],"locationId":218},{"id":20012,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":8,"children":[21199,21329],"positionTicks":[{"line":195,"ticks":2,"startLocationId":132,"endLocationId":133},{"line":203,"ticks":3,"startLocationId":130,"endLocationId":131},{"line":181,"ticks":2,"startLocationId":134,"endLocationId":135},{"line":209,"ticks":1,"startLocationId":138,"endLocationId":139}],"locationId":129},{"id":21199,"callFrame":{"functionName":"getComponent","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":117,"columnNumber":16},"hitCount":2,"positionTicks":[{"line":123,"ticks":2,"startLocationId":228,"endLocationId":229}],"locationId":227},{"id":21329,"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":269,"ticks":1,"startLocationId":309,"endLocationId":310}],"locationId":308},{"id":20219,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":10,"positionTicks":[{"line":353,"ticks":10,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":20236,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[20237],"locationId":157},{"id":20237,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[20238],"locationId":164},{"id":20238,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20239],"locationId":29},{"id":20239,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":20768,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[20769],"locationId":12},{"id":20769,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[20770],"locationId":13},{"id":20770,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[20771],"locationId":14},{"id":20771,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":4,"children":[20892],"positionTicks":[{"line":668,"ticks":3,"startLocationId":48,"endLocationId":156},{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":20892,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[20893],"locationId":54},{"id":20893,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[20894],"locationId":55},{"id":20894,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[20895],"locationId":56},{"id":20895,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[20896],"locationId":28},{"id":20896,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20897],"locationId":29},{"id":20897,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21466,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[21467],"locationId":151},{"id":21467,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[21468],"locationId":152},{"id":21468,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21469],"locationId":74},{"id":21469,"callFrame":{"functionName":"isXmlFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":21,"columnNumber":18},"hitCount":0,"children":[21470],"locationId":153},{"id":21470,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":23,"ticks":1,"startLocationId":154,"endLocationId":155}],"locationId":69},{"id":20032,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[20033,20251],"locationId":157},{"id":20033,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[20034],"locationId":158},{"id":20034,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20035],"locationId":29},{"id":20035,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[20036],"locationId":159},{"id":20036,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[20037],"locationId":160},{"id":20037,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":5,"positionTicks":[{"line":79,"ticks":5,"startLocationId":162,"endLocationId":163}],"locationId":161},{"id":20251,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[20252],"locationId":164},{"id":20252,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20253],"locationId":29},{"id":20253,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[20254],"locationId":165},{"id":20254,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[20255],"locationId":166},{"id":20255,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20256],"locationId":29},{"id":20256,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":2,"children":[20459,21347],"positionTicks":[{"line":341,"ticks":2,"startLocationId":420,"endLocationId":421}],"locationId":167},{"id":20459,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"hitCount":0,"children":[20460],"locationId":168},{"id":20460,"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":139,"columnNumber":22},"hitCount":3,"positionTicks":[{"line":142,"ticks":1,"startLocationId":175,"endLocationId":176},{"line":147,"ticks":2,"startLocationId":170,"endLocationId":171}],"locationId":169},{"id":21347,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":20102,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[20103],"locationId":3},{"id":20103,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[20104],"locationId":398},{"id":20104,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[20105],"locationId":399},{"id":20105,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[20106,20631],"locationId":2},{"id":20106,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20107],"locationId":5},{"id":20107,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20108],"locationId":6},{"id":20108,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":2,"children":[20109,20342],"positionTicks":[{"line":460,"ticks":2,"startLocationId":271,"endLocationId":272}],"locationId":7},{"id":20109,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20110],"locationId":6},{"id":20110,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":1,"children":[20641,21381,21457],"positionTicks":[{"line":487,"ticks":1,"startLocationId":230,"endLocationId":231}],"locationId":8},{"id":20641,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":2,"positionTicks":[{"line":550,"ticks":1,"startLocationId":273,"endLocationId":274},{"line":542,"ticks":1,"startLocationId":791,"endLocationId":792}],"locationId":9},{"id":21381,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":380,"ticks":1,"startLocationId":279,"endLocationId":280}],"locationId":151},{"id":21457,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":92,"ticks":1,"startLocationId":793,"endLocationId":352}],"locationId":160},{"id":20342,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":1,"children":[20343],"positionTicks":[{"line":513,"ticks":1,"startLocationId":284,"endLocationId":285}],"locationId":283},{"id":20343,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":3,"positionTicks":[{"line":507,"ticks":2,"startLocationId":287,"endLocationId":288},{"line":506,"ticks":1,"startLocationId":577,"endLocationId":287}],"locationId":286},{"id":20631,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[20632],"locationId":3},{"id":20632,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[20633],"locationId":398},{"id":20633,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[20634],"locationId":399},{"id":20634,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[20635],"locationId":2},{"id":20635,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":454,"ticks":1,"startLocationId":794,"endLocationId":795}],"locationId":5},{"id":20040,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20041],"locationId":5},{"id":20041,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20042],"locationId":6},{"id":20042,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20043],"locationId":7},{"id":20043,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20044],"locationId":6},{"id":20044,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20045],"locationId":8},{"id":20045,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20046],"locationId":9},{"id":20046,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20047],"locationId":6},{"id":20047,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20048],"locationId":10},{"id":20048,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20049],"locationId":84},{"id":20049,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20050],"locationId":6},{"id":20050,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20051],"locationId":85},{"id":20051,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20052],"locationId":86},{"id":20052,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20053],"locationId":87},{"id":20053,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20054],"locationId":88},{"id":20054,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20055],"locationId":74},{"id":20055,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20056],"locationId":89},{"id":20056,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20057],"locationId":90},{"id":20057,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20058,20643],"locationId":109},{"id":20058,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20059,20723],"locationId":109},{"id":20059,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20060,20963],"locationId":109},{"id":20060,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20061,20625],"locationId":109},{"id":20061,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20062],"locationId":109},{"id":20062,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20063],"locationId":109},{"id":20063,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20064],"locationId":109},{"id":20064,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20065],"locationId":109},{"id":20065,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20625,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20626],"locationId":114},{"id":20626,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20627],"locationId":114},{"id":20627,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20628],"locationId":114},{"id":20628,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20629],"locationId":114},{"id":20629,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"children":[20630],"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20630,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20963,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20964],"locationId":114},{"id":20964,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20965],"locationId":114},{"id":20965,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20966],"locationId":114},{"id":20966,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20967],"locationId":114},{"id":20967,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20968],"locationId":114},{"id":20968,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":29,"ticks":4,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20723,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20724],"locationId":114},{"id":20724,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20725],"locationId":114},{"id":20725,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20726],"locationId":114},{"id":20726,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20727],"locationId":114},{"id":20727,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20728],"locationId":114},{"id":20728,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20729],"locationId":114},{"id":20729,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":29,"ticks":4,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20643,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20644],"locationId":114},{"id":20644,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20645],"locationId":114},{"id":20645,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20646],"locationId":114},{"id":20646,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20647],"locationId":114},{"id":20647,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20648],"locationId":114},{"id":20648,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20649],"locationId":114},{"id":20649,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20650],"locationId":114},{"id":20650,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":29,"ticks":4,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20257,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20258],"locationId":5},{"id":20258,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20259],"locationId":6},{"id":20259,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20260],"locationId":7},{"id":20260,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20261],"locationId":6},{"id":20261,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20262],"locationId":8},{"id":20262,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20263],"locationId":9},{"id":20263,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20264],"locationId":6},{"id":20264,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20265],"locationId":10},{"id":20265,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20266],"locationId":84},{"id":20266,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20267],"locationId":6},{"id":20267,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20268],"locationId":85},{"id":20268,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20269],"locationId":86},{"id":20269,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20270],"locationId":87},{"id":20270,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20271],"locationId":88},{"id":20271,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20272],"locationId":74},{"id":20272,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20273],"locationId":89},{"id":20273,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20274],"locationId":90},{"id":20274,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20275],"locationId":109},{"id":20275,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20276,21175],"locationId":109},{"id":20276,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20277,20952],"locationId":109},{"id":20277,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20278],"locationId":109},{"id":20278,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20279],"locationId":109},{"id":20279,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20280],"locationId":109},{"id":20280,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20281],"locationId":109},{"id":20281,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20282],"locationId":109},{"id":20282,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20283],"locationId":109},{"id":20283,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20284],"locationId":109},{"id":20284,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20285],"locationId":109},{"id":20285,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20286],"locationId":109},{"id":20286,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20952,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20953],"locationId":114},{"id":20953,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20954],"locationId":114},{"id":20954,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20955],"locationId":114},{"id":20955,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20956],"locationId":114},{"id":20956,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20957],"locationId":114},{"id":20957,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20958],"locationId":114},{"id":20958,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20959],"locationId":114},{"id":20959,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20960],"locationId":114},{"id":20960,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20961],"locationId":114},{"id":20961,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21175,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21176],"locationId":114},{"id":21176,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21177],"locationId":114},{"id":21177,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21178],"locationId":114},{"id":21178,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21179],"locationId":114},{"id":21179,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21180],"locationId":114},{"id":21180,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21181],"locationId":114},{"id":21181,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21182],"locationId":114},{"id":21182,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21183],"locationId":114},{"id":21183,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21184],"locationId":114},{"id":21184,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21185],"locationId":114},{"id":21185,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20689,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20690],"locationId":5},{"id":20690,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20691],"locationId":6},{"id":20691,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20692],"locationId":7},{"id":20692,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20693],"locationId":6},{"id":20693,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20694],"locationId":8},{"id":20694,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20695],"locationId":9},{"id":20695,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20696],"locationId":6},{"id":20696,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20697],"locationId":10},{"id":20697,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20698],"locationId":84},{"id":20698,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20699],"locationId":6},{"id":20699,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20700],"locationId":85},{"id":20700,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20701],"locationId":86},{"id":20701,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20702],"locationId":87},{"id":20702,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20703],"locationId":88},{"id":20703,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20704],"locationId":74},{"id":20704,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20705],"locationId":89},{"id":20705,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20706],"locationId":90},{"id":20706,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20707],"locationId":109},{"id":20707,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20708],"locationId":109},{"id":20708,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20709],"locationId":109},{"id":20709,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20710],"locationId":109},{"id":20710,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20711],"locationId":109},{"id":20711,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20712],"locationId":109},{"id":20712,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20713],"locationId":109},{"id":20713,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20714],"locationId":109},{"id":20714,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20715],"locationId":109},{"id":20715,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20716],"locationId":109},{"id":20716,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20717],"locationId":109},{"id":20717,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20718],"locationId":109},{"id":20718,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20719],"locationId":109},{"id":20719,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20720],"locationId":109},{"id":20720,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20721],"locationId":109},{"id":20721,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20722],"locationId":109},{"id":20722,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":3,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21080,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21081],"locationId":5},{"id":21081,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21082],"locationId":6},{"id":21082,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21083],"locationId":7},{"id":21083,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21084],"locationId":6},{"id":21084,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21085],"locationId":8},{"id":21085,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21086],"locationId":9},{"id":21086,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21087],"locationId":6},{"id":21087,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21088],"locationId":10},{"id":21088,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21089],"locationId":84},{"id":21089,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21090],"locationId":6},{"id":21090,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21091],"locationId":85},{"id":21091,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21092],"locationId":86},{"id":21092,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21093],"locationId":87},{"id":21093,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21094],"locationId":88},{"id":21094,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21095],"locationId":74},{"id":21095,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21096],"locationId":89},{"id":21096,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21097],"locationId":90},{"id":21097,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21098],"locationId":109},{"id":21098,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21099],"locationId":109},{"id":21099,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21100],"locationId":109},{"id":21100,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21101],"locationId":109},{"id":21101,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21102],"locationId":109},{"id":21102,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21103],"locationId":109},{"id":21103,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21104],"locationId":109},{"id":21104,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21105],"locationId":109},{"id":21105,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21106],"locationId":109},{"id":21106,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21107],"locationId":109},{"id":21107,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21108],"locationId":109},{"id":21108,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21109],"locationId":109},{"id":21109,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21110],"locationId":109},{"id":21110,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21111],"locationId":109},{"id":21111,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21112],"locationId":109},{"id":21112,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21113],"locationId":109},{"id":21113,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21114],"locationId":109},{"id":21114,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21115],"locationId":109},{"id":21115,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21116,21461],"locationId":109},{"id":21116,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21117],"locationId":114},{"id":21117,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21461,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21462],"locationId":109},{"id":21462,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21218,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21219],"locationId":5},{"id":21219,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21220],"locationId":6},{"id":21220,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21221],"locationId":7},{"id":21221,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21222],"locationId":6},{"id":21222,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21223],"locationId":8},{"id":21223,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21224],"locationId":9},{"id":21224,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21225],"locationId":6},{"id":21225,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21226],"locationId":10},{"id":21226,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21227],"locationId":84},{"id":21227,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21228],"locationId":6},{"id":21228,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21229],"locationId":85},{"id":21229,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21230],"locationId":86},{"id":21230,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21231],"locationId":87},{"id":21231,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21232],"locationId":88},{"id":21232,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21233],"locationId":74},{"id":21233,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21234],"locationId":89},{"id":21234,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21235],"locationId":90},{"id":21235,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21236],"locationId":109},{"id":21236,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21237],"locationId":109},{"id":21237,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21238],"locationId":109},{"id":21238,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21239],"locationId":109},{"id":21239,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21240],"locationId":109},{"id":21240,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21241],"locationId":109},{"id":21241,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21242],"locationId":109},{"id":21242,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21243],"locationId":109},{"id":21243,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21244],"locationId":109},{"id":21244,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21245],"locationId":109},{"id":21245,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21246],"locationId":109},{"id":21246,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21247],"locationId":109},{"id":21247,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21248],"locationId":109},{"id":21248,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21249],"locationId":109},{"id":21249,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21250],"locationId":109},{"id":21250,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21251],"locationId":109},{"id":21251,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21252],"locationId":109},{"id":21252,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21253],"locationId":109},{"id":21253,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21254],"locationId":109},{"id":21254,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21255],"locationId":109},{"id":21255,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21256],"locationId":109},{"id":21256,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21257],"locationId":109},{"id":21257,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21258],"locationId":109},{"id":21258,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21259],"locationId":109},{"id":21259,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20979,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20980],"locationId":5},{"id":20980,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20981],"locationId":6},{"id":20981,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20982],"locationId":7},{"id":20982,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20983],"locationId":6},{"id":20983,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20984],"locationId":8},{"id":20984,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20985],"locationId":9},{"id":20985,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20986],"locationId":6},{"id":20986,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20987],"locationId":10},{"id":20987,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20988],"locationId":84},{"id":20988,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20989],"locationId":6},{"id":20989,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20990],"locationId":85},{"id":20990,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20991],"locationId":86},{"id":20991,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20992],"locationId":87},{"id":20992,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20993],"locationId":88},{"id":20993,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20994],"locationId":74},{"id":20994,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20995],"locationId":89},{"id":20995,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20996],"locationId":90},{"id":20996,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20997],"locationId":109},{"id":20997,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20998],"locationId":109},{"id":20998,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20999],"locationId":109},{"id":20999,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21000],"locationId":109},{"id":21000,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21001],"locationId":109},{"id":21001,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21002],"locationId":109},{"id":21002,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21003],"locationId":109},{"id":21003,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21004],"locationId":109},{"id":21004,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21005],"locationId":109},{"id":21005,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21006],"locationId":109},{"id":21006,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21007],"locationId":109},{"id":21007,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21008],"locationId":109},{"id":21008,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21009],"locationId":109},{"id":21009,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21010],"locationId":109},{"id":21010,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21011],"locationId":109},{"id":21011,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21012],"locationId":109},{"id":21012,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21013],"locationId":109},{"id":21013,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21014],"locationId":109},{"id":21014,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21015],"locationId":109},{"id":21015,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21016],"locationId":109},{"id":21016,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21017],"locationId":109},{"id":21017,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21018],"locationId":109},{"id":21018,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21019],"locationId":109},{"id":21019,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21020],"locationId":109},{"id":21020,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21021],"locationId":109},{"id":21021,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21022],"locationId":109},{"id":21022,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21023],"locationId":109},{"id":21023,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21024],"locationId":109},{"id":21024,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[21025],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21025,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":19602,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19603],"locationId":398},{"id":19603,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19604],"locationId":399},{"id":19604,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19605],"locationId":2},{"id":19605,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19606],"locationId":3},{"id":19606,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19607],"locationId":398},{"id":19607,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19608],"locationId":399},{"id":19608,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19609],"locationId":2},{"id":19609,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19610],"locationId":3},{"id":19610,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19611],"locationId":398},{"id":19611,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19612],"locationId":399},{"id":19612,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19613],"locationId":2},{"id":19613,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19614],"locationId":3},{"id":19614,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19615],"locationId":398},{"id":19615,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19616],"locationId":399},{"id":19616,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19617],"locationId":2},{"id":19617,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19618],"locationId":3},{"id":19618,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19619],"locationId":398},{"id":19619,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19620],"locationId":399},{"id":19620,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19621],"locationId":2},{"id":19621,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19622],"locationId":3},{"id":19622,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19623],"locationId":398},{"id":19623,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19624],"locationId":399},{"id":19624,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19625],"locationId":2},{"id":19625,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19626],"locationId":3},{"id":19626,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19627],"locationId":398},{"id":19627,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19628],"locationId":399},{"id":19628,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19629],"locationId":2},{"id":19629,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19630],"locationId":3},{"id":19630,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19631],"locationId":398},{"id":19631,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19632],"locationId":399},{"id":19632,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19633],"locationId":2},{"id":19633,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19634],"locationId":3},{"id":19634,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19635],"locationId":398},{"id":19635,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19636],"locationId":399},{"id":19636,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19637],"locationId":2},{"id":19637,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19638],"locationId":3},{"id":19638,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19639],"locationId":398},{"id":19639,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19640],"locationId":399},{"id":19640,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19641],"locationId":2},{"id":19641,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19642],"locationId":3},{"id":19642,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19643],"locationId":398},{"id":19643,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19644],"locationId":399},{"id":19644,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19645],"locationId":2},{"id":19645,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19646],"locationId":3},{"id":19646,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19647],"locationId":398},{"id":19647,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19648],"locationId":399},{"id":19648,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19649],"locationId":2},{"id":19649,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19650],"locationId":3},{"id":19650,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19651],"locationId":398},{"id":19651,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19652],"locationId":399},{"id":19652,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19653],"locationId":2},{"id":19653,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19654],"locationId":3},{"id":19654,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19655],"locationId":398},{"id":19655,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19656],"locationId":399},{"id":19656,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19657],"locationId":2},{"id":19657,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19658],"locationId":3},{"id":19658,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19659],"locationId":398},{"id":19659,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19660],"locationId":399},{"id":19660,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19661],"locationId":2},{"id":19661,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19662],"locationId":3},{"id":19662,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19663],"locationId":398},{"id":19663,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19664],"locationId":399},{"id":19664,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19665],"locationId":2},{"id":19665,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19666],"locationId":3},{"id":19666,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19667],"locationId":398},{"id":19667,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19668],"locationId":399},{"id":19668,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19669],"locationId":2},{"id":19669,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19670],"locationId":3},{"id":19670,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19671],"locationId":398},{"id":19671,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19672],"locationId":399},{"id":19672,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19673],"locationId":2},{"id":19673,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19674],"locationId":3},{"id":19674,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19675],"locationId":398},{"id":19675,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19676],"locationId":399},{"id":19676,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19677],"locationId":2},{"id":19677,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19678],"locationId":3},{"id":19678,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19679],"locationId":398},{"id":19679,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19680],"locationId":399},{"id":19680,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19681],"locationId":2},{"id":19681,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19682],"locationId":3},{"id":19682,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19683],"locationId":398},{"id":19683,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19684],"locationId":399},{"id":19684,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19685],"locationId":2},{"id":19685,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19686],"locationId":3},{"id":19686,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19687],"locationId":398},{"id":19687,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19688],"locationId":399},{"id":19688,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19689],"locationId":2},{"id":19689,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19690],"locationId":3},{"id":19690,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19691],"locationId":398},{"id":19691,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19692],"locationId":399},{"id":19692,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19693],"locationId":2},{"id":19693,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19694],"locationId":3},{"id":19694,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19695],"locationId":398},{"id":19695,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19696],"locationId":399},{"id":19696,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19697],"locationId":2},{"id":19697,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19698],"locationId":3},{"id":19698,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19699],"locationId":398},{"id":19699,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19700],"locationId":399},{"id":19700,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19701],"locationId":2},{"id":19701,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19702],"locationId":3},{"id":19702,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19703],"locationId":398},{"id":19703,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19704],"locationId":399},{"id":19704,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19705],"locationId":2},{"id":19705,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19706],"locationId":3},{"id":19706,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19707],"locationId":398},{"id":19707,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19708],"locationId":399},{"id":19708,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19709],"locationId":2},{"id":19709,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19710],"locationId":3},{"id":19710,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19711],"locationId":398},{"id":19711,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19712],"locationId":399},{"id":19712,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19713],"locationId":2},{"id":19713,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19714],"locationId":3},{"id":19714,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19715],"locationId":398},{"id":19715,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19716],"locationId":399},{"id":19716,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19717],"locationId":2},{"id":19717,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19718],"locationId":3},{"id":19718,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19719],"locationId":398},{"id":19719,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19720],"locationId":399},{"id":19720,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19721],"locationId":2},{"id":19721,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19722],"locationId":3},{"id":19722,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19723],"locationId":398},{"id":19723,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19724],"locationId":399},{"id":19724,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19725],"locationId":2},{"id":19725,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19726],"locationId":3},{"id":19726,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19727],"locationId":398},{"id":19727,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19728],"locationId":399},{"id":19728,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19729],"locationId":2},{"id":19729,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19730],"locationId":3},{"id":19730,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19731],"locationId":398},{"id":19731,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19732],"locationId":399},{"id":19732,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19733],"locationId":2},{"id":19733,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19734],"locationId":3},{"id":19734,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19735],"locationId":398},{"id":19735,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19736],"locationId":399},{"id":19736,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19737],"locationId":2},{"id":19737,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19738],"locationId":3},{"id":19738,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19739],"locationId":398},{"id":19739,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19740],"locationId":399},{"id":19740,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19741],"locationId":2},{"id":19741,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19742],"locationId":3},{"id":19742,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19743],"locationId":398},{"id":19743,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19744],"locationId":399},{"id":19744,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19745],"locationId":2},{"id":19745,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19746],"locationId":3},{"id":19746,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19747],"locationId":398},{"id":19747,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19748],"locationId":399},{"id":19748,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19749],"locationId":2},{"id":19749,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19750],"locationId":3},{"id":19750,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19751],"locationId":398},{"id":19751,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19752],"locationId":399},{"id":19752,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19753],"locationId":2},{"id":19753,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19754],"locationId":3},{"id":19754,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19755],"locationId":398},{"id":19755,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19756],"locationId":399},{"id":19756,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19757],"locationId":2},{"id":19757,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19758],"locationId":3},{"id":19758,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19759],"locationId":398},{"id":19759,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19760],"locationId":399},{"id":19760,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19761],"locationId":2},{"id":19761,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19762],"locationId":3},{"id":19762,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19763],"locationId":398},{"id":19763,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19764],"locationId":399},{"id":19764,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19765],"locationId":2},{"id":19765,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19766],"locationId":3},{"id":19766,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19767],"locationId":398},{"id":19767,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19768],"locationId":399},{"id":19768,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19769],"locationId":2},{"id":19769,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19770],"locationId":3},{"id":19770,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19771],"locationId":398},{"id":19771,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19772],"locationId":399},{"id":19772,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19773],"locationId":2},{"id":19773,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19774],"locationId":3},{"id":19774,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19775],"locationId":398},{"id":19775,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19776],"locationId":399},{"id":19776,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19777],"locationId":2},{"id":19777,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19778],"locationId":3},{"id":19778,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19779],"locationId":398},{"id":19779,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19780],"locationId":399},{"id":19780,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19781],"locationId":2},{"id":19781,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19782],"locationId":3},{"id":19782,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19783],"locationId":398},{"id":19783,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19784],"locationId":399},{"id":19784,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19785],"locationId":2},{"id":19785,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19786],"locationId":3},{"id":19786,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19787],"locationId":398},{"id":19787,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19788],"locationId":399},{"id":19788,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19789],"locationId":2},{"id":19789,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19790],"locationId":3},{"id":19790,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19791],"locationId":398},{"id":19791,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19792],"locationId":399},{"id":19792,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19793],"locationId":2},{"id":19793,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19794],"locationId":3},{"id":19794,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19795],"locationId":398},{"id":19795,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19796],"locationId":399},{"id":19796,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19797,21387],"locationId":2},{"id":19797,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19798],"locationId":3},{"id":19798,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19799],"locationId":398},{"id":19799,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19800],"locationId":399},{"id":19800,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19801],"locationId":2},{"id":19801,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19802],"locationId":3},{"id":19802,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19803],"locationId":398},{"id":19803,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19804],"locationId":399},{"id":19804,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19805],"locationId":2},{"id":19805,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19806],"locationId":3},{"id":19806,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19807],"locationId":398},{"id":19807,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19808],"locationId":399},{"id":19808,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19809,20153],"locationId":2},{"id":19809,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19810],"locationId":3},{"id":19810,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19811],"locationId":398},{"id":19811,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19812],"locationId":399},{"id":19812,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19813],"locationId":2},{"id":19813,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19814],"locationId":3},{"id":19814,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19815],"locationId":398},{"id":19815,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19816],"locationId":399},{"id":19816,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19817,20572],"locationId":2},{"id":19817,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19818],"locationId":3},{"id":19818,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19819],"locationId":398},{"id":19819,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19820],"locationId":399},{"id":19820,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19821,21130],"locationId":2},{"id":19821,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19822],"locationId":3},{"id":19822,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19823],"locationId":398},{"id":19823,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19824],"locationId":399},{"id":19824,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19825],"locationId":2},{"id":19825,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19826],"locationId":3},{"id":19826,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19827],"locationId":398},{"id":19827,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19828],"locationId":399},{"id":19828,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19829,21272],"locationId":2},{"id":19829,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19830],"locationId":3},{"id":19830,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19831],"locationId":398},{"id":19831,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19832],"locationId":399},{"id":19832,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19833,20655],"locationId":2},{"id":19833,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19834],"locationId":3},{"id":19834,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19835],"locationId":398},{"id":19835,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19836],"locationId":399},{"id":19836,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19837,21033],"locationId":2},{"id":19837,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19838],"locationId":3},{"id":19838,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19839],"locationId":398},{"id":19839,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19840],"locationId":399},{"id":19840,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19841,20394],"locationId":2},{"id":19841,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19842],"locationId":3},{"id":19842,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19843],"locationId":398},{"id":19843,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19844],"locationId":399},{"id":19844,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19845,20068],"locationId":2},{"id":19845,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19846],"locationId":3},{"id":19846,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19847],"locationId":398},{"id":19847,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19848],"locationId":399},{"id":19848,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19849,19923],"locationId":2},{"id":19849,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19850],"locationId":5},{"id":19850,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19851],"locationId":6},{"id":19851,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19852],"locationId":7},{"id":19852,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19853],"locationId":6},{"id":19853,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[19854,20241],"locationId":8},{"id":19854,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[19855],"locationId":9},{"id":19855,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19856],"locationId":6},{"id":19856,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[19857,19877,19951,20388,20760,20772],"locationId":10},{"id":19857,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[19858],"locationId":84},{"id":19858,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19859],"locationId":6},{"id":19859,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[19860],"locationId":85},{"id":19860,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[19861],"locationId":86},{"id":19861,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":1,"children":[19862],"positionTicks":[{"line":29,"ticks":1,"startLocationId":483,"endLocationId":484}],"locationId":87},{"id":19862,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[19863],"locationId":88},{"id":19863,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[19864],"locationId":74},{"id":19864,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":188,"children":[19922,19936,19976,20570,20730,20818,21120,21360],"positionTicks":[{"line":39,"ticks":177,"startLocationId":186,"endLocationId":187},{"line":40,"ticks":11,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":19922,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":28,"positionTicks":[{"line":187,"ticks":1,"startLocationId":306,"endLocationId":307},{"line":211,"ticks":4,"startLocationId":504,"endLocationId":505},{"line":179,"ticks":3,"startLocationId":497,"endLocationId":498},{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131},{"line":181,"ticks":14,"startLocationId":134,"endLocationId":135},{"line":185,"ticks":4,"startLocationId":304,"endLocationId":305},{"line":226,"ticks":1,"startLocationId":796,"endLocationId":797}],"locationId":129},{"id":19936,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":253,"positionTicks":[{"line":83,"ticks":13,"startLocationId":92,"endLocationId":95},{"line":27,"ticks":23,"startLocationId":370,"endLocationId":371},{"line":74,"ticks":19,"startLocationId":188,"endLocationId":189},{"line":112,"ticks":2,"startLocationId":487,"endLocationId":392},{"line":48,"ticks":4,"startLocationId":488,"endLocationId":489},{"line":72,"ticks":16,"startLocationId":477,"endLocationId":210},{"line":76,"ticks":83,"startLocationId":93,"endLocationId":94},{"line":73,"ticks":43,"startLocationId":210,"endLocationId":188},{"line":110,"ticks":5,"startLocationId":490,"endLocationId":491},{"line":82,"ticks":2,"startLocationId":91,"endLocationId":92},{"line":791,"ticks":4,"startLocationId":494,"endLocationId":495},{"line":81,"ticks":7,"startLocationId":381,"endLocationId":91},{"line":26,"ticks":8,"startLocationId":191,"endLocationId":370},{"line":47,"ticks":3,"startLocationId":496,"endLocationId":488},{"line":113,"ticks":3,"startLocationId":392,"endLocationId":393},{"line":84,"ticks":2,"startLocationId":95,"endLocationId":480},{"line":86,"ticks":6,"startLocationId":382,"endLocationId":383},{"line":334,"ticks":5,"startLocationId":492,"endLocationId":493},{"line":13,"ticks":1,"startLocationId":366,"endLocationId":367},{"line":221,"ticks":1,"startLocationId":475,"endLocationId":476},{"line":50,"ticks":2,"startLocationId":388,"endLocationId":389},{"line":25,"ticks":1,"startLocationId":190,"endLocationId":191}],"locationId":90},{"id":19976,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":20,"positionTicks":[{"line":42,"ticks":20,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":20570,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":45,"ticks":1,"startLocationId":776,"endLocationId":777}],"locationId":97},{"id":20730,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":1,"positionTicks":[{"line":244,"ticks":1,"startLocationId":508,"endLocationId":509}],"locationId":102},{"id":20818,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":3,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":21120,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":25,"ticks":3,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":21360,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":20,"ticks":1,"startLocationId":506,"endLocationId":507}],"locationId":239},{"id":19877,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[19878],"locationId":11},{"id":19878,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":8,"children":[19879,20014,20654,21325,21330],"positionTicks":[{"line":568,"ticks":7,"startLocationId":400,"endLocationId":401},{"line":570,"ticks":1,"startLocationId":510,"endLocationId":511}],"locationId":12},{"id":19879,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[19880],"locationId":13},{"id":19880,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":74,"children":[19881,19963,20010,20377,20454,21126],"positionTicks":[{"line":579,"ticks":6,"startLocationId":200,"endLocationId":201},{"line":576,"ticks":38,"startLocationId":212,"endLocationId":213},{"line":578,"ticks":19,"startLocationId":206,"endLocationId":200},{"line":577,"ticks":9,"startLocationId":213,"endLocationId":206},{"line":575,"ticks":2,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":19881,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":20,"positionTicks":[{"line":646,"ticks":3,"startLocationId":798,"endLocationId":37},{"line":647,"ticks":6,"startLocationId":37,"endLocationId":38},{"line":634,"ticks":2,"startLocationId":255,"endLocationId":221},{"line":42,"ticks":1,"startLocationId":626,"endLocationId":627},{"line":26,"ticks":2,"startLocationId":525,"endLocationId":526},{"line":635,"ticks":5,"startLocationId":221,"endLocationId":222},{"line":636,"ticks":1,"startLocationId":222,"endLocationId":223}],"locationId":36},{"id":19963,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":25,"positionTicks":[{"line":733,"ticks":4,"startLocationId":384,"endLocationId":385},{"line":725,"ticks":4,"startLocationId":528,"endLocationId":34},{"line":741,"ticks":2,"startLocationId":696,"endLocationId":697},{"line":737,"ticks":7,"startLocationId":253,"endLocationId":254},{"line":728,"ticks":4,"startLocationId":529,"endLocationId":530},{"line":726,"ticks":4,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":20010,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":16,"positionTicks":[{"line":766,"ticks":4,"startLocationId":532,"endLocationId":533},{"line":762,"ticks":4,"startLocationId":238,"endLocationId":22},{"line":763,"ticks":5,"startLocationId":22,"endLocationId":23},{"line":760,"ticks":1,"startLocationId":536,"endLocationId":537},{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21},{"line":97,"ticks":1,"startLocationId":799,"endLocationId":800}],"locationId":15},{"id":20377,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":6,"positionTicks":[{"line":692,"ticks":4,"startLocationId":192,"endLocationId":193},{"line":370,"ticks":1,"startLocationId":539,"endLocationId":540},{"line":682,"ticks":1,"startLocationId":454,"endLocationId":455}],"locationId":64},{"id":20454,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":7,"positionTicks":[{"line":791,"ticks":1,"startLocationId":801,"endLocationId":802},{"line":664,"ticks":1,"startLocationId":313,"endLocationId":314},{"line":671,"ticks":2,"startLocationId":763,"endLocationId":764},{"line":412,"ticks":2,"startLocationId":521,"endLocationId":522},{"line":662,"ticks":1,"startLocationId":376,"endLocationId":377}],"locationId":46},{"id":21126,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":279,"ticks":1,"startLocationId":616,"endLocationId":52}],"locationId":49},{"id":20014,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":17,"positionTicks":[{"line":808,"ticks":4,"startLocationId":257,"endLocationId":258},{"line":803,"ticks":7,"startLocationId":368,"endLocationId":369},{"line":809,"ticks":3,"startLocationId":258,"endLocationId":379},{"line":806,"ticks":1,"startLocationId":515,"endLocationId":803},{"line":814,"ticks":1,"startLocationId":513,"endLocationId":518},{"line":810,"ticks":1,"startLocationId":379,"endLocationId":380}],"locationId":256},{"id":20654,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":887,"ticks":1,"startLocationId":319,"endLocationId":320},{"line":871,"ticks":1,"startLocationId":804,"endLocationId":805},{"line":854,"ticks":1,"startLocationId":806,"endLocationId":807}],"locationId":72},{"id":21325,"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":69,"ticks":1,"startLocationId":549,"endLocationId":550}],"locationId":78},{"id":21330,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[21331],"locationId":372},{"id":21331,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[21332],"locationId":373},{"id":21332,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":1,"positionTicks":[{"line":245,"ticks":1,"startLocationId":547,"endLocationId":548}],"locationId":545},{"id":19951,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":10,"positionTicks":[{"line":547,"ticks":10,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":20388,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":20,"positionTicks":[{"line":348,"ticks":13,"startLocationId":208,"endLocationId":209},{"line":346,"ticks":7,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":20760,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[20761],"locationId":12},{"id":20761,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[20762],"locationId":13},{"id":20762,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[20763],"locationId":14},{"id":20763,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"children":[20764,20901],"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":20764,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[20765],"locationId":54},{"id":20765,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[20766],"locationId":55},{"id":20766,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[20767],"locationId":56},{"id":20767,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":2,"positionTicks":[{"line":791,"ticks":2,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":20901,"callFrame":{"functionName":"scopeFunctionShadowedByBuiltInFunction","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":553,"columnNumber":44},"hitCount":3,"positionTicks":[{"line":554,"ticks":3,"startLocationId":551,"endLocationId":552}],"locationId":261},{"id":20772,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[20773],"locationId":151},{"id":20773,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[20774],"locationId":152},{"id":20774,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":2,"children":[20775],"positionTicks":[{"line":426,"ticks":2,"startLocationId":478,"endLocationId":479}],"locationId":74},{"id":20775,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":438,"columnNumber":31},"hitCount":2,"positionTicks":[{"line":440,"ticks":1,"startLocationId":553,"endLocationId":325},{"line":441,"ticks":1,"startLocationId":325,"endLocationId":326}],"locationId":324},{"id":20241,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[20242,20560],"locationId":157},{"id":20242,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[20243],"locationId":164},{"id":20243,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20244],"locationId":29},{"id":20244,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[20245],"locationId":165},{"id":20245,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[20246],"locationId":166},{"id":20246,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[20247],"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":20247,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":4,"positionTicks":[{"line":90,"ticks":1,"startLocationId":808,"endLocationId":809},{"line":143,"ticks":1,"startLocationId":810,"endLocationId":811},{"line":151,"ticks":1,"startLocationId":559,"endLocationId":760},{"line":69,"ticks":1,"startLocationId":812,"endLocationId":813}],"locationId":167},{"id":20560,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[20561],"locationId":158},{"id":20561,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":2,"children":[20562],"positionTicks":[{"line":15,"ticks":2,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":20562,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[20563],"locationId":159},{"id":20563,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[20564],"locationId":160},{"id":20564,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":7,"positionTicks":[{"line":77,"ticks":4,"startLocationId":235,"endLocationId":207},{"line":78,"ticks":3,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":19923,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[19924],"locationId":3},{"id":19924,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[19925],"locationId":398},{"id":19925,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[19926],"locationId":399},{"id":19926,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[19927,21343],"locationId":2},{"id":19927,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[19928],"locationId":5},{"id":19928,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[19929],"locationId":6},{"id":19929,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[19930,21195,21323],"locationId":7},{"id":19930,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":9,"children":[20420],"positionTicks":[{"line":534,"ticks":9,"startLocationId":236,"endLocationId":237}],"locationId":196},{"id":20420,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[20421],"locationId":197},{"id":20421,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[20422],"locationId":198},{"id":20422,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[20423,20569],"locationId":29},{"id":20423,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"hitCount":0,"children":[20424],"locationId":199},{"id":20424,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":2,"positionTicks":[{"line":403,"ticks":2,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":20569,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":4,"positionTicks":[{"line":26,"ticks":4,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":21195,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":1,"children":[21196],"positionTicks":[{"line":139,"ticks":1,"startLocationId":570,"endLocationId":571}],"locationId":6},{"id":21196,"callFrame":{"functionName":"get parser","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":169,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":170,"ticks":1,"startLocationId":572,"endLocationId":443}],"locationId":442},{"id":21323,"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"hitCount":0,"children":[21324],"locationId":283},{"id":21324,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"hitCount":2,"positionTicks":[{"line":507,"ticks":1,"startLocationId":287,"endLocationId":288},{"line":506,"ticks":1,"startLocationId":577,"endLocationId":287}],"locationId":286},{"id":21343,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[21344],"locationId":3},{"id":21344,"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[21345],"locationId":398},{"id":21345,"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[21346],"locationId":399},{"id":21346,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":2,"positionTicks":[{"line":21,"ticks":1,"startLocationId":814,"endLocationId":462},{"line":28,"ticks":1,"startLocationId":815,"endLocationId":816}],"locationId":2},{"id":20068,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20069],"locationId":5},{"id":20069,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20070],"locationId":6},{"id":20070,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20071],"locationId":7},{"id":20071,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20072],"locationId":6},{"id":20072,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20073],"locationId":8},{"id":20073,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20074],"locationId":9},{"id":20074,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20075],"locationId":6},{"id":20075,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20076],"locationId":10},{"id":20076,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20077],"locationId":84},{"id":20077,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20078],"locationId":6},{"id":20078,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20079],"locationId":85},{"id":20079,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20080],"locationId":86},{"id":20080,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20081],"locationId":87},{"id":20081,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20082],"locationId":88},{"id":20082,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20083],"locationId":74},{"id":20083,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20084],"locationId":89},{"id":20084,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20085,20455,20565,21383,21523],"locationId":90},{"id":20085,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[20086,20464],"locationId":102},{"id":20086,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[20087],"locationId":247},{"id":20087,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[20088],"locationId":248},{"id":20088,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[20089],"locationId":249},{"id":20089,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":4,"positionTicks":[{"line":82,"ticks":3,"startLocationId":251,"endLocationId":252},{"line":67,"ticks":1,"startLocationId":636,"endLocationId":637}],"locationId":250},{"id":20464,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":20455,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20456,20651],"locationId":109},{"id":20456,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20457,20623],"locationId":109},{"id":20457,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20458],"locationId":114},{"id":20458,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":10,"children":[21031],"positionTicks":[{"line":29,"ticks":10,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21031,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":2,"startLocationId":245,"endLocationId":246},{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20623,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20624,20688],"locationId":109},{"id":20624,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":7,"positionTicks":[{"line":29,"ticks":7,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20688,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":4,"positionTicks":[{"line":27,"ticks":4,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20651,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20652],"locationId":114},{"id":20652,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20653],"locationId":114},{"id":20653,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":9,"children":[20962],"positionTicks":[{"line":29,"ticks":9,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20962,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116},{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":20565,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[20566],"locationId":97},{"id":20566,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[20567],"locationId":97},{"id":20567,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"children":[20621],"positionTicks":[{"line":47,"ticks":2,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":20621,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":4,"positionTicks":[{"line":48,"ticks":4,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":21383,"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"hitCount":0,"children":[21384],"locationId":239},{"id":21384,"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"hitCount":0,"children":[21385],"locationId":240},{"id":21385,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":0,"children":[21386],"locationId":262},{"id":21386,"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":418,"endLocationId":419}],"locationId":417},{"id":21523,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[21524],"locationId":40},{"id":21524,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[21525],"locationId":29},{"id":21525,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":54},"hitCount":0,"children":[21526],"locationId":561},{"id":21526,"callFrame":{"functionName":"buildNamespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":451,"columnNumber":24},"hitCount":0,"children":[21527],"locationId":628},{"id":21527,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[21528],"locationId":13},{"id":21528,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[21529],"locationId":68},{"id":21529,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":20394,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20395],"locationId":5},{"id":20395,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20396],"locationId":6},{"id":20396,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20397],"locationId":7},{"id":20397,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20398],"locationId":6},{"id":20398,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20399],"locationId":8},{"id":20399,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20400],"locationId":9},{"id":20400,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20401],"locationId":6},{"id":20401,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20402],"locationId":10},{"id":20402,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20403],"locationId":84},{"id":20403,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20404],"locationId":6},{"id":20404,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20405],"locationId":85},{"id":20405,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20406],"locationId":86},{"id":20406,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20407],"locationId":87},{"id":20407,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20408],"locationId":88},{"id":20408,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20409],"locationId":74},{"id":20409,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20410],"locationId":89},{"id":20410,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20411],"locationId":90},{"id":20411,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20412,20971],"locationId":109},{"id":20412,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20413,20738],"locationId":109},{"id":20413,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20414],"locationId":109},{"id":20414,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20415,21310],"locationId":109},{"id":20415,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20416],"locationId":114},{"id":20416,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20417],"locationId":114},{"id":20417,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20418],"locationId":114},{"id":20418,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":4,"children":[20419],"positionTicks":[{"line":29,"ticks":4,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20419,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":21310,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21311,21370],"locationId":109},{"id":21311,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21312],"locationId":109},{"id":21312,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21313],"locationId":109},{"id":21313,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21370,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21371],"locationId":114},{"id":21371,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21372],"locationId":114},{"id":21372,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20738,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20739],"locationId":114},{"id":20739,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20740],"locationId":114},{"id":20740,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20741],"locationId":114},{"id":20741,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20742],"locationId":114},{"id":20742,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20743],"locationId":114},{"id":20743,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20971,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20972],"locationId":114},{"id":20972,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20973],"locationId":114},{"id":20973,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20974],"locationId":114},{"id":20974,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20975],"locationId":114},{"id":20975,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20976],"locationId":114},{"id":20976,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[20977],"locationId":114},{"id":20977,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21033,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21034],"locationId":5},{"id":21034,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21035],"locationId":6},{"id":21035,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21036],"locationId":7},{"id":21036,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21037],"locationId":6},{"id":21037,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21038],"locationId":8},{"id":21038,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21039],"locationId":9},{"id":21039,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21040],"locationId":6},{"id":21040,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21041],"locationId":10},{"id":21041,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21042],"locationId":84},{"id":21042,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21043],"locationId":6},{"id":21043,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21044],"locationId":85},{"id":21044,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21045],"locationId":86},{"id":21045,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21046],"locationId":87},{"id":21046,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21047],"locationId":88},{"id":21047,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21048],"locationId":74},{"id":21048,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21049],"locationId":89},{"id":21049,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21050],"locationId":90},{"id":21050,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21051],"locationId":109},{"id":21051,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21052,21260],"locationId":109},{"id":21052,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21053],"locationId":109},{"id":21053,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21054,21205],"locationId":109},{"id":21054,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21055],"locationId":114},{"id":21055,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21056],"locationId":114},{"id":21056,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21057],"locationId":114},{"id":21057,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21058],"locationId":114},{"id":21058,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21059],"locationId":114},{"id":21059,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21060],"locationId":114},{"id":21060,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21061],"locationId":114},{"id":21061,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21205,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21206],"locationId":109},{"id":21206,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21207],"locationId":109},{"id":21207,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21208],"locationId":109},{"id":21208,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21209],"locationId":109},{"id":21209,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21210],"locationId":109},{"id":21210,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21211],"locationId":109},{"id":21211,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21212],"locationId":109},{"id":21212,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21260,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21261],"locationId":114},{"id":21261,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21262],"locationId":114},{"id":21262,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21263],"locationId":114},{"id":21263,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21264],"locationId":114},{"id":21264,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21265],"locationId":114},{"id":21265,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21266],"locationId":114},{"id":21266,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21267],"locationId":114},{"id":21267,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21268],"locationId":114},{"id":21268,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[21269],"locationId":114},{"id":21269,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":20655,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20656],"locationId":5},{"id":20656,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20657],"locationId":6},{"id":20657,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20658],"locationId":7},{"id":20658,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20659],"locationId":6},{"id":20659,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20660],"locationId":8},{"id":20660,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20661],"locationId":9},{"id":20661,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20662],"locationId":6},{"id":20662,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20663],"locationId":10},{"id":20663,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20664],"locationId":84},{"id":20664,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20665],"locationId":6},{"id":20665,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20666],"locationId":85},{"id":20666,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20667],"locationId":86},{"id":20667,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20668],"locationId":87},{"id":20668,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20669],"locationId":88},{"id":20669,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20670],"locationId":74},{"id":20670,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20671],"locationId":89},{"id":20671,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20672],"locationId":90},{"id":20672,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20673],"locationId":109},{"id":20673,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20674],"locationId":109},{"id":20674,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20675],"locationId":109},{"id":20675,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20676],"locationId":109},{"id":20676,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20677],"locationId":109},{"id":20677,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20678],"locationId":109},{"id":20678,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20679],"locationId":109},{"id":20679,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20680],"locationId":109},{"id":20680,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20681],"locationId":109},{"id":20681,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20682],"locationId":109},{"id":20682,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20683],"locationId":109},{"id":20683,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20684],"locationId":109},{"id":20684,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20685],"locationId":109},{"id":20685,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20686],"locationId":109},{"id":20686,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20687,21336],"locationId":109},{"id":20687,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":21336,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21272,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21273],"locationId":5},{"id":21273,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21274],"locationId":6},{"id":21274,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21275],"locationId":7},{"id":21275,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21276],"locationId":6},{"id":21276,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21277],"locationId":8},{"id":21277,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21278],"locationId":9},{"id":21278,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21279],"locationId":6},{"id":21279,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21280],"locationId":10},{"id":21280,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21281],"locationId":84},{"id":21281,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21282],"locationId":6},{"id":21282,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21283],"locationId":85},{"id":21283,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21284],"locationId":86},{"id":21284,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21285],"locationId":87},{"id":21285,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21286],"locationId":88},{"id":21286,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21287],"locationId":74},{"id":21287,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21288],"locationId":89},{"id":21288,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21289],"locationId":90},{"id":21289,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21290],"locationId":109},{"id":21290,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21291],"locationId":109},{"id":21291,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21292],"locationId":109},{"id":21292,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21293],"locationId":109},{"id":21293,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21294],"locationId":109},{"id":21294,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21295],"locationId":109},{"id":21295,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21296],"locationId":109},{"id":21296,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21297],"locationId":109},{"id":21297,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21298],"locationId":109},{"id":21298,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21299],"locationId":109},{"id":21299,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21300],"locationId":109},{"id":21300,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21301],"locationId":109},{"id":21301,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21302],"locationId":109},{"id":21302,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21303],"locationId":109},{"id":21303,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21304],"locationId":109},{"id":21304,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21305],"locationId":109},{"id":21305,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21306],"locationId":109},{"id":21306,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21307],"locationId":109},{"id":21307,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21308],"locationId":109},{"id":21308,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21130,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21131],"locationId":5},{"id":21131,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21132],"locationId":6},{"id":21132,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21133],"locationId":7},{"id":21133,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21134],"locationId":6},{"id":21134,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21135],"locationId":8},{"id":21135,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21136],"locationId":9},{"id":21136,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21137],"locationId":6},{"id":21137,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21138],"locationId":10},{"id":21138,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21139],"locationId":84},{"id":21139,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21140],"locationId":6},{"id":21140,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21141],"locationId":85},{"id":21141,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21142],"locationId":86},{"id":21142,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21143],"locationId":87},{"id":21143,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21144],"locationId":88},{"id":21144,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21145],"locationId":74},{"id":21145,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21146],"locationId":89},{"id":21146,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21147],"locationId":90},{"id":21147,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21148],"locationId":109},{"id":21148,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21149],"locationId":109},{"id":21149,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21150],"locationId":109},{"id":21150,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21151],"locationId":109},{"id":21151,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21152],"locationId":109},{"id":21152,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21153],"locationId":109},{"id":21153,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21154],"locationId":109},{"id":21154,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21155],"locationId":109},{"id":21155,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21156],"locationId":109},{"id":21156,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21157],"locationId":109},{"id":21157,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21158],"locationId":109},{"id":21158,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21159],"locationId":109},{"id":21159,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21160],"locationId":109},{"id":21160,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21161],"locationId":109},{"id":21161,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21162],"locationId":109},{"id":21162,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21163],"locationId":109},{"id":21163,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21164],"locationId":109},{"id":21164,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21165],"locationId":109},{"id":21165,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21166],"locationId":109},{"id":21166,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21167],"locationId":109},{"id":21167,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21168],"locationId":109},{"id":21168,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21169],"locationId":109},{"id":21169,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21170],"locationId":109},{"id":21170,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21171],"locationId":109},{"id":21171,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21172],"locationId":109},{"id":21172,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21173],"locationId":109},{"id":21173,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21174],"locationId":109},{"id":21174,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20572,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20573],"locationId":5},{"id":20573,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20574],"locationId":6},{"id":20574,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20575],"locationId":7},{"id":20575,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20576],"locationId":6},{"id":20576,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20577],"locationId":8},{"id":20577,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20578],"locationId":9},{"id":20578,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20579],"locationId":6},{"id":20579,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20580],"locationId":10},{"id":20580,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20581],"locationId":84},{"id":20581,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20582],"locationId":6},{"id":20582,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20583],"locationId":85},{"id":20583,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20584],"locationId":86},{"id":20584,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20585],"locationId":87},{"id":20585,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20586],"locationId":88},{"id":20586,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20587],"locationId":74},{"id":20587,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20588],"locationId":89},{"id":20588,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20589],"locationId":90},{"id":20589,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20590],"locationId":109},{"id":20590,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20591],"locationId":109},{"id":20591,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20592],"locationId":109},{"id":20592,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20593],"locationId":109},{"id":20593,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20594],"locationId":109},{"id":20594,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20595],"locationId":109},{"id":20595,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20596],"locationId":109},{"id":20596,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20597],"locationId":109},{"id":20597,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20598],"locationId":109},{"id":20598,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20599],"locationId":109},{"id":20599,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20600],"locationId":109},{"id":20600,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20601],"locationId":109},{"id":20601,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20602],"locationId":109},{"id":20602,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20603],"locationId":109},{"id":20603,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20604],"locationId":109},{"id":20604,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20605],"locationId":109},{"id":20605,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20606],"locationId":109},{"id":20606,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20607],"locationId":109},{"id":20607,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20608],"locationId":109},{"id":20608,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20609],"locationId":109},{"id":20609,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20610],"locationId":109},{"id":20610,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20611],"locationId":109},{"id":20611,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20612],"locationId":109},{"id":20612,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20613],"locationId":109},{"id":20613,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20614],"locationId":109},{"id":20614,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20615],"locationId":109},{"id":20615,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20616],"locationId":109},{"id":20616,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20617],"locationId":109},{"id":20617,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20618],"locationId":109},{"id":20618,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20619],"locationId":109},{"id":20619,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20620],"locationId":109},{"id":20620,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":20153,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[20154],"locationId":5},{"id":20154,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20155],"locationId":6},{"id":20155,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[20156],"locationId":7},{"id":20156,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20157],"locationId":6},{"id":20157,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[20158],"locationId":8},{"id":20158,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[20159],"locationId":9},{"id":20159,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20160],"locationId":6},{"id":20160,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[20161],"locationId":10},{"id":20161,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[20162],"locationId":84},{"id":20162,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[20163],"locationId":6},{"id":20163,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[20164],"locationId":85},{"id":20164,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[20165],"locationId":86},{"id":20165,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[20166],"locationId":87},{"id":20166,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[20167],"locationId":88},{"id":20167,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[20168],"locationId":74},{"id":20168,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[20169],"locationId":89},{"id":20169,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[20170],"locationId":90},{"id":20170,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20171],"locationId":109},{"id":20171,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20172],"locationId":109},{"id":20172,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20173],"locationId":109},{"id":20173,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20174],"locationId":109},{"id":20174,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20175],"locationId":109},{"id":20175,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20176],"locationId":109},{"id":20176,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20177],"locationId":109},{"id":20177,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20178],"locationId":109},{"id":20178,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20179],"locationId":109},{"id":20179,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20180],"locationId":109},{"id":20180,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20181],"locationId":109},{"id":20181,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20182],"locationId":109},{"id":20182,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20183],"locationId":109},{"id":20183,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20184],"locationId":109},{"id":20184,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20185],"locationId":109},{"id":20185,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20186],"locationId":109},{"id":20186,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20187],"locationId":109},{"id":20187,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20188],"locationId":109},{"id":20188,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20189],"locationId":109},{"id":20189,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20190],"locationId":109},{"id":20190,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20191],"locationId":109},{"id":20191,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20192],"locationId":109},{"id":20192,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20193],"locationId":109},{"id":20193,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20194],"locationId":109},{"id":20194,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20195],"locationId":109},{"id":20195,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20196],"locationId":109},{"id":20196,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20197],"locationId":109},{"id":20197,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20198],"locationId":109},{"id":20198,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20199],"locationId":109},{"id":20199,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20200],"locationId":109},{"id":20200,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20201],"locationId":109},{"id":20201,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20202],"locationId":109},{"id":20202,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20203],"locationId":109},{"id":20203,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20204],"locationId":109},{"id":20204,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20205],"locationId":109},{"id":20205,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20206],"locationId":109},{"id":20206,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20207],"locationId":109},{"id":20207,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20208],"locationId":109},{"id":20208,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[20209],"locationId":109},{"id":20209,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":21387,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[21388],"locationId":5},{"id":21388,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21389],"locationId":6},{"id":21389,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[21390],"locationId":7},{"id":21390,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21391],"locationId":6},{"id":21391,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[21392],"locationId":8},{"id":21392,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[21393],"locationId":9},{"id":21393,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21394],"locationId":6},{"id":21394,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[21395],"locationId":10},{"id":21395,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[21396],"locationId":84},{"id":21396,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[21397],"locationId":6},{"id":21397,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[21398],"locationId":85},{"id":21398,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[21399],"locationId":86},{"id":21399,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[21400],"locationId":87},{"id":21400,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[21401],"locationId":88},{"id":21401,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[21402],"locationId":74},{"id":21402,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[21403],"locationId":89},{"id":21403,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[21404],"locationId":90},{"id":21404,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21405],"locationId":109},{"id":21405,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21406],"locationId":109},{"id":21406,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21407],"locationId":109},{"id":21407,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21408],"locationId":109},{"id":21408,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21409],"locationId":109},{"id":21409,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21410],"locationId":109},{"id":21410,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21411],"locationId":109},{"id":21411,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21412],"locationId":109},{"id":21412,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21413],"locationId":109},{"id":21413,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21414],"locationId":109},{"id":21414,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21415],"locationId":109},{"id":21415,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21416],"locationId":109},{"id":21416,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21417],"locationId":109},{"id":21417,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21418],"locationId":109},{"id":21418,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21419],"locationId":109},{"id":21419,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21420],"locationId":109},{"id":21420,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21421],"locationId":109},{"id":21421,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21422],"locationId":109},{"id":21422,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21423],"locationId":109},{"id":21423,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21424],"locationId":109},{"id":21424,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21425],"locationId":109},{"id":21425,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21426],"locationId":109},{"id":21426,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21427],"locationId":109},{"id":21427,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21428],"locationId":109},{"id":21428,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21429],"locationId":109},{"id":21429,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21430],"locationId":109},{"id":21430,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21431],"locationId":109},{"id":21431,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21432],"locationId":109},{"id":21432,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21433],"locationId":109},{"id":21433,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21434],"locationId":109},{"id":21434,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21435],"locationId":109},{"id":21435,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21436],"locationId":109},{"id":21436,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21437],"locationId":109},{"id":21437,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21438],"locationId":109},{"id":21438,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21439],"locationId":109},{"id":21439,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21440],"locationId":109},{"id":21440,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21441],"locationId":109},{"id":21441,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21442],"locationId":109},{"id":21442,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21443],"locationId":109},{"id":21443,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21444],"locationId":109},{"id":21444,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21445],"locationId":109},{"id":21445,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21446],"locationId":109},{"id":21446,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21447],"locationId":109},{"id":21447,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21448],"locationId":109},{"id":21448,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21449],"locationId":109},{"id":21449,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21450],"locationId":109},{"id":21450,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21451],"locationId":109},{"id":21451,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21452],"locationId":109},{"id":21452,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21453],"locationId":109},{"id":21453,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21454],"locationId":109},{"id":21454,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[21455],"locationId":109},{"id":21455,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":27018,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27019],"locationId":452},{"id":27019,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27020],"locationId":453},{"id":27020,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27021],"locationId":2},{"id":27021,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27022],"locationId":3},{"id":27022,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27023],"locationId":452},{"id":27023,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27024],"locationId":453},{"id":27024,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27025],"locationId":2},{"id":27025,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27026],"locationId":3},{"id":27026,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27027],"locationId":452},{"id":27027,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27028],"locationId":453},{"id":27028,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27029],"locationId":2},{"id":27029,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27030],"locationId":3},{"id":27030,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27031],"locationId":452},{"id":27031,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27032],"locationId":453},{"id":27032,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27033],"locationId":2},{"id":27033,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27034],"locationId":3},{"id":27034,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27035],"locationId":452},{"id":27035,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27036],"locationId":453},{"id":27036,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27037],"locationId":2},{"id":27037,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27038],"locationId":3},{"id":27038,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27039],"locationId":452},{"id":27039,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27040],"locationId":453},{"id":27040,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27041],"locationId":2},{"id":27041,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27042],"locationId":3},{"id":27042,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27043],"locationId":452},{"id":27043,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27044],"locationId":453},{"id":27044,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27045],"locationId":2},{"id":27045,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27046],"locationId":3},{"id":27046,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27047],"locationId":452},{"id":27047,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27048],"locationId":453},{"id":27048,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27049],"locationId":2},{"id":27049,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27050],"locationId":3},{"id":27050,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27051],"locationId":452},{"id":27051,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27052],"locationId":453},{"id":27052,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27053],"locationId":2},{"id":27053,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27054],"locationId":3},{"id":27054,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27055],"locationId":452},{"id":27055,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27056],"locationId":453},{"id":27056,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27057],"locationId":2},{"id":27057,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27058],"locationId":3},{"id":27058,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27059],"locationId":452},{"id":27059,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27060],"locationId":453},{"id":27060,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27061],"locationId":2},{"id":27061,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27062],"locationId":3},{"id":27062,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27063],"locationId":452},{"id":27063,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27064],"locationId":453},{"id":27064,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27065],"locationId":2},{"id":27065,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27066],"locationId":3},{"id":27066,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27067],"locationId":452},{"id":27067,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27068],"locationId":453},{"id":27068,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27069],"locationId":2},{"id":27069,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27070],"locationId":3},{"id":27070,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27071],"locationId":452},{"id":27071,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27072],"locationId":453},{"id":27072,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27073],"locationId":2},{"id":27073,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27074],"locationId":3},{"id":27074,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27075],"locationId":452},{"id":27075,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27076],"locationId":453},{"id":27076,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27077],"locationId":2},{"id":27077,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27078],"locationId":3},{"id":27078,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27079],"locationId":452},{"id":27079,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27080],"locationId":453},{"id":27080,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27081],"locationId":2},{"id":27081,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27082],"locationId":3},{"id":27082,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27083],"locationId":452},{"id":27083,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27084],"locationId":453},{"id":27084,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27085],"locationId":2},{"id":27085,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27086],"locationId":3},{"id":27086,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27087],"locationId":452},{"id":27087,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27088],"locationId":453},{"id":27088,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27089],"locationId":2},{"id":27089,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27090],"locationId":3},{"id":27090,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27091],"locationId":452},{"id":27091,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27092],"locationId":453},{"id":27092,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27093],"locationId":2},{"id":27093,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27094],"locationId":3},{"id":27094,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27095],"locationId":452},{"id":27095,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27096],"locationId":453},{"id":27096,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27097],"locationId":2},{"id":27097,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27098],"locationId":3},{"id":27098,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27099],"locationId":452},{"id":27099,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27100],"locationId":453},{"id":27100,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27101],"locationId":2},{"id":27101,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27102],"locationId":3},{"id":27102,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27103],"locationId":452},{"id":27103,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27104],"locationId":453},{"id":27104,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27105],"locationId":2},{"id":27105,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27106],"locationId":3},{"id":27106,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27107],"locationId":452},{"id":27107,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27108],"locationId":453},{"id":27108,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27109],"locationId":2},{"id":27109,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27110],"locationId":3},{"id":27110,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27111],"locationId":452},{"id":27111,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27112],"locationId":453},{"id":27112,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27113],"locationId":2},{"id":27113,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27114],"locationId":3},{"id":27114,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27115],"locationId":452},{"id":27115,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27116],"locationId":453},{"id":27116,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27117],"locationId":2},{"id":27117,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27118],"locationId":3},{"id":27118,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27119],"locationId":452},{"id":27119,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27120],"locationId":453},{"id":27120,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27121],"locationId":2},{"id":27121,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27122],"locationId":3},{"id":27122,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27123],"locationId":452},{"id":27123,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27124],"locationId":453},{"id":27124,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27125],"locationId":2},{"id":27125,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27126],"locationId":3},{"id":27126,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27127],"locationId":452},{"id":27127,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27128],"locationId":453},{"id":27128,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27129],"locationId":2},{"id":27129,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27130],"locationId":3},{"id":27130,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27131],"locationId":452},{"id":27131,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27132],"locationId":453},{"id":27132,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27133],"locationId":2},{"id":27133,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27134],"locationId":3},{"id":27134,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27135],"locationId":452},{"id":27135,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27136],"locationId":453},{"id":27136,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27137],"locationId":2},{"id":27137,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27138],"locationId":3},{"id":27138,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27139],"locationId":452},{"id":27139,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27140],"locationId":453},{"id":27140,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27141],"locationId":2},{"id":27141,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27142],"locationId":3},{"id":27142,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27143],"locationId":452},{"id":27143,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27144],"locationId":453},{"id":27144,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27145],"locationId":2},{"id":27145,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27146],"locationId":3},{"id":27146,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27147],"locationId":452},{"id":27147,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27148],"locationId":453},{"id":27148,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27149],"locationId":2},{"id":27149,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27150],"locationId":3},{"id":27150,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27151],"locationId":452},{"id":27151,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27152],"locationId":453},{"id":27152,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27153],"locationId":2},{"id":27153,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27154],"locationId":3},{"id":27154,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27155],"locationId":452},{"id":27155,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27156],"locationId":453},{"id":27156,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27157],"locationId":2},{"id":27157,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27158],"locationId":3},{"id":27158,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27159],"locationId":452},{"id":27159,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27160],"locationId":453},{"id":27160,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27161],"locationId":2},{"id":27161,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27162],"locationId":3},{"id":27162,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27163],"locationId":452},{"id":27163,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27164],"locationId":453},{"id":27164,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27165],"locationId":2},{"id":27165,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27166],"locationId":3},{"id":27166,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27167],"locationId":452},{"id":27167,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27168],"locationId":453},{"id":27168,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27169],"locationId":2},{"id":27169,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27170],"locationId":3},{"id":27170,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27171],"locationId":452},{"id":27171,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27172],"locationId":453},{"id":27172,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27173],"locationId":2},{"id":27173,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27174],"locationId":3},{"id":27174,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27175],"locationId":452},{"id":27175,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27176],"locationId":453},{"id":27176,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27177],"locationId":2},{"id":27177,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27178],"locationId":3},{"id":27178,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27179],"locationId":452},{"id":27179,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27180],"locationId":453},{"id":27180,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27181],"locationId":2},{"id":27181,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27182],"locationId":3},{"id":27182,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27183],"locationId":452},{"id":27183,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27184],"locationId":453},{"id":27184,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27185],"locationId":2},{"id":27185,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27186],"locationId":3},{"id":27186,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27187],"locationId":452},{"id":27187,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27188],"locationId":453},{"id":27188,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27189],"locationId":2},{"id":27189,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27190],"locationId":3},{"id":27190,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27191],"locationId":452},{"id":27191,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27192],"locationId":453},{"id":27192,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27193],"locationId":2},{"id":27193,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27194],"locationId":3},{"id":27194,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27195],"locationId":452},{"id":27195,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27196],"locationId":453},{"id":27196,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27197],"locationId":2},{"id":27197,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27198],"locationId":3},{"id":27198,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27199],"locationId":452},{"id":27199,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27200],"locationId":453},{"id":27200,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27201],"locationId":2},{"id":27201,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27202],"locationId":3},{"id":27202,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27203],"locationId":452},{"id":27203,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27204],"locationId":453},{"id":27204,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27205],"locationId":2},{"id":27205,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27206],"locationId":3},{"id":27206,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27207],"locationId":452},{"id":27207,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27208],"locationId":453},{"id":27208,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27209],"locationId":2},{"id":27209,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27210],"locationId":3},{"id":27210,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27211],"locationId":452},{"id":27211,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27212],"locationId":453},{"id":27212,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27213],"locationId":2},{"id":27213,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27214],"locationId":3},{"id":27214,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27215],"locationId":452},{"id":27215,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27216],"locationId":453},{"id":27216,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27217],"locationId":2},{"id":27217,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27218],"locationId":3},{"id":27218,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27219],"locationId":452},{"id":27219,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27220],"locationId":453},{"id":27220,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27221],"locationId":2},{"id":27221,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27222],"locationId":3},{"id":27222,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27223],"locationId":452},{"id":27223,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27224],"locationId":453},{"id":27224,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27225],"locationId":2},{"id":27225,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27226],"locationId":3},{"id":27226,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27227],"locationId":452},{"id":27227,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27228],"locationId":453},{"id":27228,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27229],"locationId":2},{"id":27229,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27230],"locationId":3},{"id":27230,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27231],"locationId":452},{"id":27231,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27232],"locationId":453},{"id":27232,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27233],"locationId":2},{"id":27233,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27234],"locationId":3},{"id":27234,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27235],"locationId":452},{"id":27235,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27236],"locationId":453},{"id":27236,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27237],"locationId":2},{"id":27237,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27238],"locationId":3},{"id":27238,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27239],"locationId":452},{"id":27239,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27240],"locationId":453},{"id":27240,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27241],"locationId":2},{"id":27241,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27242],"locationId":3},{"id":27242,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27243],"locationId":452},{"id":27243,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27244],"locationId":453},{"id":27244,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27245],"locationId":2},{"id":27245,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27246],"locationId":3},{"id":27246,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27247],"locationId":452},{"id":27247,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27248],"locationId":453},{"id":27248,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27249],"locationId":2},{"id":27249,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27250],"locationId":3},{"id":27250,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27251],"locationId":452},{"id":27251,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27252],"locationId":453},{"id":27252,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27253,30360],"locationId":2},{"id":27253,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27254],"locationId":3},{"id":27254,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27255],"locationId":452},{"id":27255,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27256],"locationId":453},{"id":27256,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27257],"locationId":2},{"id":27257,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27258],"locationId":3},{"id":27258,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27259],"locationId":452},{"id":27259,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27260],"locationId":453},{"id":27260,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27261],"locationId":2},{"id":27261,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27262],"locationId":3},{"id":27262,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27263],"locationId":452},{"id":27263,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27264],"locationId":453},{"id":27264,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27265,29874],"locationId":2},{"id":27265,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27266],"locationId":3},{"id":27266,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27267],"locationId":452},{"id":27267,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27268],"locationId":453},{"id":27268,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27269],"locationId":2},{"id":27269,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27270],"locationId":3},{"id":27270,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27271],"locationId":452},{"id":27271,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27272],"locationId":453},{"id":27272,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27273],"locationId":2},{"id":27273,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27274],"locationId":3},{"id":27274,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27275],"locationId":452},{"id":27275,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27276],"locationId":453},{"id":27276,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27277],"locationId":2},{"id":27277,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27278],"locationId":3},{"id":27278,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27279],"locationId":452},{"id":27279,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27280],"locationId":453},{"id":27280,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27281],"locationId":2},{"id":27281,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27282],"locationId":3},{"id":27282,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27283],"locationId":452},{"id":27283,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27284],"locationId":453},{"id":27284,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27285],"locationId":2},{"id":27285,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27286],"locationId":3},{"id":27286,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27287],"locationId":452},{"id":27287,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27288],"locationId":453},{"id":27288,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27289,30587],"locationId":2},{"id":27289,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27290],"locationId":3},{"id":27290,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27291],"locationId":452},{"id":27291,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27292],"locationId":453},{"id":27292,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27293],"locationId":2},{"id":27293,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27294],"locationId":3},{"id":27294,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27295],"locationId":452},{"id":27295,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27296],"locationId":453},{"id":27296,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27297,30871],"locationId":2},{"id":27297,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27298],"locationId":3},{"id":27298,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27299],"locationId":452},{"id":27299,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27300],"locationId":453},{"id":27300,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27301,30714],"locationId":2},{"id":27301,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27302],"locationId":3},{"id":27302,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27303],"locationId":452},{"id":27303,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27304],"locationId":453},{"id":27304,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27305,30742],"locationId":2},{"id":27305,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27306],"locationId":3},{"id":27306,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27307],"locationId":452},{"id":27307,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27308],"locationId":453},{"id":27308,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27309,29410],"locationId":2},{"id":27309,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27310],"locationId":3},{"id":27310,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27311],"locationId":452},{"id":27311,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27312],"locationId":453},{"id":27312,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27313,30426],"locationId":2},{"id":27313,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27314],"locationId":3},{"id":27314,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27315],"locationId":452},{"id":27315,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27316],"locationId":453},{"id":27316,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27317,28981],"locationId":2},{"id":27317,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27318],"locationId":3},{"id":27318,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27319],"locationId":452},{"id":27319,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27320],"locationId":453},{"id":27320,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27321,30177],"locationId":2},{"id":27321,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27322],"locationId":3},{"id":27322,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27323],"locationId":452},{"id":27323,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27324],"locationId":453},{"id":27324,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27325,29776],"locationId":2},{"id":27325,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27326],"locationId":3},{"id":27326,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27327],"locationId":452},{"id":27327,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27328],"locationId":453},{"id":27328,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27329,29703],"locationId":2},{"id":27329,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27330],"locationId":3},{"id":27330,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27331],"locationId":452},{"id":27331,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27332],"locationId":453},{"id":27332,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27333,29202],"locationId":2},{"id":27333,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27334],"locationId":3},{"id":27334,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27335],"locationId":452},{"id":27335,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27336],"locationId":453},{"id":27336,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27337,28842],"locationId":2},{"id":27337,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[27338],"locationId":3},{"id":27338,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[27339],"locationId":452},{"id":27339,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[27340],"locationId":453},{"id":27340,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[27341,28049],"locationId":2},{"id":27341,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[27342],"locationId":5},{"id":27342,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27343],"locationId":6},{"id":27343,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[27344],"locationId":7},{"id":27344,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27345],"locationId":6},{"id":27345,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[27346],"locationId":8},{"id":27346,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[27347],"locationId":9},{"id":27347,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27348],"locationId":6},{"id":27348,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[27349,29731,29755],"locationId":10},{"id":27349,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[27350],"locationId":84},{"id":27350,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[27351],"locationId":6},{"id":27351,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[27352],"locationId":85},{"id":27352,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[27353],"locationId":86},{"id":27353,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[27354],"locationId":87},{"id":27354,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[27355],"locationId":88},{"id":27355,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[27356],"locationId":74},{"id":27356,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[27357],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":27357,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[27358,29686,29736,29750],"locationId":90},{"id":27358,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[27359,29099],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":27359,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[27360],"locationId":114},{"id":27360,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[27361],"locationId":114},{"id":27361,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[27362],"locationId":114},{"id":27362,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[29590],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29590,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29099,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29100,29134],"locationId":109},{"id":29100,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29101],"locationId":114},{"id":29101,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29102],"locationId":114},{"id":29102,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29103],"locationId":114},{"id":29103,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29134,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29135],"locationId":109},{"id":29135,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29136],"locationId":114},{"id":29136,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29137],"locationId":114},{"id":29137,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29686,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29687],"locationId":40},{"id":29687,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29688],"locationId":29},{"id":29688,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29736,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[29737],"locationId":117},{"id":29737,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[29738],"locationId":118},{"id":29738,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[29739],"locationId":123},{"id":29739,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29740],"locationId":29},{"id":29740,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29750,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":29731,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29732],"locationId":11},{"id":29732,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29733],"locationId":12},{"id":29733,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29734],"locationId":13},{"id":29734,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[29735,29774,29775],"locationId":14},{"id":29735,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":29774,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":647,"ticks":1,"startLocationId":37,"endLocationId":38}],"locationId":36},{"id":29775,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":762,"ticks":1,"startLocationId":238,"endLocationId":22}],"locationId":15},{"id":29755,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":28049,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28050],"locationId":3},{"id":28050,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28051],"locationId":452},{"id":28051,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28052],"locationId":453},{"id":28052,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28053,28829],"locationId":2},{"id":28053,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28054],"locationId":5},{"id":28054,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28055],"locationId":6},{"id":28055,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28056],"locationId":7},{"id":28056,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28057],"locationId":6},{"id":28057,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28058],"locationId":8},{"id":28058,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28059],"locationId":9},{"id":28059,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28060],"locationId":6},{"id":28060,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28061,28075,29649,29749],"locationId":10},{"id":28061,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28062],"locationId":84},{"id":28062,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28063],"locationId":6},{"id":28063,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28064],"locationId":85},{"id":28064,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28065],"locationId":86},{"id":28065,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28066],"locationId":87},{"id":28066,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28067],"locationId":88},{"id":28067,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28068],"locationId":74},{"id":28068,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[28069],"locationId":89},{"id":28069,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[28070,28127,29065,29165,29388],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":28070,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[28071],"locationId":117},{"id":28071,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[28072],"locationId":118},{"id":28072,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[28073],"locationId":123},{"id":28073,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[28074],"locationId":29},{"id":28074,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":28127,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[28128],"locationId":40},{"id":28128,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[28129],"locationId":29},{"id":28129,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":17,"positionTicks":[{"line":26,"ticks":17,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29065,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29066,29111],"locationId":109},{"id":29066,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29067,29232],"locationId":109},{"id":29067,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":27,"ticks":3,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29232,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":5,"children":[29355,29409],"positionTicks":[{"line":29,"ticks":5,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29355,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":29409,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":29111,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29112],"locationId":114},{"id":29112,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29165,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[29166],"locationId":97},{"id":29166,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[29167],"locationId":97},{"id":29167,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":5,"positionTicks":[{"line":48,"ticks":4,"startLocationId":98,"endLocationId":99},{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":29388,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[29389,29589],"locationId":102},{"id":29389,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":2,"positionTicks":[{"line":304,"ticks":2,"startLocationId":275,"endLocationId":276}],"locationId":247},{"id":29589,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":28075,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[28076],"locationId":11},{"id":28076,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[28077,29068],"locationId":12},{"id":28077,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[28078],"locationId":13},{"id":28078,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[28079],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":28079,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":29068,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[29069],"locationId":72},{"id":29069,"callFrame":{"functionName":"scriptImportCaseMismatch","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":79,"columnNumber":30},"hitCount":0,"children":[29070],"locationId":783},{"id":29070,"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"hitCount":0,"children":[29071],"locationId":262},{"id":29071,"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":7,"columnNumber":66},"hitCount":1,"positionTicks":[{"line":8,"ticks":1,"startLocationId":418,"endLocationId":419}],"locationId":417},{"id":29649,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":29749,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":36,"ticks":1,"startLocationId":437,"endLocationId":438}],"locationId":86},{"id":28829,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28830],"locationId":3},{"id":28830,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28831],"locationId":452},{"id":28831,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28832],"locationId":453},{"id":28832,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28833,29344],"locationId":2},{"id":28833,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28834],"locationId":5},{"id":28834,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28835],"locationId":6},{"id":28835,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28836],"locationId":7},{"id":28836,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28837],"locationId":6},{"id":28837,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28838,29113],"locationId":8},{"id":28838,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28839],"locationId":9},{"id":28839,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28840],"locationId":6},{"id":28840,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28841,28868,28888,29030,29394],"locationId":10},{"id":28841,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":7,"positionTicks":[{"line":348,"ticks":7,"startLocationId":208,"endLocationId":209}],"locationId":148},{"id":28868,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":28888,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28889],"locationId":84},{"id":28889,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28890],"locationId":6},{"id":28890,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28891],"locationId":85},{"id":28891,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28892],"locationId":86},{"id":28892,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28893],"locationId":87},{"id":28893,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28894],"locationId":88},{"id":28894,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28895,29244],"locationId":74},{"id":28895,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":31,"children":[28896,29023,29076,29243,29299],"positionTicks":[{"line":39,"ticks":29,"startLocationId":186,"endLocationId":187},{"line":40,"ticks":2,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":28896,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":4,"positionTicks":[{"line":181,"ticks":2,"startLocationId":134,"endLocationId":135},{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305},{"line":179,"ticks":1,"startLocationId":497,"endLocationId":498}],"locationId":129},{"id":29023,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":48,"positionTicks":[{"line":76,"ticks":22,"startLocationId":93,"endLocationId":94},{"line":81,"ticks":2,"startLocationId":381,"endLocationId":91},{"line":73,"ticks":8,"startLocationId":210,"endLocationId":188},{"line":113,"ticks":1,"startLocationId":392,"endLocationId":393},{"line":26,"ticks":1,"startLocationId":191,"endLocationId":370},{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":74,"ticks":5,"startLocationId":188,"endLocationId":189},{"line":27,"ticks":2,"startLocationId":370,"endLocationId":371},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210},{"line":171,"ticks":1,"startLocationId":817,"endLocationId":818},{"line":110,"ticks":2,"startLocationId":490,"endLocationId":491},{"line":48,"ticks":1,"startLocationId":488,"endLocationId":489},{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383}],"locationId":90},{"id":29076,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":3,"positionTicks":[{"line":42,"ticks":3,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":29243,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":29299,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":45,"ticks":1,"startLocationId":776,"endLocationId":777}],"locationId":97},{"id":29244,"callFrame":{"functionName":"isXmlFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":21,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":23,"ticks":1,"startLocationId":781,"endLocationId":782}],"locationId":153},{"id":29030,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29031],"locationId":11},{"id":29031,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29032,29082,29234],"locationId":12},{"id":29032,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29033],"locationId":13},{"id":29033,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":9,"children":[29034,29233,29267,29354],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200},{"line":579,"ticks":1,"startLocationId":200,"endLocationId":201},{"line":576,"ticks":6,"startLocationId":212,"endLocationId":213},{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":29034,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":9,"positionTicks":[{"line":647,"ticks":6,"startLocationId":37,"endLocationId":38},{"line":635,"ticks":2,"startLocationId":221,"endLocationId":222},{"line":634,"ticks":1,"startLocationId":255,"endLocationId":221}],"locationId":36},{"id":29233,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":3,"positionTicks":[{"line":737,"ticks":1,"startLocationId":253,"endLocationId":254},{"line":733,"ticks":2,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":29267,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":2,"positionTicks":[{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23},{"line":97,"ticks":1,"startLocationId":799,"endLocationId":800}],"locationId":15},{"id":29354,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":2,"positionTicks":[{"line":691,"ticks":1,"startLocationId":378,"endLocationId":192},{"line":692,"ticks":1,"startLocationId":192,"endLocationId":193}],"locationId":64},{"id":29082,"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"hitCount":0,"children":[29083],"locationId":372},{"id":29083,"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"hitCount":0,"children":[29084,29603],"locationId":373},{"id":29084,"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"hitCount":1,"positionTicks":[{"line":245,"ticks":1,"startLocationId":547,"endLocationId":548}],"locationId":545},{"id":29603,"callFrame":{"functionName":"validateFieldTypes","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":197,"columnNumber":22},"hitCount":1,"positionTicks":[{"line":200,"ticks":1,"startLocationId":820,"endLocationId":821}],"locationId":819},{"id":29234,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":4,"positionTicks":[{"line":808,"ticks":2,"startLocationId":257,"endLocationId":258},{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369},{"line":823,"ticks":1,"startLocationId":516,"endLocationId":517}],"locationId":256},{"id":29394,"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"hitCount":0,"children":[29395],"locationId":151},{"id":29395,"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"hitCount":0,"children":[29396],"locationId":152},{"id":29396,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":426,"ticks":1,"startLocationId":478,"endLocationId":479}],"locationId":74},{"id":29113,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[29114,29197],"locationId":157},{"id":29114,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[29115],"locationId":164},{"id":29115,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29116],"locationId":29},{"id":29116,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[29117],"locationId":165},{"id":29117,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[29118],"locationId":166},{"id":29118,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":14,"ticks":1,"startLocationId":42,"endLocationId":232}],"locationId":29},{"id":29197,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[29198],"locationId":158},{"id":29198,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"children":[29199],"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":29199,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[29200],"locationId":159},{"id":29200,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[29201],"locationId":160},{"id":29201,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":5,"positionTicks":[{"line":78,"ticks":3,"startLocationId":207,"endLocationId":162},{"line":77,"ticks":2,"startLocationId":235,"endLocationId":207}],"locationId":161},{"id":29344,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[29345,29619],"locationId":3},{"id":29345,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[29346],"locationId":452},{"id":29346,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[29347],"locationId":453},{"id":29347,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[29348,29640],"locationId":2},{"id":29348,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29349],"locationId":5},{"id":29349,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29350],"locationId":6},{"id":29350,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29351],"locationId":7},{"id":29351,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29352],"locationId":6},{"id":29352,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":1,"children":[29534],"positionTicks":[{"line":485,"ticks":1,"startLocationId":243,"endLocationId":244}],"locationId":8},{"id":29534,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":822,"endLocationId":823}],"locationId":157},{"id":29640,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[29641],"locationId":3},{"id":29641,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[29642],"locationId":452},{"id":29642,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[29643],"locationId":453},{"id":29643,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"locationId":2},{"id":29619,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29620],"locationId":7},{"id":29620,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29621],"locationId":6},{"id":29621,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29622],"locationId":8},{"id":29622,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29623],"locationId":9},{"id":29623,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29624],"locationId":6},{"id":29624,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29625,29631],"locationId":10},{"id":29625,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29626],"locationId":11},{"id":29626,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29627,29630],"locationId":12},{"id":29627,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29628],"locationId":13},{"id":29628,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[29629],"locationId":14},{"id":29629,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":733,"ticks":1,"startLocationId":384,"endLocationId":385}],"locationId":33},{"id":29630,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":808,"ticks":1,"startLocationId":257,"endLocationId":258}],"locationId":256},{"id":29631,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29632],"locationId":84},{"id":29632,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29633],"locationId":6},{"id":29633,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29634],"locationId":85},{"id":29634,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29635],"locationId":86},{"id":29635,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29636],"locationId":87},{"id":29636,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29637],"locationId":88},{"id":29637,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29638],"locationId":74},{"id":29638,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29639],"locationId":89},{"id":29639,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"positionTicks":[{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":28842,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28843],"locationId":5},{"id":28843,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28844],"locationId":6},{"id":28844,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28845],"locationId":7},{"id":28845,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28846],"locationId":6},{"id":28846,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28847],"locationId":8},{"id":28847,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28848],"locationId":9},{"id":28848,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28849],"locationId":6},{"id":28849,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28850,29812],"locationId":10},{"id":28850,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28851],"locationId":84},{"id":28851,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28852],"locationId":6},{"id":28852,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28853],"locationId":85},{"id":28853,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28854],"locationId":86},{"id":28854,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28855],"locationId":87},{"id":28855,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28856],"locationId":88},{"id":28856,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28857],"locationId":74},{"id":28857,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[28858],"locationId":89},{"id":28858,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[28859,29810],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":28859,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[28860],"locationId":109},{"id":28860,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[28861],"locationId":114},{"id":28861,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[28862],"locationId":114},{"id":28862,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[28863],"locationId":114},{"id":28863,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[28864],"locationId":114},{"id":28864,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[28865],"locationId":114},{"id":28865,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[28866],"locationId":114},{"id":28866,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[28867],"locationId":114},{"id":28867,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29810,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":29812,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29813],"locationId":11},{"id":29813,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29814],"locationId":12},{"id":29814,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29815],"locationId":13},{"id":29815,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[29816,29817,29826],"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200}],"locationId":14},{"id":29816,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":29817,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":664,"ticks":1,"startLocationId":313,"endLocationId":314}],"locationId":46},{"id":29826,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":29202,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29203],"locationId":5},{"id":29203,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29204],"locationId":6},{"id":29204,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29205],"locationId":7},{"id":29205,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29206],"locationId":6},{"id":29206,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29207],"locationId":8},{"id":29207,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29208],"locationId":9},{"id":29208,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29209],"locationId":6},{"id":29209,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29210,29854,29868,30042],"locationId":10},{"id":29210,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29211],"locationId":84},{"id":29211,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29212],"locationId":6},{"id":29212,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29213],"locationId":85},{"id":29213,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29214],"locationId":86},{"id":29214,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29215],"locationId":87},{"id":29215,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29216],"locationId":88},{"id":29216,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29217],"locationId":74},{"id":29217,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29218],"locationId":89},{"id":29218,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[29219,29848,29864,29869],"locationId":90},{"id":29219,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29220],"locationId":109},{"id":29220,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29221],"locationId":109},{"id":29221,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29222],"locationId":109},{"id":29222,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29223],"locationId":109},{"id":29223,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29224],"locationId":109},{"id":29224,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29225],"locationId":109},{"id":29225,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29226],"locationId":109},{"id":29226,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29227],"locationId":114},{"id":29227,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29228],"locationId":114},{"id":29228,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29229],"locationId":114},{"id":29229,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29230],"locationId":114},{"id":29230,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29848,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29849],"locationId":40},{"id":29849,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29850],"locationId":29},{"id":29850,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29864,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":4,"positionTicks":[{"line":48,"ticks":4,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":29869,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[29870],"locationId":117},{"id":29870,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[29871],"locationId":118},{"id":29871,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[29872],"locationId":123},{"id":29872,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29873],"locationId":29},{"id":29873,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29854,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29855,30015],"locationId":11},{"id":29855,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29856],"locationId":12},{"id":29856,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29857],"locationId":13},{"id":29857,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[29858,29865],"locationId":14},{"id":29858,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[29859],"locationId":36},{"id":29859,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29860],"locationId":40},{"id":29860,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29861],"locationId":29},{"id":29861,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29865,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[29866],"locationId":15},{"id":29866,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":30015,"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":471,"endLocationId":472}],"locationId":339},{"id":29868,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30042,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":29703,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29704],"locationId":5},{"id":29704,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29705],"locationId":6},{"id":29705,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29706],"locationId":7},{"id":29706,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29707],"locationId":6},{"id":29707,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29708,30006],"locationId":8},{"id":29708,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29709],"locationId":9},{"id":29709,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29710],"locationId":6},{"id":29710,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29711,29998,30054,30115],"locationId":10},{"id":29711,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29712],"locationId":84},{"id":29712,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29713],"locationId":6},{"id":29713,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29714],"locationId":85},{"id":29714,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29715],"locationId":86},{"id":29715,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29716],"locationId":87},{"id":29716,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29717],"locationId":88},{"id":29717,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29718],"locationId":74},{"id":29718,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29719],"locationId":89},{"id":29719,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[29720,29995,30038,30040],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":29720,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[29721],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29721,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29722],"locationId":109},{"id":29722,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[29723],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29723,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29724,29757],"locationId":109},{"id":29724,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29725],"locationId":109},{"id":29725,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29726],"locationId":109},{"id":29726,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29727],"locationId":109},{"id":29727,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29728],"locationId":109},{"id":29728,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29729],"locationId":109},{"id":29729,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29730],"locationId":109},{"id":29730,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29757,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29758],"locationId":114},{"id":29758,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29759],"locationId":114},{"id":29759,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29760],"locationId":114},{"id":29760,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29761],"locationId":114},{"id":29761,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29762],"locationId":114},{"id":29762,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29995,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[29996],"locationId":102},{"id":29996,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579}],"locationId":247},{"id":30038,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30039],"locationId":40},{"id":30039,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":30040,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[30041],"locationId":97},{"id":30041,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98}],"locationId":97},{"id":29998,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29999],"locationId":11},{"id":29999,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30000],"locationId":12},{"id":30000,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30001],"locationId":13},{"id":30001,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30002,30014,30094],"locationId":14},{"id":30002,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[30003],"locationId":46},{"id":30003,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[30004],"locationId":54},{"id":30004,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[30005],"locationId":55},{"id":30005,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":315,"endLocationId":316}],"locationId":56},{"id":30014,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":30094,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":728,"ticks":1,"startLocationId":529,"endLocationId":530}],"locationId":33},{"id":30054,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30115,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":30006,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[30007,30110],"locationId":157},{"id":30007,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[30008],"locationId":164},{"id":30008,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30009],"locationId":29},{"id":30009,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[30010],"locationId":165},{"id":30010,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[30011],"locationId":166},{"id":30011,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30012],"locationId":29},{"id":30012,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":0,"children":[30013],"locationId":167},{"id":30013,"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":403,"ticks":1,"startLocationId":178,"endLocationId":179}],"locationId":177},{"id":30110,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[30111],"locationId":158},{"id":30111,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30112],"locationId":29},{"id":30112,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[30113],"locationId":159},{"id":30113,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":0,"children":[30114],"locationId":160},{"id":30114,"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":207,"endLocationId":162}],"locationId":161},{"id":29776,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29777],"locationId":5},{"id":29777,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29778],"locationId":6},{"id":29778,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29779],"locationId":7},{"id":29779,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29780],"locationId":6},{"id":29780,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29781],"locationId":8},{"id":29781,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29782],"locationId":9},{"id":29782,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29783],"locationId":6},{"id":29783,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[29784,30120,30200,30227],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":29784,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29785],"locationId":84},{"id":29785,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29786],"locationId":6},{"id":29786,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29787],"locationId":85},{"id":29787,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29788],"locationId":86},{"id":29788,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29789],"locationId":87},{"id":29789,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29790],"locationId":88},{"id":29790,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29791],"locationId":74},{"id":29791,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29792,30116],"locationId":89},{"id":29792,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[29793,30107,30128,30133],"locationId":90},{"id":29793,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29794],"locationId":109},{"id":29794,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29795],"locationId":109},{"id":29795,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29796],"locationId":109},{"id":29796,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29797],"locationId":109},{"id":29797,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29798],"locationId":114},{"id":29798,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29799],"locationId":114},{"id":29799,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29800],"locationId":114},{"id":29800,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29801],"locationId":114},{"id":29801,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29802],"locationId":114},{"id":29802,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29803],"locationId":114},{"id":29803,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30107,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30108],"locationId":40},{"id":30108,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30109],"locationId":29},{"id":30109,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30128,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30129],"locationId":117},{"id":30129,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30130],"locationId":118},{"id":30130,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30131],"locationId":123},{"id":30131,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30132],"locationId":29},{"id":30132,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30133,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":30116,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":204,"ticks":1,"startLocationId":131,"endLocationId":824}],"locationId":129},{"id":30120,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30121],"locationId":11},{"id":30121,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":1,"children":[30122],"positionTicks":[{"line":572,"ticks":1,"startLocationId":825,"endLocationId":826}],"locationId":12},{"id":30122,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30123],"locationId":13},{"id":30123,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30124,30208,30228],"locationId":14},{"id":30124,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[30125],"locationId":36},{"id":30125,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30126],"locationId":40},{"id":30126,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30127],"locationId":29},{"id":30127,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30208,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":30228,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":691,"ticks":1,"startLocationId":378,"endLocationId":192}],"locationId":64},{"id":30200,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":30227,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":30177,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30178],"locationId":5},{"id":30178,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30179],"locationId":6},{"id":30179,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30180],"locationId":7},{"id":30180,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30181],"locationId":6},{"id":30181,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30182],"locationId":8},{"id":30182,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30183],"locationId":9},{"id":30183,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30184],"locationId":6},{"id":30184,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[30185,30247,30252],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":30185,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30186],"locationId":84},{"id":30186,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30187],"locationId":6},{"id":30187,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30188],"locationId":85},{"id":30188,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30189],"locationId":86},{"id":30189,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30190],"locationId":87},{"id":30190,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30191],"locationId":88},{"id":30191,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30192],"locationId":74},{"id":30192,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[30193],"positionTicks":[{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":30193,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[30194,30236],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":30194,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30195],"locationId":109},{"id":30195,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30196],"locationId":109},{"id":30196,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30197],"locationId":109},{"id":30197,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30236,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30237],"locationId":40},{"id":30237,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30238],"locationId":29},{"id":30238,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30247,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30248],"locationId":11},{"id":30248,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30249],"locationId":12},{"id":30249,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30250],"locationId":13},{"id":30250,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30251],"locationId":14},{"id":30251,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":30252,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":3,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":28981,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28982],"locationId":5},{"id":28982,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28983],"locationId":6},{"id":28983,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28984],"locationId":7},{"id":28984,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28985],"locationId":6},{"id":28985,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28986,30517],"locationId":8},{"id":28986,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28987],"locationId":9},{"id":28987,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28988],"locationId":6},{"id":28988,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28989,30310,30512],"locationId":10},{"id":28989,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28990],"locationId":84},{"id":28990,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28991],"locationId":6},{"id":28991,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28992],"locationId":85},{"id":28992,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28993],"locationId":86},{"id":28993,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28994,30299],"locationId":87},{"id":28994,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28995],"locationId":88},{"id":28995,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28996],"locationId":74},{"id":28996,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[28997],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":28997,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[28998,30253,30296,30305],"positionTicks":[{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94},{"line":72,"ticks":1,"startLocationId":477,"endLocationId":210}],"locationId":90},{"id":28998,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[28999,30279],"locationId":109},{"id":28999,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29000],"locationId":109},{"id":29000,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29001],"locationId":109},{"id":29001,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29002],"locationId":109},{"id":29002,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29003],"locationId":109},{"id":29003,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29004],"locationId":109},{"id":29004,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29005],"locationId":109},{"id":29005,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29006],"locationId":109},{"id":29006,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29007],"locationId":109},{"id":29007,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29008],"locationId":109},{"id":29008,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29009],"locationId":109},{"id":29009,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29010],"locationId":109},{"id":29010,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29011],"locationId":109},{"id":29011,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29012],"locationId":109},{"id":29012,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29013],"locationId":109},{"id":29013,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29014],"locationId":109},{"id":29014,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29015],"locationId":109},{"id":29015,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29016],"locationId":109},{"id":29016,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29017],"locationId":109},{"id":29017,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29018],"locationId":109},{"id":29018,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29019],"locationId":109},{"id":29019,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29020],"locationId":109},{"id":29020,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29021],"locationId":109},{"id":29021,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29022],"locationId":109},{"id":29022,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":30279,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30280],"locationId":114},{"id":30280,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30281],"locationId":114},{"id":30281,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":245,"endLocationId":246}],"locationId":114},{"id":30253,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[30254],"locationId":97},{"id":30254,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[30255],"locationId":97},{"id":30255,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[30256],"locationId":97},{"id":30256,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":30296,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30297],"locationId":40},{"id":30297,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30298],"locationId":29},{"id":30298,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30305,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[30306],"locationId":102},{"id":30306,"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"hitCount":1,"children":[30308],"positionTicks":[{"line":399,"ticks":1,"startLocationId":297,"endLocationId":298}],"locationId":217},{"id":30308,"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":609,"ticks":1,"startLocationId":758,"endLocationId":759}],"locationId":218},{"id":30299,"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"hitCount":0,"children":[30300],"locationId":140},{"id":30300,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30301],"locationId":13},{"id":30301,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[30302],"locationId":164},{"id":30302,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30303],"locationId":29},{"id":30303,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30310,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":30512,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30513],"locationId":11},{"id":30513,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30514],"locationId":12},{"id":30514,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30515],"locationId":13},{"id":30515,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30516],"locationId":14},{"id":30516,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":30517,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[30518],"locationId":157},{"id":30518,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[30519],"locationId":164},{"id":30519,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30520],"locationId":29},{"id":30520,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[30521],"locationId":165},{"id":30521,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[30522],"locationId":166},{"id":30522,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":15,"ticks":1,"startLocationId":232,"endLocationId":345}],"locationId":29},{"id":30426,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30427],"locationId":5},{"id":30427,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30428],"locationId":6},{"id":30428,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30429],"locationId":7},{"id":30429,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30430],"locationId":6},{"id":30430,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30431],"locationId":8},{"id":30431,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30432],"locationId":9},{"id":30432,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30433],"locationId":6},{"id":30433,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[30434,30528],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":30434,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30435],"locationId":84},{"id":30435,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30436],"locationId":6},{"id":30436,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30437],"locationId":85},{"id":30437,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30438],"locationId":86},{"id":30438,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30439],"locationId":87},{"id":30439,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30440],"locationId":88},{"id":30440,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30441],"locationId":74},{"id":30441,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[30442,30524,30634],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":30442,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[30443,30509,30542,30547],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95}],"locationId":90},{"id":30443,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[30444],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30444,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30445],"locationId":109},{"id":30445,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30446],"locationId":114},{"id":30446,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30509,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30510],"locationId":40},{"id":30510,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30511],"locationId":29},{"id":30511,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30542,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30543],"locationId":117},{"id":30543,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30544],"locationId":118},{"id":30544,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30545],"locationId":123},{"id":30545,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30546],"locationId":29},{"id":30546,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30547,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[30548],"locationId":97},{"id":30548,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":30524,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":185,"ticks":1,"startLocationId":304,"endLocationId":305}],"locationId":129},{"id":30634,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":30528,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30529],"locationId":11},{"id":30529,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30530,30635],"locationId":12},{"id":30530,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30531],"locationId":13},{"id":30531,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30532,30535],"locationId":14},{"id":30532,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[30533],"locationId":15},{"id":30533,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[30534],"locationId":25},{"id":30534,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":30535,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[30536,30557],"locationId":46},{"id":30536,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[30537],"locationId":54},{"id":30537,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[30538],"locationId":55},{"id":30538,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[30539],"locationId":56},{"id":30539,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[30540],"locationId":28},{"id":30540,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30541],"locationId":29},{"id":30541,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30557,"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"hitCount":1,"positionTicks":[{"line":286,"ticks":1,"startLocationId":50,"endLocationId":51}],"locationId":49},{"id":30635,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":803,"ticks":1,"startLocationId":368,"endLocationId":369}],"locationId":256},{"id":29410,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29411],"locationId":5},{"id":29411,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29412],"locationId":6},{"id":29412,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29413],"locationId":7},{"id":29413,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29414],"locationId":6},{"id":29414,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29415],"locationId":8},{"id":29415,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29416],"locationId":9},{"id":29416,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29417],"locationId":6},{"id":29417,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[29418,30689,30695],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":29418,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29419],"locationId":84},{"id":29419,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29420],"locationId":6},{"id":29420,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29421],"locationId":85},{"id":29421,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29422],"locationId":86},{"id":29422,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29423],"locationId":87},{"id":29423,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29424],"locationId":88},{"id":29424,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29425],"locationId":74},{"id":29425,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[29426],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":29426,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[29427,30630,30636],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":29427,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29428],"locationId":109},{"id":29428,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[29429],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29429,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29430],"locationId":109},{"id":29430,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29431],"locationId":109},{"id":29431,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29432],"locationId":109},{"id":29432,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29433],"locationId":109},{"id":29433,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29434],"locationId":109},{"id":29434,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29435],"locationId":109},{"id":29435,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29436],"locationId":109},{"id":29436,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29437],"locationId":109},{"id":29437,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29438],"locationId":109},{"id":29438,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29439],"locationId":109},{"id":29439,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29440],"locationId":109},{"id":29440,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29441],"locationId":109},{"id":29441,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29442],"locationId":109},{"id":29442,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29443],"locationId":109},{"id":29443,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29444],"locationId":109},{"id":29444,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29445],"locationId":109},{"id":29445,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29446],"locationId":109},{"id":29446,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29447],"locationId":109},{"id":29447,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29448],"locationId":109},{"id":29448,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29449],"locationId":109},{"id":29449,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29450],"locationId":109},{"id":29450,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29451],"locationId":109},{"id":29451,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29452],"locationId":109},{"id":29452,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29453],"locationId":109},{"id":29453,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29454],"locationId":109},{"id":29454,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29455],"locationId":109},{"id":29455,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29456],"locationId":109},{"id":29456,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30630,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[30631],"locationId":102},{"id":30631,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":1,"positionTicks":[{"line":300,"ticks":1,"startLocationId":578,"endLocationId":579}],"locationId":247},{"id":30636,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30637],"locationId":40},{"id":30637,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30638],"locationId":29},{"id":30638,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30689,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30690],"locationId":11},{"id":30690,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30691],"locationId":12},{"id":30691,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30692],"locationId":13},{"id":30692,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30693],"locationId":14},{"id":30693,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[30694],"locationId":15},{"id":30694,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":30695,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":4,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":2,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":30742,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30743],"locationId":5},{"id":30743,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30744],"locationId":6},{"id":30744,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30745],"locationId":7},{"id":30745,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30746],"locationId":6},{"id":30746,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30747],"locationId":8},{"id":30747,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30748],"locationId":9},{"id":30748,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30749],"locationId":6},{"id":30749,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[30750,30808,30832],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":30750,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30751],"locationId":84},{"id":30751,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30752],"locationId":6},{"id":30752,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30753],"locationId":85},{"id":30753,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30754],"locationId":86},{"id":30754,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30755],"locationId":87},{"id":30755,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30756],"locationId":88},{"id":30756,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30757],"locationId":74},{"id":30757,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[30758],"positionTicks":[{"line":39,"ticks":2,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":30758,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[30759,30818],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":30759,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30760],"locationId":40},{"id":30760,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30761],"locationId":29},{"id":30761,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30818,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30819],"locationId":117},{"id":30819,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30820],"locationId":118},{"id":30820,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":30808,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30809],"locationId":11},{"id":30809,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30810],"locationId":12},{"id":30810,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30811],"locationId":13},{"id":30811,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30812,30843],"locationId":14},{"id":30812,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[30813],"locationId":15},{"id":30813,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[30814],"locationId":25},{"id":30814,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":30843,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":734,"ticks":1,"startLocationId":385,"endLocationId":827}],"locationId":33},{"id":30832,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":547,"ticks":2,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30714,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30715],"locationId":5},{"id":30715,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30716],"locationId":6},{"id":30716,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30717],"locationId":7},{"id":30717,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30718],"locationId":6},{"id":30718,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30719],"locationId":8},{"id":30719,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30720],"locationId":9},{"id":30720,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30721],"locationId":6},{"id":30721,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30722,30861,30922],"locationId":10},{"id":30722,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30723],"locationId":84},{"id":30723,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30724],"locationId":6},{"id":30724,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30725],"locationId":85},{"id":30725,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30726],"locationId":86},{"id":30726,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30727],"locationId":87},{"id":30727,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30728],"locationId":88},{"id":30728,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30729],"locationId":74},{"id":30729,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30730],"locationId":89},{"id":30730,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[30731,30844,30847],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":30731,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30732],"locationId":109},{"id":30732,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30733],"locationId":109},{"id":30733,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30734],"locationId":109},{"id":30734,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30735],"locationId":109},{"id":30735,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30736],"locationId":109},{"id":30736,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30844,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30845],"locationId":40},{"id":30845,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30846],"locationId":29},{"id":30846,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":3,"positionTicks":[{"line":26,"ticks":3,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30847,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30848],"locationId":117},{"id":30848,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30849],"locationId":118},{"id":30849,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30850],"locationId":123},{"id":30850,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30851],"locationId":29},{"id":30851,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30861,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30862],"locationId":11},{"id":30862,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30863],"locationId":12},{"id":30863,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30864],"locationId":13},{"id":30864,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30865],"locationId":14},{"id":30865,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[30866],"locationId":15},{"id":30866,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[30867],"locationId":25},{"id":30867,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":30922,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":30871,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30872],"locationId":5},{"id":30872,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30873],"locationId":6},{"id":30873,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30874],"locationId":7},{"id":30874,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30875],"locationId":6},{"id":30875,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30876],"locationId":8},{"id":30876,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30877],"locationId":9},{"id":30877,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30878],"locationId":6},{"id":30878,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30879],"locationId":10},{"id":30879,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30880],"locationId":84},{"id":30880,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30881],"locationId":6},{"id":30881,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30882],"locationId":85},{"id":30882,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30883],"locationId":86},{"id":30883,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30884],"locationId":87},{"id":30884,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30885],"locationId":88},{"id":30885,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30886],"locationId":74},{"id":30886,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30887],"locationId":89},{"id":30887,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[30888,30893,30939],"locationId":90},{"id":30888,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[30889],"locationId":102},{"id":30889,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":0,"children":[30890],"locationId":247},{"id":30890,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[30891],"locationId":248},{"id":30891,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[30892],"locationId":249},{"id":30892,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":1,"positionTicks":[{"line":67,"ticks":1,"startLocationId":636,"endLocationId":637}],"locationId":250},{"id":30893,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30894],"locationId":109},{"id":30894,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30895],"locationId":109},{"id":30895,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30896],"locationId":109},{"id":30896,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30939,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":30587,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30588],"locationId":5},{"id":30588,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30589],"locationId":6},{"id":30589,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30590],"locationId":7},{"id":30590,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30591],"locationId":6},{"id":30591,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30592],"locationId":8},{"id":30592,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30593],"locationId":9},{"id":30593,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30594],"locationId":6},{"id":30594,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30595],"locationId":10},{"id":30595,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30596],"locationId":84},{"id":30596,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30597],"locationId":6},{"id":30597,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30598],"locationId":85},{"id":30598,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30599],"locationId":86},{"id":30599,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30600],"locationId":87},{"id":30600,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30601],"locationId":88},{"id":30601,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30602],"locationId":74},{"id":30602,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30603],"locationId":89},{"id":30603,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[30604],"locationId":90},{"id":30604,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30605],"locationId":109},{"id":30605,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30606],"locationId":109},{"id":30606,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30607],"locationId":109},{"id":30607,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30608],"locationId":109},{"id":30608,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30609],"locationId":109},{"id":30609,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30610],"locationId":109},{"id":30610,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30611],"locationId":109},{"id":30611,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30612],"locationId":109},{"id":30612,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30613],"locationId":109},{"id":30613,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30614],"locationId":109},{"id":30614,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30615],"locationId":109},{"id":30615,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30616],"locationId":109},{"id":30616,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30617],"locationId":109},{"id":30617,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30618],"locationId":109},{"id":30618,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30619],"locationId":109},{"id":30619,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30620],"locationId":109},{"id":30620,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30621],"locationId":109},{"id":30621,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30622],"locationId":109},{"id":30622,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30623],"locationId":109},{"id":30623,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":29874,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29875],"locationId":5},{"id":29875,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29876],"locationId":6},{"id":29876,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29877],"locationId":7},{"id":29877,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29878],"locationId":6},{"id":29878,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29879],"locationId":8},{"id":29879,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29880],"locationId":9},{"id":29880,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29881],"locationId":6},{"id":29881,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29882],"locationId":10},{"id":29882,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29883],"locationId":84},{"id":29883,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29884],"locationId":6},{"id":29884,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29885],"locationId":85},{"id":29885,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29886],"locationId":86},{"id":29886,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29887],"locationId":87},{"id":29887,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29888],"locationId":88},{"id":29888,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29889],"locationId":74},{"id":29889,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29890],"locationId":89},{"id":29890,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[29891],"locationId":90},{"id":29891,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29892],"locationId":109},{"id":29892,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29893],"locationId":109},{"id":29893,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29894],"locationId":109},{"id":29894,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29895],"locationId":109},{"id":29895,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29896],"locationId":109},{"id":29896,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29897],"locationId":109},{"id":29897,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29898],"locationId":109},{"id":29898,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29899],"locationId":109},{"id":29899,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29900],"locationId":109},{"id":29900,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29901],"locationId":109},{"id":29901,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29902],"locationId":109},{"id":29902,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29903],"locationId":109},{"id":29903,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29904],"locationId":109},{"id":29904,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29905],"locationId":109},{"id":29905,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29906],"locationId":109},{"id":29906,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29907],"locationId":109},{"id":29907,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29908],"locationId":109},{"id":29908,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29909],"locationId":109},{"id":29909,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29910],"locationId":109},{"id":29910,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29911],"locationId":109},{"id":29911,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29912],"locationId":109},{"id":29912,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29913],"locationId":109},{"id":29913,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29914],"locationId":109},{"id":29914,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29915],"locationId":109},{"id":29915,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29916],"locationId":109},{"id":29916,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29917],"locationId":109},{"id":29917,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29918],"locationId":109},{"id":29918,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29919],"locationId":109},{"id":29919,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29920],"locationId":109},{"id":29920,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29921],"locationId":109},{"id":29921,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29922],"locationId":109},{"id":29922,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29923],"locationId":109},{"id":29923,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29924],"locationId":109},{"id":29924,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29925],"locationId":109},{"id":29925,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29926],"locationId":109},{"id":29926,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29927],"locationId":109},{"id":29927,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29928],"locationId":109},{"id":29928,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29929],"locationId":109},{"id":29929,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29930],"locationId":109},{"id":29930,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29931],"locationId":109},{"id":29931,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29932],"locationId":109},{"id":29932,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29933],"locationId":109},{"id":29933,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29934],"locationId":109},{"id":29934,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29935],"locationId":109},{"id":29935,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29936],"locationId":109},{"id":29936,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29937],"locationId":109},{"id":29937,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29938],"locationId":109},{"id":29938,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29939],"locationId":109},{"id":29939,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29940],"locationId":109},{"id":29940,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29941],"locationId":109},{"id":29941,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29942],"locationId":109},{"id":29942,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30360,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30361],"locationId":5},{"id":30361,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30362],"locationId":6},{"id":30362,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30363],"locationId":7},{"id":30363,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30364],"locationId":6},{"id":30364,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30365],"locationId":8},{"id":30365,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30366],"locationId":9},{"id":30366,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30367],"locationId":6},{"id":30367,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30368],"locationId":10},{"id":30368,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30369],"locationId":84},{"id":30369,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30370],"locationId":6},{"id":30370,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30371],"locationId":85},{"id":30371,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30372],"locationId":86},{"id":30372,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30373],"locationId":87},{"id":30373,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30374],"locationId":88},{"id":30374,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30375],"locationId":74},{"id":30375,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30376],"locationId":89},{"id":30376,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[30377],"locationId":90},{"id":30377,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30378],"locationId":109},{"id":30378,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30379],"locationId":109},{"id":30379,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30380],"locationId":109},{"id":30380,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30381],"locationId":109},{"id":30381,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30382],"locationId":109},{"id":30382,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30383],"locationId":109},{"id":30383,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30384],"locationId":109},{"id":30384,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30385],"locationId":109},{"id":30385,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30386],"locationId":109},{"id":30386,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30387],"locationId":109},{"id":30387,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30388],"locationId":109},{"id":30388,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30389],"locationId":109},{"id":30389,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30390],"locationId":109},{"id":30390,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30391],"locationId":109},{"id":30391,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30392],"locationId":109},{"id":30392,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30393],"locationId":109},{"id":30393,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30394],"locationId":109},{"id":30394,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30395],"locationId":109},{"id":30395,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30396],"locationId":109},{"id":30396,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30397],"locationId":109},{"id":30397,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30398],"locationId":109},{"id":30398,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30399],"locationId":109},{"id":30399,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30400],"locationId":109},{"id":30400,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30401],"locationId":109},{"id":30401,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30402],"locationId":109},{"id":30402,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30403],"locationId":109},{"id":30403,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30404],"locationId":109},{"id":30404,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30405],"locationId":109},{"id":30405,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30406],"locationId":109},{"id":30406,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30407],"locationId":109},{"id":30407,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30408],"locationId":109},{"id":30408,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30409],"locationId":109},{"id":30409,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30410],"locationId":109},{"id":30410,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30411],"locationId":109},{"id":30411,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30412],"locationId":109},{"id":30412,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30413],"locationId":109},{"id":30413,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30414],"locationId":109},{"id":30414,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30415],"locationId":109},{"id":30415,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30416],"locationId":109},{"id":30416,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30417],"locationId":109},{"id":30417,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30418],"locationId":109},{"id":30418,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30419],"locationId":109},{"id":30419,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30420],"locationId":109},{"id":30420,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30421],"locationId":109},{"id":30421,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30422],"locationId":109},{"id":30422,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30423],"locationId":109},{"id":30423,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30424],"locationId":109},{"id":30424,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30425],"locationId":109},{"id":30425,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":28477,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28478],"locationId":453},{"id":28478,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28479],"locationId":2},{"id":28479,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28480],"locationId":3},{"id":28480,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28481],"locationId":452},{"id":28481,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28482],"locationId":453},{"id":28482,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28483],"locationId":2},{"id":28483,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28484],"locationId":3},{"id":28484,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28485],"locationId":452},{"id":28485,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28486],"locationId":453},{"id":28486,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28487],"locationId":2},{"id":28487,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28488],"locationId":3},{"id":28488,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28489],"locationId":452},{"id":28489,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28490],"locationId":453},{"id":28490,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28491],"locationId":2},{"id":28491,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28492],"locationId":3},{"id":28492,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28493],"locationId":452},{"id":28493,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28494],"locationId":453},{"id":28494,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28495],"locationId":2},{"id":28495,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28496],"locationId":3},{"id":28496,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28497],"locationId":452},{"id":28497,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28498],"locationId":453},{"id":28498,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28499],"locationId":2},{"id":28499,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28500],"locationId":3},{"id":28500,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28501],"locationId":452},{"id":28501,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28502],"locationId":453},{"id":28502,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28503],"locationId":2},{"id":28503,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28504],"locationId":3},{"id":28504,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28505],"locationId":452},{"id":28505,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28506],"locationId":453},{"id":28506,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28507],"locationId":2},{"id":28507,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28508],"locationId":3},{"id":28508,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28509],"locationId":452},{"id":28509,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28510],"locationId":453},{"id":28510,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28511],"locationId":2},{"id":28511,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28512],"locationId":3},{"id":28512,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28513],"locationId":452},{"id":28513,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28514],"locationId":453},{"id":28514,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28515],"locationId":2},{"id":28515,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28516],"locationId":3},{"id":28516,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28517],"locationId":452},{"id":28517,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28518],"locationId":453},{"id":28518,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28519],"locationId":2},{"id":28519,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28520],"locationId":3},{"id":28520,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28521],"locationId":452},{"id":28521,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28522],"locationId":453},{"id":28522,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28523],"locationId":2},{"id":28523,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28524],"locationId":3},{"id":28524,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28525],"locationId":452},{"id":28525,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28526],"locationId":453},{"id":28526,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28527],"locationId":2},{"id":28527,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28528],"locationId":3},{"id":28528,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28529],"locationId":452},{"id":28529,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28530],"locationId":453},{"id":28530,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28531],"locationId":2},{"id":28531,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28532],"locationId":3},{"id":28532,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28533],"locationId":452},{"id":28533,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28534],"locationId":453},{"id":28534,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28535],"locationId":2},{"id":28535,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28536],"locationId":3},{"id":28536,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28537],"locationId":452},{"id":28537,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28538],"locationId":453},{"id":28538,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28539],"locationId":2},{"id":28539,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28540],"locationId":3},{"id":28540,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28541],"locationId":452},{"id":28541,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28542],"locationId":453},{"id":28542,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28543],"locationId":2},{"id":28543,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28544],"locationId":3},{"id":28544,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28545],"locationId":452},{"id":28545,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28546],"locationId":453},{"id":28546,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28547],"locationId":2},{"id":28547,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28548],"locationId":3},{"id":28548,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28549],"locationId":452},{"id":28549,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28550],"locationId":453},{"id":28550,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28551],"locationId":2},{"id":28551,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28552],"locationId":3},{"id":28552,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28553],"locationId":452},{"id":28553,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28554],"locationId":453},{"id":28554,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28555],"locationId":2},{"id":28555,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28556],"locationId":3},{"id":28556,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28557],"locationId":452},{"id":28557,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28558],"locationId":453},{"id":28558,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28559],"locationId":2},{"id":28559,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28560],"locationId":3},{"id":28560,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28561],"locationId":452},{"id":28561,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28562],"locationId":453},{"id":28562,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28563],"locationId":2},{"id":28563,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28564],"locationId":3},{"id":28564,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28565],"locationId":452},{"id":28565,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28566],"locationId":453},{"id":28566,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28567],"locationId":2},{"id":28567,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28568],"locationId":3},{"id":28568,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28569],"locationId":452},{"id":28569,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28570],"locationId":453},{"id":28570,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28571],"locationId":2},{"id":28571,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28572],"locationId":3},{"id":28572,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28573],"locationId":452},{"id":28573,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28574],"locationId":453},{"id":28574,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28575],"locationId":2},{"id":28575,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28576],"locationId":3},{"id":28576,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28577],"locationId":452},{"id":28577,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28578],"locationId":453},{"id":28578,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28579],"locationId":2},{"id":28579,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28580],"locationId":3},{"id":28580,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28581],"locationId":452},{"id":28581,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28582],"locationId":453},{"id":28582,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28583],"locationId":2},{"id":28583,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28584],"locationId":3},{"id":28584,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28585],"locationId":452},{"id":28585,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28586],"locationId":453},{"id":28586,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28587],"locationId":2},{"id":28587,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28588],"locationId":3},{"id":28588,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28589],"locationId":452},{"id":28589,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28590],"locationId":453},{"id":28590,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28591],"locationId":2},{"id":28591,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28592],"locationId":3},{"id":28592,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28593],"locationId":452},{"id":28593,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28594],"locationId":453},{"id":28594,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28595],"locationId":2},{"id":28595,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28596],"locationId":3},{"id":28596,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28597],"locationId":452},{"id":28597,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28598],"locationId":453},{"id":28598,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28599],"locationId":2},{"id":28599,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28600],"locationId":3},{"id":28600,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28601],"locationId":452},{"id":28601,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28602],"locationId":453},{"id":28602,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28603],"locationId":2},{"id":28603,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28604],"locationId":3},{"id":28604,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28605],"locationId":452},{"id":28605,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28606],"locationId":453},{"id":28606,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28607],"locationId":2},{"id":28607,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28608],"locationId":3},{"id":28608,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28609],"locationId":452},{"id":28609,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28610],"locationId":453},{"id":28610,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28611],"locationId":2},{"id":28611,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28612],"locationId":3},{"id":28612,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28613],"locationId":452},{"id":28613,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28614],"locationId":453},{"id":28614,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28615],"locationId":2},{"id":28615,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28616],"locationId":3},{"id":28616,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28617],"locationId":452},{"id":28617,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28618],"locationId":453},{"id":28618,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28619],"locationId":2},{"id":28619,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28620],"locationId":3},{"id":28620,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28621],"locationId":452},{"id":28621,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28622],"locationId":453},{"id":28622,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28623],"locationId":2},{"id":28623,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28624],"locationId":3},{"id":28624,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28625],"locationId":452},{"id":28625,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28626],"locationId":453},{"id":28626,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28627],"locationId":2},{"id":28627,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28628],"locationId":3},{"id":28628,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28629],"locationId":452},{"id":28629,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28630],"locationId":453},{"id":28630,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28631],"locationId":2},{"id":28631,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28632],"locationId":3},{"id":28632,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28633],"locationId":452},{"id":28633,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28634],"locationId":453},{"id":28634,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28635],"locationId":2},{"id":28635,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28636],"locationId":3},{"id":28636,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28637],"locationId":452},{"id":28637,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28638],"locationId":453},{"id":28638,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28639],"locationId":2},{"id":28639,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28640],"locationId":3},{"id":28640,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28641],"locationId":452},{"id":28641,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28642],"locationId":453},{"id":28642,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28643],"locationId":2},{"id":28643,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28644],"locationId":3},{"id":28644,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28645],"locationId":452},{"id":28645,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28646],"locationId":453},{"id":28646,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28647],"locationId":2},{"id":28647,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28648],"locationId":3},{"id":28648,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28649],"locationId":452},{"id":28649,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28650],"locationId":453},{"id":28650,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28651],"locationId":2},{"id":28651,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28652],"locationId":3},{"id":28652,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28653],"locationId":452},{"id":28653,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28654],"locationId":453},{"id":28654,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28655],"locationId":2},{"id":28655,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28656],"locationId":3},{"id":28656,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28657],"locationId":452},{"id":28657,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28658],"locationId":453},{"id":28658,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28659],"locationId":2},{"id":28659,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28660],"locationId":3},{"id":28660,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28661],"locationId":452},{"id":28661,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28662],"locationId":453},{"id":28662,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28663],"locationId":2},{"id":28663,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28664],"locationId":3},{"id":28664,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28665],"locationId":452},{"id":28665,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28666],"locationId":453},{"id":28666,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28667],"locationId":2},{"id":28667,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28668],"locationId":3},{"id":28668,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28669],"locationId":452},{"id":28669,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28670],"locationId":453},{"id":28670,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28671],"locationId":2},{"id":28671,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28672],"locationId":3},{"id":28672,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28673],"locationId":452},{"id":28673,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28674],"locationId":453},{"id":28674,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28675],"locationId":2},{"id":28675,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28676],"locationId":3},{"id":28676,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28677],"locationId":452},{"id":28677,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28678],"locationId":453},{"id":28678,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28679],"locationId":2},{"id":28679,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28680],"locationId":3},{"id":28680,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28681],"locationId":452},{"id":28681,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28682],"locationId":453},{"id":28682,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28683],"locationId":2},{"id":28683,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28684],"locationId":3},{"id":28684,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28685],"locationId":452},{"id":28685,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28686],"locationId":453},{"id":28686,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28687],"locationId":2},{"id":28687,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28688],"locationId":3},{"id":28688,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28689],"locationId":452},{"id":28689,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28690],"locationId":453},{"id":28690,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28691],"locationId":2},{"id":28691,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28692],"locationId":3},{"id":28692,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28693],"locationId":452},{"id":28693,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28694],"locationId":453},{"id":28694,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28695],"locationId":2},{"id":28695,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28696],"locationId":3},{"id":28696,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28697],"locationId":452},{"id":28697,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28698],"locationId":453},{"id":28698,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28699],"locationId":2},{"id":28699,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28700],"locationId":3},{"id":28700,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28701],"locationId":452},{"id":28701,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28702],"locationId":453},{"id":28702,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28703],"locationId":2},{"id":28703,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28704],"locationId":3},{"id":28704,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28705],"locationId":452},{"id":28705,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28706],"locationId":453},{"id":28706,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28707],"locationId":2},{"id":28707,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28708],"locationId":3},{"id":28708,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28709],"locationId":452},{"id":28709,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28710],"locationId":453},{"id":28710,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28711],"locationId":2},{"id":28711,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28712],"locationId":3},{"id":28712,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28713],"locationId":452},{"id":28713,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28714],"locationId":453},{"id":28714,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28715],"locationId":2},{"id":28715,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28716],"locationId":3},{"id":28716,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28717],"locationId":452},{"id":28717,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28718],"locationId":453},{"id":28718,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28719,30447],"locationId":2},{"id":28719,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28720],"locationId":3},{"id":28720,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28721],"locationId":452},{"id":28721,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28722],"locationId":453},{"id":28722,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28723],"locationId":2},{"id":28723,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28724],"locationId":3},{"id":28724,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28725],"locationId":452},{"id":28725,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28726],"locationId":453},{"id":28726,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28727],"locationId":2},{"id":28727,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28728],"locationId":3},{"id":28728,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28729],"locationId":452},{"id":28729,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28730],"locationId":453},{"id":28730,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28731],"locationId":2},{"id":28731,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28732],"locationId":3},{"id":28732,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28733],"locationId":452},{"id":28733,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28734],"locationId":453},{"id":28734,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28735],"locationId":2},{"id":28735,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28736],"locationId":3},{"id":28736,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28737],"locationId":452},{"id":28737,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28738],"locationId":453},{"id":28738,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28739],"locationId":2},{"id":28739,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28740],"locationId":3},{"id":28740,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28741],"locationId":452},{"id":28741,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28742],"locationId":453},{"id":28742,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28743],"locationId":2},{"id":28743,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28744],"locationId":3},{"id":28744,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28745],"locationId":452},{"id":28745,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28746],"locationId":453},{"id":28746,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28747],"locationId":2},{"id":28747,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28748],"locationId":3},{"id":28748,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28749],"locationId":452},{"id":28749,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28750],"locationId":453},{"id":28750,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28751,30897],"locationId":2},{"id":28751,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28752],"locationId":3},{"id":28752,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28753],"locationId":452},{"id":28753,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28754],"locationId":453},{"id":28754,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28755],"locationId":2},{"id":28755,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28756],"locationId":3},{"id":28756,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28757],"locationId":452},{"id":28757,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28758],"locationId":453},{"id":28758,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28759,29535],"locationId":2},{"id":28759,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28760],"locationId":3},{"id":28760,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28761],"locationId":452},{"id":28761,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28762],"locationId":453},{"id":28762,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28763,30784],"locationId":2},{"id":28763,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28764],"locationId":3},{"id":28764,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28765],"locationId":452},{"id":28765,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28766],"locationId":453},{"id":28766,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28767,30646],"locationId":2},{"id":28767,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28768],"locationId":3},{"id":28768,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28769],"locationId":452},{"id":28769,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28770],"locationId":453},{"id":28770,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28771,30063],"locationId":2},{"id":28771,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28772],"locationId":3},{"id":28772,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28773],"locationId":452},{"id":28773,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28774],"locationId":453},{"id":28774,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28775,30311],"locationId":2},{"id":28775,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28776],"locationId":3},{"id":28776,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28777],"locationId":452},{"id":28777,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28778],"locationId":453},{"id":28778,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28779,30155],"locationId":2},{"id":28779,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28780],"locationId":3},{"id":28780,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28781],"locationId":452},{"id":28781,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28782],"locationId":453},{"id":28782,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28783,30134],"locationId":2},{"id":28783,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28784],"locationId":3},{"id":28784,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28785],"locationId":452},{"id":28785,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28786],"locationId":453},{"id":28786,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28787,29968],"locationId":2},{"id":28787,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28788],"locationId":3},{"id":28788,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28789],"locationId":452},{"id":28789,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28790],"locationId":453},{"id":28790,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28791,29035],"locationId":2},{"id":28791,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28792],"locationId":3},{"id":28792,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28793],"locationId":452},{"id":28793,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28794],"locationId":453},{"id":28794,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28795,29458],"locationId":2},{"id":28795,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28796],"locationId":3},{"id":28796,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28797],"locationId":452},{"id":28797,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28798],"locationId":453},{"id":28798,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28799,29357],"locationId":2},{"id":28799,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28800],"locationId":3},{"id":28800,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28801],"locationId":452},{"id":28801,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28802],"locationId":453},{"id":28802,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28803,28960],"locationId":2},{"id":28803,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[28804],"locationId":3},{"id":28804,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[28805],"locationId":452},{"id":28805,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[28806],"locationId":453},{"id":28806,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[28807,29085],"locationId":2},{"id":28807,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28808],"locationId":5},{"id":28808,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28809],"locationId":6},{"id":28809,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28810],"locationId":7},{"id":28810,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28811],"locationId":6},{"id":28811,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28812,29596],"locationId":8},{"id":28812,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28813],"locationId":9},{"id":28813,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28814],"locationId":6},{"id":28814,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28815,28887,28911,29160,29402],"locationId":10},{"id":28815,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28816],"locationId":84},{"id":28816,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28817],"locationId":6},{"id":28817,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28818],"locationId":85},{"id":28818,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28819],"locationId":86},{"id":28819,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28820],"locationId":87},{"id":28820,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28821],"locationId":88},{"id":28821,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28822],"locationId":74},{"id":28822,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[28823],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":28823,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":12,"children":[28957,29024,29107,29161,29320],"positionTicks":[{"line":82,"ticks":2,"startLocationId":91,"endLocationId":92},{"line":791,"ticks":1,"startLocationId":494,"endLocationId":495},{"line":83,"ticks":3,"startLocationId":92,"endLocationId":95},{"line":76,"ticks":5,"startLocationId":93,"endLocationId":94},{"line":77,"ticks":1,"startLocationId":94,"endLocationId":96}],"locationId":90},{"id":28957,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":12,"children":[29387],"positionTicks":[{"line":27,"ticks":12,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29387,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29024,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":10,"positionTicks":[{"line":48,"ticks":10,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":29107,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[29108],"locationId":117},{"id":29108,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":3,"children":[29109,29343],"positionTicks":[{"line":110,"ticks":3,"startLocationId":119,"endLocationId":120}],"locationId":118},{"id":29109,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[29110],"locationId":123},{"id":29110,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":3,"children":[29247],"positionTicks":[{"line":13,"ticks":3,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":29247,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":4,"positionTicks":[{"line":26,"ticks":4,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29343,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":2,"positionTicks":[{"line":791,"ticks":2,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":29161,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":29320,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":2,"positionTicks":[{"line":256,"ticks":1,"startLocationId":786,"endLocationId":107},{"line":158,"ticks":1,"startLocationId":828,"endLocationId":829}],"locationId":102},{"id":28887,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":80,"positionTicks":[{"line":547,"ticks":56,"startLocationId":144,"endLocationId":145},{"line":545,"ticks":24,"startLocationId":146,"endLocationId":147}],"locationId":143},{"id":28911,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[28912],"locationId":11},{"id":28912,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[28913],"locationId":12},{"id":28913,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[28914],"locationId":13},{"id":28914,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[28915,29077,29235,29316,29593],"locationId":14},{"id":28915,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":1,"children":[28916],"positionTicks":[{"line":667,"ticks":1,"startLocationId":47,"endLocationId":48}],"locationId":46},{"id":28916,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[28917],"locationId":54},{"id":28917,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[28918],"locationId":55},{"id":28918,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"children":[28919],"positionTicks":[{"line":80,"ticks":1,"startLocationId":59,"endLocationId":60}],"locationId":56},{"id":28919,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[28920],"locationId":28},{"id":28920,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[28921],"locationId":29},{"id":28921,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29077,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[29078],"locationId":36},{"id":29078,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29079],"locationId":40},{"id":29079,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":4,"children":[29356],"positionTicks":[{"line":13,"ticks":4,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":29356,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29235,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":726,"ticks":2,"startLocationId":34,"endLocationId":35}],"locationId":33},{"id":29316,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":5,"children":[29317,29353],"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21},{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19},{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23},{"line":790,"ticks":2,"startLocationId":16,"endLocationId":17}],"locationId":15},{"id":29317,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[29318],"locationId":28},{"id":29318,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29319],"locationId":29},{"id":29319,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":182,"ticks":1,"startLocationId":31,"endLocationId":32}],"locationId":30},{"id":29353,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":2,"positionTicks":[{"line":338,"ticks":2,"startLocationId":26,"endLocationId":27}],"locationId":25},{"id":29593,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[29594],"locationId":64},{"id":29594,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":66,"endLocationId":67}],"locationId":65},{"id":29160,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":29402,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29403],"locationId":12},{"id":29403,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29404],"locationId":13},{"id":29404,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[29405],"locationId":14},{"id":29405,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[29406],"locationId":46},{"id":29406,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[29407],"locationId":54},{"id":29407,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[29408],"locationId":55},{"id":29408,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":78,"ticks":1,"startLocationId":315,"endLocationId":316}],"locationId":56},{"id":29596,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[29597],"locationId":157},{"id":29597,"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"hitCount":0,"children":[29598],"locationId":164},{"id":29598,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29599],"locationId":29},{"id":29599,"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"hitCount":0,"children":[29600],"locationId":165},{"id":29600,"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"hitCount":0,"children":[29601],"locationId":166},{"id":29601,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29602],"locationId":29},{"id":29602,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":340,"ticks":1,"startLocationId":625,"endLocationId":420}],"locationId":167},{"id":29085,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[29086],"locationId":3},{"id":29086,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[29087],"locationId":452},{"id":29087,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[29088],"locationId":453},{"id":29088,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[29089,29254],"locationId":2},{"id":29089,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29090],"locationId":5},{"id":29090,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29091],"locationId":6},{"id":29091,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29092],"locationId":7},{"id":29092,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29093],"locationId":6},{"id":29093,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":1,"children":[29094,29104],"positionTicks":[{"line":485,"ticks":1,"startLocationId":243,"endLocationId":244}],"locationId":8},{"id":29094,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[29095],"locationId":157},{"id":29095,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[29096],"locationId":158},{"id":29096,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29097],"locationId":29},{"id":29097,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[29098],"locationId":159},{"id":29098,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":5,"positionTicks":[{"line":79,"ticks":2,"startLocationId":350,"endLocationId":351},{"line":84,"ticks":1,"startLocationId":357,"endLocationId":358},{"line":94,"ticks":1,"startLocationId":353,"endLocationId":348},{"line":81,"ticks":1,"startLocationId":354,"endLocationId":355}],"locationId":160},{"id":29104,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29105],"locationId":9},{"id":29105,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29106],"locationId":6},{"id":29106,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":3,"children":[29196,29231,29485,29591],"positionTicks":[{"line":562,"ticks":1,"startLocationId":566,"endLocationId":567},{"line":550,"ticks":2,"startLocationId":259,"endLocationId":260}],"locationId":10},{"id":29196,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":1,"positionTicks":[{"line":12,"ticks":1,"startLocationId":830,"endLocationId":831}],"locationId":84},{"id":29231,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":5,"positionTicks":[{"line":346,"ticks":4,"startLocationId":333,"endLocationId":334},{"line":345,"ticks":1,"startLocationId":268,"endLocationId":333}],"locationId":148},{"id":29485,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[29486],"locationId":198},{"id":29486,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29487],"locationId":29},{"id":29487,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29591,"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"hitCount":1,"positionTicks":[{"line":35,"ticks":1,"startLocationId":431,"endLocationId":432}],"locationId":342},{"id":29254,"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"hitCount":0,"children":[29255],"locationId":3},{"id":29255,"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"hitCount":0,"children":[29256],"locationId":452},{"id":29256,"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"hitCount":0,"children":[29257],"locationId":453},{"id":29257,"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"hitCount":0,"children":[29258],"locationId":2},{"id":29258,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29259],"locationId":5},{"id":29259,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29260],"locationId":6},{"id":29260,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29261],"locationId":7},{"id":29261,"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"hitCount":1,"children":[29262],"positionTicks":[{"line":535,"ticks":1,"startLocationId":237,"endLocationId":610}],"locationId":196},{"id":29262,"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"hitCount":0,"children":[29263],"locationId":197},{"id":29263,"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"hitCount":0,"children":[29264],"locationId":198},{"id":29264,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":28960,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[28961],"locationId":5},{"id":28961,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28962],"locationId":6},{"id":28962,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[28963],"locationId":7},{"id":28963,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28964],"locationId":6},{"id":28964,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[28965],"locationId":8},{"id":28965,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[28966],"locationId":9},{"id":28966,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28967],"locationId":6},{"id":28967,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[28968,29650,29699,29752],"locationId":10},{"id":28968,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[28969],"locationId":84},{"id":28969,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[28970],"locationId":6},{"id":28970,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[28971],"locationId":85},{"id":28971,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[28972],"locationId":86},{"id":28972,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[28973],"locationId":87},{"id":28973,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[28974],"locationId":88},{"id":28974,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[28975],"locationId":74},{"id":28975,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[28976],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":28976,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[28977,29073],"locationId":90},{"id":28977,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[28978],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":28978,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[28979,29301],"locationId":109},{"id":28979,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[28980,29075],"locationId":109},{"id":28980,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":3,"positionTicks":[{"line":29,"ticks":3,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29075,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":2,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29301,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29302],"locationId":114},{"id":29302,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[29303],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29303,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":29,"ticks":2,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29073,"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"hitCount":0,"children":[29074],"locationId":102},{"id":29074,"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"hitCount":2,"children":[29324],"positionTicks":[{"line":300,"ticks":2,"startLocationId":578,"endLocationId":579}],"locationId":247},{"id":29324,"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"hitCount":0,"children":[29325],"locationId":248},{"id":29325,"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"hitCount":0,"children":[29326],"locationId":249},{"id":29326,"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"hitCount":3,"positionTicks":[{"line":82,"ticks":3,"startLocationId":251,"endLocationId":252}],"locationId":250},{"id":29650,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":29699,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29700],"locationId":11},{"id":29700,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29701],"locationId":12},{"id":29701,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29702],"locationId":13},{"id":29702,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":2,"positionTicks":[{"line":578,"ticks":1,"startLocationId":206,"endLocationId":200},{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":29752,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[29753],"locationId":157},{"id":29753,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[29754],"locationId":158},{"id":29754,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":29357,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29358],"locationId":5},{"id":29358,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29359],"locationId":6},{"id":29359,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29360],"locationId":7},{"id":29360,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29361],"locationId":6},{"id":29361,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29362],"locationId":8},{"id":29362,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29363],"locationId":9},{"id":29363,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29364],"locationId":6},{"id":29364,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[29365,29763,29771],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":29365,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29366],"locationId":84},{"id":29366,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29367],"locationId":6},{"id":29367,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29368],"locationId":85},{"id":29368,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29369],"locationId":86},{"id":29369,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29370],"locationId":87},{"id":29370,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29371],"locationId":88},{"id":29371,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29372],"locationId":74},{"id":29372,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29373,29811],"locationId":89},{"id":29373,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[29374,29696],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92},{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":29374,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29375],"locationId":109},{"id":29375,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29376,29397],"locationId":109},{"id":29376,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29377],"locationId":109},{"id":29377,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29378],"locationId":109},{"id":29378,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29379],"locationId":109},{"id":29379,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29380],"locationId":114},{"id":29380,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29397,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29398],"locationId":114},{"id":29398,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29399],"locationId":114},{"id":29399,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29400],"locationId":114},{"id":29400,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29401],"locationId":114},{"id":29401,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29696,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"children":[29697],"positionTicks":[{"line":48,"ticks":2,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":29697,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":0,"children":[29698],"locationId":97},{"id":29698,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":29811,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":29763,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29764],"locationId":11},{"id":29764,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29765],"locationId":12},{"id":29765,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29766],"locationId":13},{"id":29766,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[29767,29773],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":29767,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[29768],"locationId":36},{"id":29768,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29769],"locationId":40},{"id":29769,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29770],"locationId":29},{"id":29770,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29773,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":786,"ticks":1,"startLocationId":18,"endLocationId":19}],"locationId":15},{"id":29771,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":29458,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29459],"locationId":5},{"id":29459,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29460],"locationId":6},{"id":29460,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29461],"locationId":7},{"id":29461,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29462],"locationId":6},{"id":29462,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29463,29961],"locationId":8},{"id":29463,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29464],"locationId":9},{"id":29464,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29465],"locationId":6},{"id":29465,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29466,29827,29846,29847],"locationId":10},{"id":29466,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29467],"locationId":84},{"id":29467,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29468],"locationId":6},{"id":29468,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29469],"locationId":85},{"id":29469,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29470],"locationId":86},{"id":29470,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29471],"locationId":87},{"id":29471,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29472],"locationId":88},{"id":29472,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29473],"locationId":74},{"id":29473,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29474],"locationId":89},{"id":29474,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[29475,29839,29840],"positionTicks":[{"line":27,"ticks":1,"startLocationId":370,"endLocationId":371},{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":29475,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29476],"locationId":109},{"id":29476,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29477],"locationId":114},{"id":29477,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29478],"locationId":114},{"id":29478,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29479],"locationId":114},{"id":29479,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29480],"locationId":114},{"id":29480,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29481],"locationId":114},{"id":29481,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29482],"locationId":114},{"id":29482,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29483],"locationId":114},{"id":29483,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29484],"locationId":114},{"id":29484,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29839,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":2,"children":[29845],"positionTicks":[{"line":47,"ticks":1,"startLocationId":211,"endLocationId":98},{"line":50,"ticks":1,"startLocationId":100,"endLocationId":101}],"locationId":97},{"id":29845,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":29840,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[29841],"locationId":117},{"id":29841,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[29842],"locationId":118},{"id":29842,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[29843],"locationId":123},{"id":29843,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29844],"locationId":29},{"id":29844,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29827,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29828],"locationId":11},{"id":29828,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29829],"locationId":12},{"id":29829,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29830],"locationId":13},{"id":29830,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[29831,29832,29851,29867],"locationId":14},{"id":29831,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":764,"ticks":1,"startLocationId":23,"endLocationId":24}],"locationId":15},{"id":29832,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[29833],"locationId":46},{"id":29833,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[29834],"locationId":54},{"id":29834,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[29835],"locationId":55},{"id":29835,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[29836],"locationId":56},{"id":29836,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[29837],"locationId":28},{"id":29837,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29838],"locationId":29},{"id":29838,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":29851,"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"hitCount":0,"children":[29852],"locationId":36},{"id":29852,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[29853],"locationId":40},{"id":29853,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":41,"endLocationId":42}],"locationId":29},{"id":29867,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":1,"positionTicks":[{"line":729,"ticks":1,"startLocationId":530,"endLocationId":531}],"locationId":33},{"id":29846,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":29847,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":29961,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[29962],"locationId":157},{"id":29962,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[29963],"locationId":158},{"id":29963,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[29964],"locationId":29},{"id":29964,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[29965],"locationId":159},{"id":29965,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":93,"ticks":1,"startLocationId":352,"endLocationId":353}],"locationId":160},{"id":29035,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29036],"locationId":5},{"id":29036,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29037],"locationId":6},{"id":29037,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29038],"locationId":7},{"id":29038,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29039],"locationId":6},{"id":29039,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29040,30055],"locationId":8},{"id":29040,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29041],"locationId":9},{"id":29041,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29042],"locationId":6},{"id":29042,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[29043,29950,29967,29994],"positionTicks":[{"line":550,"ticks":1,"startLocationId":259,"endLocationId":260},{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":29043,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29044],"locationId":84},{"id":29044,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29045],"locationId":6},{"id":29045,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29046],"locationId":85},{"id":29046,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29047],"locationId":86},{"id":29047,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29048],"locationId":87},{"id":29048,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29049],"locationId":88},{"id":29049,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29050],"locationId":74},{"id":29050,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":2,"children":[29051],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187},{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":29051,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[29052,29863],"locationId":90},{"id":29052,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[29053],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29053,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29054],"locationId":109},{"id":29054,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29055,29818],"locationId":109},{"id":29055,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29056],"locationId":109},{"id":29056,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29057],"locationId":109},{"id":29057,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29058],"locationId":109},{"id":29058,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29059],"locationId":109},{"id":29059,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29060],"locationId":109},{"id":29060,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29061],"locationId":109},{"id":29061,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29062],"locationId":109},{"id":29062,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29063],"locationId":109},{"id":29063,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29064],"locationId":109},{"id":29064,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":29818,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29819],"locationId":114},{"id":29819,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[29820],"locationId":114},{"id":29820,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":29863,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":29950,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[29951],"locationId":11},{"id":29951,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[29952],"locationId":12},{"id":29952,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[29953],"locationId":13},{"id":29953,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[29954],"locationId":14},{"id":29954,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":1,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21}],"locationId":15},{"id":29967,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":2,"positionTicks":[{"line":545,"ticks":1,"startLocationId":146,"endLocationId":147},{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":29994,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":1,"positionTicks":[{"line":353,"ticks":1,"startLocationId":149,"endLocationId":150}],"locationId":148},{"id":30055,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[30056],"locationId":157},{"id":30056,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[30057],"locationId":158},{"id":30057,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30058],"locationId":29},{"id":30058,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"children":[30059,30061],"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":30059,"callFrame":{"functionName":"SymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":8,"columnNumber":15},"hitCount":0,"children":[30060],"locationId":705},{"id":30060,"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"hitCount":1,"positionTicks":[{"line":28,"ticks":1,"startLocationId":446,"endLocationId":447}],"locationId":445},{"id":30061,"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"hitCount":0,"children":[30062],"locationId":68},{"id":30062,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":19,"ticks":1,"startLocationId":70,"endLocationId":71}],"locationId":69},{"id":29968,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29969],"locationId":5},{"id":29969,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29970],"locationId":6},{"id":29970,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29971],"locationId":7},{"id":29971,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29972],"locationId":6},{"id":29972,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29973,30230],"locationId":8},{"id":29973,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29974],"locationId":9},{"id":29974,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29975],"locationId":6},{"id":29975,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29976,30100],"locationId":10},{"id":29976,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29977],"locationId":84},{"id":29977,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29978],"locationId":6},{"id":29978,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29979],"locationId":85},{"id":29979,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29980],"locationId":86},{"id":29980,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29981],"locationId":87},{"id":29981,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29982],"locationId":88},{"id":29982,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29983],"locationId":74},{"id":29983,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[29984],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":29984,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[29985],"locationId":90},{"id":29985,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29986],"locationId":109},{"id":29986,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29987],"locationId":109},{"id":29987,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29988],"locationId":109},{"id":29988,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30100,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30101],"locationId":11},{"id":30101,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30102,30117,30119],"locationId":12},{"id":30102,"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"hitCount":0,"children":[30103],"locationId":72},{"id":30103,"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"hitCount":0,"children":[30104],"locationId":73},{"id":30104,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30105],"locationId":74},{"id":30105,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"hitCount":0,"children":[30106],"locationId":75},{"id":30106,"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":24},"hitCount":1,"positionTicks":[{"line":13,"ticks":1,"startLocationId":82,"endLocationId":83}],"locationId":81},{"id":30117,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30118],"locationId":13},{"id":30118,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"positionTicks":[{"line":575,"ticks":1,"startLocationId":520,"endLocationId":212}],"locationId":14},{"id":30119,"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"hitCount":1,"positionTicks":[{"line":808,"ticks":1,"startLocationId":257,"endLocationId":258}],"locationId":256},{"id":30230,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[30231],"locationId":157},{"id":30231,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[30232],"locationId":158},{"id":30232,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30233],"locationId":29},{"id":30233,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":0,"children":[30234],"locationId":159},{"id":30234,"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"hitCount":1,"positionTicks":[{"line":93,"ticks":1,"startLocationId":352,"endLocationId":353}],"locationId":160},{"id":30134,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30135],"locationId":5},{"id":30135,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30136],"locationId":6},{"id":30136,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30137],"locationId":7},{"id":30137,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30138],"locationId":6},{"id":30138,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30139],"locationId":8},{"id":30139,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30140],"locationId":9},{"id":30140,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30141],"locationId":6},{"id":30141,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":2,"children":[30142,30201,30229],"positionTicks":[{"line":542,"ticks":2,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":30142,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30143],"locationId":84},{"id":30143,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30144],"locationId":6},{"id":30144,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30145],"locationId":85},{"id":30145,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30146],"locationId":86},{"id":30146,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30147],"locationId":87},{"id":30147,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30148],"locationId":88},{"id":30148,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30149],"locationId":74},{"id":30149,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[30150,30198,30242],"positionTicks":[{"line":40,"ticks":1,"startLocationId":187,"endLocationId":375}],"locationId":89},{"id":30150,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":2,"children":[30151],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188},{"line":86,"ticks":1,"startLocationId":382,"endLocationId":383}],"locationId":90},{"id":30151,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30152],"locationId":109},{"id":30152,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30153],"locationId":109},{"id":30153,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30154],"locationId":114},{"id":30154,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":30198,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":203,"ticks":1,"startLocationId":130,"endLocationId":131}],"locationId":129},{"id":30242,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":1,"positionTicks":[{"line":42,"ticks":1,"startLocationId":126,"endLocationId":124}],"locationId":40},{"id":30201,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30202],"locationId":11},{"id":30202,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30203],"locationId":12},{"id":30203,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30204],"locationId":13},{"id":30204,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30205],"locationId":14},{"id":30205,"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"hitCount":0,"children":[30206],"locationId":64},{"id":30206,"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"hitCount":0,"children":[30207],"locationId":65},{"id":30207,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":370,"ticks":1,"startLocationId":265,"endLocationId":266}],"locationId":69},{"id":30229,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30155,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30156],"locationId":5},{"id":30156,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30157],"locationId":6},{"id":30157,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30158],"locationId":7},{"id":30158,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30159],"locationId":6},{"id":30159,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30160],"locationId":8},{"id":30160,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30161],"locationId":9},{"id":30161,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30162],"locationId":6},{"id":30162,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30163,30304],"locationId":10},{"id":30163,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30164],"locationId":84},{"id":30164,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30165],"locationId":6},{"id":30165,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30166],"locationId":85},{"id":30166,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30167],"locationId":86},{"id":30167,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30168],"locationId":87},{"id":30168,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30169],"locationId":88},{"id":30169,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30170],"locationId":74},{"id":30170,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30171],"locationId":89},{"id":30171,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[30172,30239,30257],"positionTicks":[{"line":77,"ticks":1,"startLocationId":94,"endLocationId":96}],"locationId":90},{"id":30172,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30173,30263],"locationId":109},{"id":30173,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30174],"locationId":114},{"id":30174,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30175],"locationId":114},{"id":30175,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30176],"locationId":114},{"id":30176,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30263,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30239,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30240],"locationId":40},{"id":30240,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30241],"locationId":29},{"id":30241,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":2,"positionTicks":[{"line":26,"ticks":2,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30257,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30258],"locationId":117},{"id":30258,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30259],"locationId":118},{"id":30259,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30260],"locationId":123},{"id":30260,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30261],"locationId":29},{"id":30261,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30304,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30311,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30312],"locationId":5},{"id":30312,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30313],"locationId":6},{"id":30313,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30314],"locationId":7},{"id":30314,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30315],"locationId":6},{"id":30315,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30316],"locationId":8},{"id":30316,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30317],"locationId":9},{"id":30317,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30318],"locationId":6},{"id":30318,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30319,30355,30523],"locationId":10},{"id":30319,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30320],"locationId":84},{"id":30320,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30321],"locationId":6},{"id":30321,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30322],"locationId":85},{"id":30322,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30323],"locationId":86},{"id":30323,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30324],"locationId":87},{"id":30324,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30325],"locationId":88},{"id":30325,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30326],"locationId":74},{"id":30326,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30327],"locationId":89},{"id":30327,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[30328],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":30328,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30329],"locationId":40},{"id":30329,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30330],"locationId":29},{"id":30330,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30355,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30356],"locationId":11},{"id":30356,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30357],"locationId":12},{"id":30357,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30358],"locationId":13},{"id":30358,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":1,"children":[30359,30508],"positionTicks":[{"line":576,"ticks":1,"startLocationId":212,"endLocationId":213}],"locationId":14},{"id":30359,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":3,"positionTicks":[{"line":784,"ticks":1,"startLocationId":20,"endLocationId":21},{"line":763,"ticks":1,"startLocationId":22,"endLocationId":23},{"line":760,"ticks":1,"startLocationId":536,"endLocationId":537}],"locationId":15},{"id":30508,"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"hitCount":2,"positionTicks":[{"line":726,"ticks":1,"startLocationId":34,"endLocationId":35},{"line":729,"ticks":1,"startLocationId":530,"endLocationId":531}],"locationId":33},{"id":30523,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30063,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30064],"locationId":5},{"id":30064,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30065],"locationId":6},{"id":30065,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30066],"locationId":7},{"id":30066,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30067],"locationId":6},{"id":30067,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30068],"locationId":8},{"id":30068,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30069],"locationId":9},{"id":30069,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30070],"locationId":6},{"id":30070,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[30071,30549,30632],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":30071,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30072],"locationId":84},{"id":30072,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30073],"locationId":6},{"id":30073,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30074],"locationId":85},{"id":30074,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30075],"locationId":86},{"id":30075,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30076],"locationId":87},{"id":30076,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30077],"locationId":88},{"id":30077,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30078],"locationId":74},{"id":30078,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30079,30629],"locationId":89},{"id":30079,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":3,"children":[30080,30525,30624],"positionTicks":[{"line":83,"ticks":1,"startLocationId":92,"endLocationId":95},{"line":76,"ticks":2,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":30080,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[30081],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30081,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30082],"locationId":109},{"id":30082,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30083],"locationId":114},{"id":30083,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30084],"locationId":114},{"id":30084,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30085],"locationId":114},{"id":30085,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30086],"locationId":114},{"id":30086,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30087],"locationId":114},{"id":30087,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30088],"locationId":114},{"id":30088,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30089],"locationId":114},{"id":30089,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30090],"locationId":114},{"id":30090,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30091],"locationId":114},{"id":30091,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30092],"locationId":114},{"id":30092,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30093],"locationId":114},{"id":30093,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30525,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30526],"locationId":40},{"id":30526,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30527],"locationId":29},{"id":30527,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30624,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30625],"locationId":117},{"id":30625,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30626],"locationId":118},{"id":30626,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30627],"locationId":123},{"id":30627,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30628],"locationId":29},{"id":30628,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30629,"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"hitCount":1,"positionTicks":[{"line":190,"ticks":1,"startLocationId":501,"endLocationId":502}],"locationId":129},{"id":30549,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30550],"locationId":11},{"id":30550,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30551],"locationId":12},{"id":30551,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30552],"locationId":13},{"id":30552,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30553],"locationId":14},{"id":30553,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[30554],"locationId":46},{"id":30554,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[30555],"locationId":54},{"id":30555,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[30556],"locationId":55},{"id":30556,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":1,"children":[30633],"positionTicks":[{"line":78,"ticks":1,"startLocationId":315,"endLocationId":316}],"locationId":56},{"id":30633,"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"hitCount":1,"positionTicks":[{"line":791,"ticks":1,"startLocationId":62,"endLocationId":63}],"locationId":61},{"id":30632,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30646,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30647],"locationId":5},{"id":30647,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30648],"locationId":6},{"id":30648,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30649],"locationId":7},{"id":30649,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30650],"locationId":6},{"id":30650,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30651,30837],"locationId":8},{"id":30651,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30652],"locationId":9},{"id":30652,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30653],"locationId":6},{"id":30653,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":1,"children":[30654,30805],"positionTicks":[{"line":542,"ticks":1,"startLocationId":204,"endLocationId":205}],"locationId":10},{"id":30654,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30655],"locationId":84},{"id":30655,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30656],"locationId":6},{"id":30656,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30657],"locationId":85},{"id":30657,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30658],"locationId":86},{"id":30658,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30659],"locationId":87},{"id":30659,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30660],"locationId":88},{"id":30660,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30661],"locationId":74},{"id":30661,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30662],"locationId":89},{"id":30662,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[30663,30696,30701,30709],"positionTicks":[{"line":73,"ticks":1,"startLocationId":210,"endLocationId":188}],"locationId":90},{"id":30663,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30664],"locationId":40},{"id":30664,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30665],"locationId":29},{"id":30665,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30696,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"children":[30697,30705],"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30697,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":2,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111},{"line":25,"ticks":1,"startLocationId":112,"endLocationId":113}],"locationId":109},{"id":30705,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30701,"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"hitCount":1,"positionTicks":[{"line":48,"ticks":1,"startLocationId":98,"endLocationId":99}],"locationId":97},{"id":30709,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30710],"locationId":117},{"id":30710,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30711],"locationId":118},{"id":30711,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30712],"locationId":123},{"id":30712,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30713],"locationId":29},{"id":30713,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30805,"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"hitCount":2,"positionTicks":[{"line":348,"ticks":1,"startLocationId":208,"endLocationId":209},{"line":346,"ticks":1,"startLocationId":333,"endLocationId":334}],"locationId":148},{"id":30837,"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"hitCount":0,"children":[30838],"locationId":157},{"id":30838,"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"hitCount":0,"children":[30839],"locationId":158},{"id":30839,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30840],"locationId":29},{"id":30840,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"hitCount":1,"positionTicks":[{"line":596,"ticks":1,"startLocationId":346,"endLocationId":347}],"locationId":159},{"id":30784,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30785],"locationId":5},{"id":30785,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30786],"locationId":6},{"id":30786,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30787],"locationId":7},{"id":30787,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30788],"locationId":6},{"id":30788,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30789],"locationId":8},{"id":30789,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30790],"locationId":9},{"id":30790,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30791],"locationId":6},{"id":30791,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30792,30821,30841],"locationId":10},{"id":30792,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30793],"locationId":84},{"id":30793,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30794],"locationId":6},{"id":30794,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30795],"locationId":85},{"id":30795,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30796],"locationId":86},{"id":30796,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30797],"locationId":87},{"id":30797,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30798],"locationId":88},{"id":30798,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30799],"locationId":74},{"id":30799,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":1,"children":[30800],"positionTicks":[{"line":39,"ticks":1,"startLocationId":186,"endLocationId":187}],"locationId":89},{"id":30800,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[30801],"positionTicks":[{"line":76,"ticks":1,"startLocationId":93,"endLocationId":94}],"locationId":90},{"id":30801,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30802,30806],"locationId":109},{"id":30802,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30803],"locationId":109},{"id":30803,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30804],"locationId":114},{"id":30804,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":145,"ticks":1,"startLocationId":215,"endLocationId":216}],"locationId":214},{"id":30806,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"children":[30807],"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30807,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30821,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30822],"locationId":11},{"id":30822,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30823],"locationId":12},{"id":30823,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30824],"locationId":13},{"id":30824,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30825],"locationId":14},{"id":30825,"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"hitCount":0,"children":[30826],"locationId":46},{"id":30826,"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"hitCount":0,"children":[30827],"locationId":54},{"id":30827,"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"hitCount":0,"children":[30828],"locationId":55},{"id":30828,"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"hitCount":0,"children":[30829],"locationId":56},{"id":30829,"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"hitCount":0,"children":[30830],"locationId":28},{"id":30830,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30831],"locationId":29},{"id":30831,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30841,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":29535,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[29536],"locationId":5},{"id":29536,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29537],"locationId":6},{"id":29537,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[29538],"locationId":7},{"id":29538,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29539],"locationId":6},{"id":29539,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[29540],"locationId":8},{"id":29540,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[29541],"locationId":9},{"id":29541,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29542],"locationId":6},{"id":29542,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[29543,30931,30938],"locationId":10},{"id":29543,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[29544],"locationId":84},{"id":29544,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[29545],"locationId":6},{"id":29545,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[29546],"locationId":85},{"id":29546,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[29547],"locationId":86},{"id":29547,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[29548],"locationId":87},{"id":29548,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[29549],"locationId":88},{"id":29549,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[29550],"locationId":74},{"id":29550,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[29551],"locationId":89},{"id":29551,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":1,"children":[29552,30868,30926],"positionTicks":[{"line":82,"ticks":1,"startLocationId":91,"endLocationId":92}],"locationId":90},{"id":29552,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29553,30852],"locationId":109},{"id":29553,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29554],"locationId":109},{"id":29554,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29555],"locationId":109},{"id":29555,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29556],"locationId":109},{"id":29556,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29557],"locationId":109},{"id":29557,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29558],"locationId":109},{"id":29558,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29559],"locationId":109},{"id":29559,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29560],"locationId":109},{"id":29560,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29561],"locationId":109},{"id":29561,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29562],"locationId":109},{"id":29562,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29563],"locationId":109},{"id":29563,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29564],"locationId":109},{"id":29564,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29565],"locationId":109},{"id":29565,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29566],"locationId":109},{"id":29566,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29567],"locationId":109},{"id":29567,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29568],"locationId":109},{"id":29568,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29569],"locationId":109},{"id":29569,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29570],"locationId":109},{"id":29570,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29571],"locationId":109},{"id":29571,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29572],"locationId":109},{"id":29572,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29573],"locationId":109},{"id":29573,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29574],"locationId":109},{"id":29574,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29575],"locationId":109},{"id":29575,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29576],"locationId":109},{"id":29576,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29577],"locationId":109},{"id":29577,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29578],"locationId":109},{"id":29578,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29579],"locationId":109},{"id":29579,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29580],"locationId":109},{"id":29580,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29581],"locationId":109},{"id":29581,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29582],"locationId":109},{"id":29582,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29583],"locationId":109},{"id":29583,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29584],"locationId":109},{"id":29584,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29585],"locationId":109},{"id":29585,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29586],"locationId":109},{"id":29586,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29587],"locationId":109},{"id":29587,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[29588],"locationId":109},{"id":29588,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109},{"id":30852,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30853],"locationId":114},{"id":30853,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30868,"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"hitCount":0,"children":[30869],"locationId":40},{"id":30869,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30870],"locationId":29},{"id":30870,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30926,"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"hitCount":0,"children":[30927],"locationId":117},{"id":30927,"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"hitCount":0,"children":[30928],"locationId":118},{"id":30928,"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"hitCount":0,"children":[30929],"locationId":123},{"id":30929,"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"hitCount":0,"children":[30930],"locationId":29},{"id":30930,"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"hitCount":1,"positionTicks":[{"line":26,"ticks":1,"startLocationId":44,"endLocationId":45}],"locationId":43},{"id":30931,"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"hitCount":0,"children":[30932],"locationId":11},{"id":30932,"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"hitCount":0,"children":[30933],"locationId":12},{"id":30933,"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"hitCount":0,"children":[30934],"locationId":13},{"id":30934,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"hitCount":0,"children":[30935],"locationId":14},{"id":30935,"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"hitCount":0,"children":[30936],"locationId":15},{"id":30936,"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"hitCount":0,"children":[30937],"locationId":25},{"id":30937,"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"hitCount":1,"positionTicks":[{"line":338,"ticks":1,"startLocationId":194,"endLocationId":195}],"locationId":69},{"id":30938,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"hitCount":1,"positionTicks":[{"line":547,"ticks":1,"startLocationId":144,"endLocationId":145}],"locationId":143},{"id":30897,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30898],"locationId":5},{"id":30898,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30899],"locationId":6},{"id":30899,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30900],"locationId":7},{"id":30900,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30901],"locationId":6},{"id":30901,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30902],"locationId":8},{"id":30902,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30903],"locationId":9},{"id":30903,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30904],"locationId":6},{"id":30904,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30905],"locationId":10},{"id":30905,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30906],"locationId":84},{"id":30906,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30907],"locationId":6},{"id":30907,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30908],"locationId":85},{"id":30908,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30909],"locationId":86},{"id":30909,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30910],"locationId":87},{"id":30910,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30911],"locationId":88},{"id":30911,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30912],"locationId":74},{"id":30912,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30913],"locationId":89},{"id":30913,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[30914],"locationId":90},{"id":30914,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30915],"locationId":109},{"id":30915,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30916],"locationId":109},{"id":30916,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30917],"locationId":109},{"id":30917,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30918],"locationId":109},{"id":30918,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30919],"locationId":114},{"id":30919,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30920],"locationId":114},{"id":30920,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":0,"children":[30921],"locationId":114},{"id":30921,"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":29,"ticks":1,"startLocationId":115,"endLocationId":116}],"locationId":114},{"id":30447,"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"hitCount":0,"children":[30448],"locationId":5},{"id":30448,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30449],"locationId":6},{"id":30449,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"hitCount":0,"children":[30450],"locationId":7},{"id":30450,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30451],"locationId":6},{"id":30451,"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"hitCount":0,"children":[30452],"locationId":8},{"id":30452,"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"hitCount":0,"children":[30453],"locationId":9},{"id":30453,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30454],"locationId":6},{"id":30454,"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"hitCount":0,"children":[30455],"locationId":10},{"id":30455,"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"hitCount":0,"children":[30456],"locationId":84},{"id":30456,"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"hitCount":0,"children":[30457],"locationId":6},{"id":30457,"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"hitCount":0,"children":[30458],"locationId":85},{"id":30458,"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"hitCount":0,"children":[30459],"locationId":86},{"id":30459,"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"hitCount":0,"children":[30460],"locationId":87},{"id":30460,"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"hitCount":0,"children":[30461],"locationId":88},{"id":30461,"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"hitCount":0,"children":[30462],"locationId":74},{"id":30462,"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"hitCount":0,"children":[30463],"locationId":89},{"id":30463,"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"hitCount":0,"children":[30464],"locationId":90},{"id":30464,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30465],"locationId":109},{"id":30465,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30466],"locationId":109},{"id":30466,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30467],"locationId":109},{"id":30467,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30468],"locationId":109},{"id":30468,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30469],"locationId":109},{"id":30469,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30470],"locationId":109},{"id":30470,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30471],"locationId":109},{"id":30471,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30472],"locationId":109},{"id":30472,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30473],"locationId":109},{"id":30473,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30474],"locationId":109},{"id":30474,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30475],"locationId":109},{"id":30475,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30476],"locationId":109},{"id":30476,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30477],"locationId":109},{"id":30477,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30478],"locationId":109},{"id":30478,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30479],"locationId":109},{"id":30479,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30480],"locationId":109},{"id":30480,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30481],"locationId":109},{"id":30481,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30482],"locationId":109},{"id":30482,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30483],"locationId":109},{"id":30483,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30484],"locationId":109},{"id":30484,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30485],"locationId":109},{"id":30485,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30486],"locationId":109},{"id":30486,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30487],"locationId":109},{"id":30487,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30488],"locationId":109},{"id":30488,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30489],"locationId":109},{"id":30489,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30490],"locationId":109},{"id":30490,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30491],"locationId":109},{"id":30491,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30492],"locationId":109},{"id":30492,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30493],"locationId":109},{"id":30493,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30494],"locationId":109},{"id":30494,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30495],"locationId":109},{"id":30495,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30496],"locationId":109},{"id":30496,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30497],"locationId":109},{"id":30497,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30498],"locationId":109},{"id":30498,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30499],"locationId":109},{"id":30499,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30500],"locationId":109},{"id":30500,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30501],"locationId":109},{"id":30501,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30502],"locationId":109},{"id":30502,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30503],"locationId":109},{"id":30503,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30504],"locationId":109},{"id":30504,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30505],"locationId":109},{"id":30505,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30506],"locationId":109},{"id":30506,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":0,"children":[30507],"locationId":109},{"id":30507,"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"hitCount":1,"positionTicks":[{"line":27,"ticks":1,"startLocationId":110,"endLocationId":111}],"locationId":109}],"startTime":18271199571,"endTime":18281207504,"samples":[260,523,787,1044,1045,1046,1066,1068,1078,1103,1045,1104,1105,1104,1046,1112,1113,1116,1117,1066,786,1104,1124,1104,1147,1104,1150,522,1172,1173,1174,1045,1175,522,1176,1209,1219,1242,1258,1259,1261,1262,1263,1264,1258,1270,1262,1282,1294,1295,1294,1303,1309,1319,1324,1319,1329,1334,1173,1335,1338,1340,1343,1344,1357,1360,1362,1334,1367,1338,1318,1368,1361,1335,1369,1385,1386,1389,1391,1399,1400,1405,1407,1408,1409,1424,1173,1431,1441,1453,1456,1452,1462,1453,1473,1474,1486,1487,1440,1488,1489,1492,1496,1501,1489,1506,1508,1509,1511,1520,1521,1529,1530,1533,1173,1546,1560,1562,1563,1565,1530,1574,1577,1578,1582,1583,1600,1603,1608,1561,1609,1616,1617,1619,1624,1633,1617,1634,1637,1646,1173,1648,1651,1656,1657,1656,1656,1657,1645,1671,1688,1690,1633,1702,1703,1633,1712,1702,1713,1703,1716,1724,1729,1734,1736,1741,1742,1173,1744,1745,1757,1770,1771,1772,1780,1781,1771,1785,1771,1788,1801,1802,1816,1817,1821,1822,1800,1816,1825,1816,1822,1829,1833,1842,1173,1844,1845,1848,1849,1842,1850,1851,1848,1862,1865,1875,1880,1865,1885,1802,1894,1895,1901,1802,1913,1924,1930,1933,1851,1942,1944,1173,1945,1947,1941,1941,1901,1955,1962,1968,1972,1976,1979,1980,1955,1981,1986,1988,1989,1991,2012,2025,1986,1986,2027,2028,2031,2028,2032,1173,2035,2024,2043,2048,2049,2050,2059,2024,2060,2032,2069,2068,2045,2074,2049,2048,2075,2068,2068,2085,2075,2088,2103,2105,2107,2050,2112,1173,2115,2131,2086,2136,2144,2149,2155,2150,2157,2160,2161,2164,2176,2188,2193,2161,2197,2206,2218,2219,2220,2221,2206,2222,2206,2155,2226,1173,2229,2231,2232,2233,2241,2242,2241,2243,2257,2269,2273,2219,2277,2280,2282,2206,2283,2289,2291,2300,2306,2311,1173,2316,2318,2320,2322,2331,1173,2333,2336,2331,2337,2341,2342,2343,2356,2377,2378,2377,2376,2382,2343,2383,2384,2389,2394,2395,2404,2406,2419,2420,2424,2426,2431,2432,1173,2433,2356,2450,2457,2466,2474,2449,2356,2475,2478,2483,2488,2509,2510,2516,2519,2531,2404,2536,2539,2541,2533,2550,2551,2509,2552,1173,2567,2552,2568,2572,2552,2578,2552,2585,2588,2593,2601,2604,2605,2607,2603,2612,2614,2615,2636,2645,2635,2647,2635,2652,2665,2670,1173,2683,2684,2690,2693,2682,2697,2705,2708,2721,2723,2724,2733,2734,2737,2665,2740,2737,2743,2748,2665,2751,2652,2688,2665,2752,2752,2752,1173,2757,2758,2759,2766,2767,2776,2780,2783,2791,2802,2803,2804,2807,2816,2819,2825,2830,2834,2835,2847,2849,2851,2854,2857,2858,2858,2859,2873,1173,2874,2888,2905,2908,2909,2910,2854,2918,2919,2928,2928,2928,2927,2931,2942,2943,2944,2944,2948,2950,2942,2944,2953,2958,2928,2905,2963,2928,1173,2966,2967,2968,2968,2969,2974,2982,2983,2985,2989,2990,2994,2997,3011,3012,3013,2997,3010,3014,2963,3015,3032,3035,3037,3037,3044,1173,3046,3047,3052,3060,3064,3084,3093,3098,3047,3047,3103,3116,3117,3118,3118,3130,3131,3130,3134,3135,3136,3131,3138,3139,3147,3152,3153,1173,3158,3161,3162,3164,3197,3200,3205,3214,3215,3227,3236,3237,3250,3249,3259,3237,3260,3262,3264,3198,3259,3267,3270,3273,3274,3287,3296,1173,3296,3299,3295,3302,3303,3307,3308,3309,3311,3314,3322,3307,3322,3330,3334,3342,3358,3354,3362,3364,3365,3367,3368,3371,3374,3375,1173,3376,3382,3362,3362,3362,3395,3404,3362,3408,3362,3416,3425,3430,3436,3438,3441,3444,3451,3452,3457,3458,3459,3480,3395,3485,3488,1173,3489,3490,3491,3492,3493,3484,3501,3504,3516,3516,3524,3525,3526,3529,3534,3524,3536,3549,3552,3557,3560,3565,3573,3574,3480,3574,3576,1173,3588,3597,3597,3600,3596,3605,3608,3588,3613,3614,3615,3597,3621,3626,3627,3574,3638,3641,3649,3649,3597,3627,3649,3655,3641,3666,3669,1173,3678,3684,3689,3701,3641,3689,3677,3703,3712,3719,3725,3726,3729,3732,3726,3734,3711,3738,3739,3740,3742,3763,3765,3779,3762,3792,3796,1173,3800,3802,3805,3792,3807,3815,3816,3815,3815,3822,3825,3826,3828,3836,4016,4193,4367,4538,4706,4871,5033,5192,5348,5501,5651,5798,5942,6083,6221,6356,6492,6624,6753,6879,7002,7122,7239,7353,7464,7572,7677,7779,7878,7974,8067,8157,8244,8328,8409,8487,8562,8634,8703,8769,8832,8892,8949,9003,9054,9102,9147,9189,9228,9264,9297,9327,9354,9378,9399,9417,9432,9444,9453,9459,9458,9462,1432,9463,9463,9463,9485,9497,9498,9510,9498,9512,9507,9516,9519,9496,9498,9498,9534,9538,9539,1173,9540,9553,9555,9560,9563,9552,9557,9568,9557,9592,9593,9589,9589,9597,9592,9602,9589,9589,9607,9601,9631,9632,9630,9627,9634,9628,9639,1173,9628,9640,9638,9642,9663,9664,9669,9663,9672,9673,9674,9676,9677,9669,9681,9702,9703,9708,9709,9697,9699,9715,9718,9707,9707,9721,9741,1173,9742,9743,9744,9749,9743,9738,9743,9730,9755,9771,9780,9781,9782,9782,9789,9794,9781,9795,9781,9781,9808,9807,9818,9819,9817,9808,9816,1173,9817,9821,9822,9817,9845,9853,9854,9855,9855,9834,9842,9858,9862,9863,9864,9882,9892,9891,9891,9896,9891,9897,9900,9901,9899,9904,1173,9925,9926,9933,9925,9925,9941,9942,9938,9926,9951,9962,9976,9975,9977,9978,9980,9985,9973,9988,9974,9982,10010,10014,10018,10021,10022,1173,10022,10029,10010,10034,10020,10036,10056,10060,10064,10056,10068,10069,10056,10048,10056,10069,10087,10102,10105,10099,10099,10090,10108,10108,10109,10109,10114,1173,10127,10133,10126,10140,10152,10138,10153,10155,10140,10156,10127,10169,10175,10169,10183,10193,10180,10169,10198,10204,10169,10175,10219,10223,10232,10223,10232,1173,10239,10240,10241,10222,10242,10222,10250,10260,10270,10276,10279,10269,10282,10283,10284,10255,10283,10296,10304,10313,10316,10318,10316,10316,10321,10312,10324,1173,10325,10326,10351,10352,10347,10355,10359,10361,10338,10348,10352,10362,10374,10374,10383,10384,10387,10384,10390,10391,10394,10374,10374,10406,10406,10415,1173,10421,10422,10428,10430,10431,10415,10432,10432,10440,10454,10455,10457,10460,10471,10461,10477,10478,10481,10457,10486,10499,10503,10512,10513,10514,10517,10520,10511,1173,10503,10516,10493,10544,10545,10546,10547,10543,10554,10532,10555,10545,10560,10551,10586,10587,10588,10581,10581,10586,10592,10586,10593,10580,10592,10614,10605,10615,10623,10614,10625,10623,10614,10614,10614,10619,10638,10643,10655,10651,10652,10651,10643,10651,10657,10659,10672,10682,10683,10685,10693,10694,10677,10696,10698,10702,10703,10696,10716,10725,10732,10733,10734,10735,10735,10725,10740,10743,10792,10816,10817,10813,10819,10821,10816,10822,10820,10819,10820,10827,10851,1173,10855,10859,10860,10861,10867,10852,10871,10872,10839,10885,10894,10897,10893,10894,10894,10893,10898,10906,10925,10893,10946,10949,10954,10946,10955,10956,1173,10954,10937,10946,10964,10946,10987,10998,11002,11005,11009,10976,10996,10995,11014,11016,10987,11042,11028,11044,11045,11037,11046,11037,11037,11047,11049,11054,1173,11075,11076,11081,11087,11075,11092,11097,11098,11076,11100,11113,11121,11123,11122,11124,11126,11129,11128,11121,11122,11135,11158,11159,11162,11163,11167,1173,11147,11173,11155,11174,11178,11190,11199,11200,11203,11213,11200,11214,11219,11219,11211,11211,11242,11248,11249,11249,11250,11267,11228,11271,11249,1173,11247,11295,11302,11305,11311,11292,11312,11302,11292,11319,11320,11332,11345,11346,11334,11358,11361,11346,11366,11346,11354,11367,11383,11400,11405,11408,1173,11409,11409,11414,11386,11423,11409,11400,11445,11452,11456,11459,11444,11460,11461,11443,11467,11461,11482,11493,11494,11493,11495,11493,11496,11493,11501,1173,11509,11510,11523,11531,11537,11540,11550,11555,11558,11523,11523,11574,11575,11585,11584,11586,11587,11587,11585,11584,11590,11593,11614,11617,11618,1173,11614,11616,11619,11624,11613,11625,11614,11626,11650,11651,11657,11650,11647,11658,11651,11659,11655,11651,11672,11681,11672,11688,11680,11686,11672,11692,11693,11672,11696,11700,11711,11723,11734,11735,11736,11736,11722,11737,11722,11738,11722,11760,11763,11768,11762,11758,11750,11769,11759,11772,11763,11775,11796,11787,11797,11806,11810,11797,11813,11814,11787,11817,11821,11833,11838,11833,11833,11839,11851,11848,11852,11855,11848,11852,11878,11883,11884,11877,11887,11867,11892,1173,11895,11898,11899,11891,11922,11930,11920,11920,11937,11942,11947,11942,11921,11948,11972,11973,11978,11979,11980,12006,12007,11968,12008,11968,12010,12022,1173,12281,12545,12546,12550,12562,12826,12022,12828,12022,12829,12830,12833,523,1078,522,12838,1104,12839,12851,13109,13115,1363,1326,1045,13116,13119,1173,1066,1112,13118,1149,1045,12833,1078,1066,13122,13119,13126,1149,1066,1110,13127,13128,1104,13130,1104,786,13131,1045,1045,1045,13132,1115,1173,783,1105,786,1045,13122,13133,1077,1045,1045,1045,1174,13138,1263,13141,13142,13146,13152,13155,13158,1104,13164,1104,1116,1066,13146,1176,1173,1112,1066,13135,13169,13171,1078,1363,1263,1045,1045,1045,1269,13138,1240,13198,1045,13199,786,13131,12833,522,12833,1104,1078,260,1268,1173,1104,1104,13122,13202,786,13207,13119,1326,13141,13138,13209,523,13116,1077,1176,1240,1045,13131,1111,13119,12839,13210,13216,13219,1104,1112,1173,13121,13245,13246,1104,522,13254,1104,13261,1112,1043,1174,13138,1149,1043,786,1269,1104,1104,1104,13138,786,1045,1326,523,1045,1326,786,1173,1045,13122,1078,1104,1045,1263,1104,1104,1045,13254,1045,13157,13138,1348,13138,13311,1078,13141,1045,1149,13171,1149,13312,13313,1045,1104,1173,1104,1066,1104,1045,13341,1104,1326,786,1104,13342,1269,1269,13246,1104,13343,13210,1077,13344,13209,12833,786,13394,1363,13116,1078,13199,1045,1173,13199,786,13344,13138,1262,786,13135,786,1240,13397,13400,13246,1149,13128,1112,1104,13401,13209,1149,1104,13402,13152,1043,13407,1104,522,1173,522,1066,13408,1045,1117,13116,13138,1045,1172,522,13210,1104,1043,12833,1262,13409,12839,786,1149,13415,13199,1363,786,13116,13416,1263,13246,1173,13219,13246,13417,13401,1104,1110,522,1149,1262,1045,1150,1043,13131,13427,1104,786,13428,786,13429,522,786,13138,13138,1066,1043,1173,1066,522,1045,13430,523,1326,13118,1077,13434,1045,1115,1104,1078,1045,1326,1043,1363,13118,1078,1363,13436,13466,1262,12839,522,13210,1173,1104,13469,13115,13428,13470,1045,786,1078,13475,13481,13138,13545,522,13547,13548,786,1066,13428,13171,1078,1104,13119,1045,1068,13140,13549,1173,13158,13550,1149,1116,13210,13470,13557,1104,1045,1045,1043,13564,1104,1104,1175,1263,1066,1269,13573,1043,1066,1104,1112,1078,13116,1045,1173,1104,13577,13115,786,13470,1045,1043,1149,786,1066,523,522,1104,13122,1104,1149,13401,13155,13579,1066,786,786,1113,1104,260,1043,1173,1104,13121,786,1116,1363,260,13132,1116,13130,13409,786,1172,1066,787,786,1045,13580,1104,1045,13141,1045,522,260,1363,1104,13116,13416,1173,13138,13158,1104,1149,13151,1043,13582,522,786,1045,13135,1066,1240,13119,13138,1045,1045,786,1104,1045,13583,13146,1104,786,1363,1522,1173,786,13417,1149,1043,13158,786,1104,13584,13116,13428,786,13138,1045,1112,1104,1104,1104,1104,1066,1104,13577,1104,1149,523,1149,523,1173,786,522,1113,1045,786,1045,13138,1174,786,13550,1077,13585,13597,1043,1363,1269,13598,1104,13605,13122,1112,260,1174,1149,1045,1112,1173,13469,13608,786,13608,13598,1045,13649,13654,13470,1045,1104,1045,13115,1045,1262,1046,13119,786,13138,1078,13157,1116,13158,1112,13417,1149,1173,1254,13550,1078,1269,12830,13142,1043,1066,1104,1045,1045,522,13141,13656,786,13138,786,13469,1078,1104,1045,1262,13115,1066,1104,13141,1173,1363,1104,13428,1043,13660,1104,13141,1104,13689,1269,1104,13341,1268,1262,1269,1269,13690,1066,12830,1045,1043,1045,13138,1104,1045,1104,1045,1173,13138,1363,13409,1078,13131,1066,13691,1113,1078,1078,13692,1045,1149,1104,13470,12833,1104,1045,13210,1045,1066,13469,1176,1104,1045,523,1104,1326,1173,1045,1174,13118,1149,523,1326,786,13118,786,13138,13210,1045,1104,13693,1104,1045,1112,786,13409,1363,1115,1104,13475,1326,13132,12833,1173,13584,13695,1045,787,13703,1364,1110,1045,12833,13141,13707,1147,13131,1111,13409,13171,13157,1104,1045,13138,1112,13138,1043,13312,13138,13171,1173,1045,1149,13400,1149,1176,1550,13119,1254,1112,13121,13655,13115,13709,13246,1104,13407,1104,13138,1104,1104,13550,1104,1240,13711,1116,13164,1173,13742,1104,1045,1045,13146,13788,1363,13246,786,786,13132,1149,13138,1104,786,1078,1112,1043,13797,13131,12830,1104,1262,13428,1104,1173,13140,13199,1104,1363,1043,13138,13799,1104,13800,1150,1111,1175,13199,1078,523,13400,786,1363,13803,13118,522,13804,13209,1045,13246,13807,1174,1173,1066,13344,1045,13116,1149,523,13246,1262,1102,1104,1045,1263,13407,13584,13246,1110,1149,1175,1045,1112,1077,1149,786,12833,1066,13400,1173,1212,13138,13130,1150,1176,1174,1111,13257,13115,786,1104,786,1104,13132,1066,522,13119,13116,1045,1104,1045,13119,13428,1066,1045,1045,1173,1326,1104,13138,13809,12833,1363,1326,1045,1176,1262,13119,13131,13131,1104,1104,1045,13131,1077,13428,1066,13817,786,13654,13823,786,13115,1173,13825,13469,1263,1066,1066,1078,13409,1363,13203,13804,1104,1110,1115,13246,1043,13834,1104,1066,1263,1043,786,13210,13837,1175,1104,1115,1173,1149,1241,12839,1363,1043,13469,1045,786,1045,522,13127,1045,13470,1104,1104,1043,13838,1363,1078,523,1306,13842,1326,1045,13312,1045,1173,1104,13118,1045,13428,1066,1045,1043,786,12830,13203,786,13254,13843,1045,13116,13164,1115,13152,12830,1104,13847,786,1149,1149,13401,1104,1173,13583,786,786,1116,1045,12830,12839,1043,1043,13115,1104,13312,1149,522,12833,13138,1043,13138,1066,13119,13848,13138,13608,1172,13246,13851,1173,13417,13246,1043,12839,13135,1149,1104,1104,13209,1043,1263,1104,1043,1306,13118,13122,787,1046,1363,1306,1045,786,1045,1254,786,1306,13118,1173,1104,1326,1078,13210,1116,1285,13853,1104,13401,1066,1104,1254,1066,1104,13140,13138,1104,13141,1043,1104,13113,1104,13556,1104,1045,1043,1173,13155,1269,1045,13312,13138,1363,786,1110,1363,13607,1043,1269,1104,12830,1104,1045,12833,1262,786,1043,13131,1104,13141,1363,1045,1066,1173,786,13138,1306,1045,13119,523,13430,13115,1043,1104,13115,13138,1269,12830,1326,1104,1045,1104,13854,13402,12839,1045,13608,12839,13856,13141,13857,1173,786,13138,13858,13116,1149,13803,13157,1176,13415,13135,1045,1363,1104,786,1104,786,1045,1066,786,1115,1149,1045,1149,1045,13207,1045,13860,1173,1066,13915,1172,787,1111,786,1112,13210,13257,1149,1104,13210,13584,1174,1104,13140,13916,13917,1045,1104,1066,1104,1262,13922,1104,13956,1104,1173,1045,1043,13917,1046,1104,1045,1045,1045,13254,13138,786,1045,13825,13957,1116,1263,13157,13119,260,1043,1066,13470,13138,13154,1104,786,1173,13481,1112,13127,13246,1078,1113,1045,1045,523,13116,1045,13146,786,786,12830,1149,1066,13157,1046,13216,13246,1104,523,1045,786,786,1173,1112,786,1110,1149,1347,1149,1104,13164,786,12833,778,1364,1262,786,13154,1104,1066,1175,13151,1111,13608,13142,13157,13312,1149,13409,13152,13958,1066,14001,1363,1078,13141,13210,13132,1175,13246,13216,13478,1104,13164,1045,1104,13584,1045,1066,13146,787,1104,1045,13608,13401,786,523,1173,1173,1173,1173,1174,1262,1045,13312,1116,1043,1173,1173,786,14009,14013,1173,1173,1043,523,1104,1078,13116,1068,13342,14015,1077,1066,13415,13138,13693,1113,1104,13407,13157,12839,787,1045,523,786,13138,1104,13138,12833,260,12833,14016,786,13141,1176,1173,1043,13691,1268,14023,1066,13138,13122,1240,1045,13210,1066,1241,13138,1104,1045,13203,260,1112,13199,13577,1045,786,786,14024,1104,13131,786,1173,1068,523,1115,13219,1043,13210,13254,1104,1104,1104,1363,1263,1066,13131,13171,522,13132,13116,13118,786,1149,1043,1104,13158,14025,13138,1149,1173,786,1045,1078,13135,1045,14036,13138,1066,1043,14037,13312,1045,1045,1320,13138,1104,1363,1363,786,1174,522,13210,1104,1104,1104,13138,1173,1045,13138,260,1045,13155,14041,13409,1327,14074,1078,1043,1363,1066,13312,1104,522,1066,13171,13142,13436,13141,1267,12830,1104,1043,12830,786,1173,13577,786,1066,13401,786,1263,786,1066,786,12833,13428,1174,1104,1268,1043,1045,13800,13138,260,13119,14135,14143,523,1115,1213,14150,1173,1066,13400,13138,13116,786,13219,13140,13203,1326,1432,13433,1043,1112,13135,1113,1174,1104,13246,1262,13131,13421,14151,13138,13584,13135,14152,1173,1046,13122,1066,523,1045,13138,1149,1262,1104,1175,13470,1306,1149,1116,1113,1078,1046,1078,13138,1045,13164,13131,14165,13478,1045,1210,13138,1173,13138,1104,13209,13138,787,786,13203,1363,13344,1115,260,1066,1104,14168,522,14174,14176,14177,1174,1104,14178,1104,1045,1115,1066,13132,1173,1043,786,522,1078,1306,786,13651,1111,1104,13470,1104,1104,1066,1104,1045,13140,13122,1066,1043,13171,1045,13119,1262,1046,1066,13219,1363,1043,12830,13916,13691,1045,1306,523,1116,786,1045,1326,13400,13135,14179,523,14036,1116,1263,1112,1363,13138,1116,522,1104,13141,1104,1104,1173,13428,13171,1045,1043,786,522,1174,13119,1104,13141,13135,786,13115,1045,13115,13155,1104,1269,786,13608,13608,1112,1104,1045,1149,13546,1173,1149,1078,13141,1043,1045,1066,13409,1104,13138,786,1113,13469,1149,1045,1254,13608,522,1149,1104,1078,1104,1326,522,1104,13138,1104,1173,14025,1045,1111,14180,786,1066,1043,1045,13804,1262,1285,1262,1066,1045,1043,1045,1043,1104,13157,1104,1066,14181,1112,1113,786,13142,1326,1175,1078,1104,13608,1066,1149,12830,1173,1043,1363,13564,1112,522,13417,13118,786,1045,786,13584,13654,1113,1078,1043,786,1045,13116,1078,1043,13401,1262,523,1043,1104,1045,13857,1043,1104,14185,13211,13138,14188,1173,786,13649,1104,1104,522,1363,14191,1045,1043,1104,13164,1104,1112,1045,1213,1045,13138,1115,1078,14192,1104,13115,1043,1363,1104,523,13210,13115,1104,1173,1326,1077,1043,1066,12833,13138,13198,13138,1104,1043,1240,14194,1045,13132,13122,13119,1306,1104,13115,13157,1326,786,13605,1116,13138,13118,13407,1173,522,13116,13312,786,13401,1104,1045,12833,1104,1263,13211,12833,1043,13219,523,13210,1104,13584,12833,1254,13131,13128,13608,1104,13246,13141,1110,1173,1104,13138,1174,13550,1104,1104,1104,786,1104,786,1104,13138,14036,1104,1045,1104,13116,1115,13132,1363,13548,13312,13703,523,1078,522,1046,1173,1078,14177,13598,523,1116,1104,13141,1045,1045,523,1149,1045,1104,786,1045,1078,13246,14198,13210,1104,1268,1104,13917,13116,1045,1112,1173,1112,14210,1045,1078,1172,1078,1045,786,13138,13132,1115,1043,786,13209,14211,1066,13313,13691,12830,12833,522,13219,1104,13141,1104,786,1173,13138,1288,14214,1104,1043,13115,13837,14215,1110,1326,13608,14164,1043,1213,13116,1045,786,1045,1104,13141,1067,1104,14219,1263,13140,786,1173,13344,1045,13415,1147,13119,1113,787,13219,1363,14258,1077,13402,12839,786,1149,1043,1104,1104,1363,522,14266,13577,13209,1078,786,1173,1045,13138,523,13598,786,1066,13138,1104,13800,1066,13199,14267,13211,1112,1043,13246,1363,1269,13428,786,13130,1066,1327,13155,13203,13131,1173,13138,13155,14268,1326,786,13138,1045,1149,1045,14269,1046,523,1112,1043,13140,1043,13469,13916,1104,1045,13344,13164,13206,1104,13155,260,1173,1306,1104,1113,1115,1104,13822,522,1078,13608,13546,13407,13709,1262,14270,13138,1175,12833,260,1043,1045,13158,13141,1112,786,1104,1173,13131,13140,1045,1115,13151,14271,13158,1263,1104,14272,786,1174,13435,1112,1043,14273,1111,786,1149,13155,1268,13141,1078,1078,14276,14267,1173,13428,1174,1104,1104,1045,522,13409,1046,13127,1113,786,12839,1066,1149,13138,1254,13126,1066,13138,13703,1104,1113,13115,1104,13581,1173,1115,13118,1066,1363,787,1046,13564,1045,13394,13155,13138,1043,14283,14285,13203,13138,1326,1046,13312,14327,1078,786,14328,1045,13130,1104,1104,1173,1045,14329,13138,13116,1078,14194,13409,1104,13138,1045,1045,13210,1104,13415,12830,1320,1262,1104,13470,1149,13140,1149,1149,1254,1149,13115,1104,1173,1413,786,1104,1045,523,13469,1104,1045,1263,1045,1043,13209,1104,1326,13140,1045,14333,1116,13210,1045,13401,14334,13211,1110,1043,1269,523,1173,13157,1043,1078,1104,786,13131,1043,13146,13608,13115,1112,13138,1078,1045,13584,1326,13198,1117,1104,1045,786,786,14335,1363,1045,1306,1173,1363,1112,13138,1043,1112,13141,13207,1043,1045,1104,13119,13470,13660,14337,1175,13480,13401,13401,1045,13564,1078,13116,1078,1045,1174,1078,786,1173,1043,1045,13433,1104,1078,1104,13401,1066,14339,1116,13155,13138,13246,1104,12833,1104,1269,1043,13171,786,1077,1045,1149,13131,14015,12830,1173,1104,1269,1104,1306,523,13141,13210,786,1045,522,1066,13122,14074,786,1043,1066,1045,13138,1104,1077,1149,1045,13132,1078,13119,1113,1116,1173,1045,1066,1066,13409,1149,1045,13210,1078,13313,13122,1104,13158,522,1112,1043,786,1262,13131,1104,1240,14340,786,1066,1263,13140,13435,13138,13132,13254,1173,12837,786,786,1104,260,1113,260,12833,13400,786,13138,14341,1363,13409,12833,786,13246,523,1104,12833,1104,13822,523,14341,13607,1066,1116,1113,14174,1104,13154,1045,1045,1173,14285,13692,1269,1045,12833,13407,260,13409,13556,1112,13141,13169,13140,14342,1068,1045,1104,13131,1104,1045,1111,1326,13116,1104,1078,1363,786,1104,1043,1078,1173,13142,1104,1104,1254,13417,13436,14345,13401,523,1066,1045,13246,13138,1045,1043,1066,13126,1149,1104,1104,13401,260,14402,1066,14403,13409,13154,13171,1173,786,1078,1104,1045,13344,1104,1104,1363,13246,1149,14405,522,1254,13138,13140,523,13848,1112,13598,1363,12830,13409,1104,1046,13118,522,13312,1173,1104,786,13470,1111,1326,1112,1045,1045,523,13654,13138,13138,1262,1045,1149,1045,13246,1066,1115,1045,1363,1104,14191,1105,1115,1104,1173,14340,1043,13132,523,13138,1363,13122,13210,13691,1045,13138,260,1045,1043,1112,13121,13116,14406,14409,12833,1043,1045,1104,1045,13119,13547,1046,1173,522,786,523,1066,1078,13140,1104,1078,1104,1104,1175,1254,13130,1149,13122,1149,13856,13219,1363,786,13138,13119,1326,13158,1066,12833,1173,13138,14405,1045,1104,1112,786,1149,1104,1078,14185,1263,1104,1363,1045,1113,786,13246,1149,1045,1066,13138,13409,13118,13138,786,14410,1173,1045,1045,1104,1045,13138,13146,13138,1149,523,1043,1111,523,1113,1268,13469,13254,1104,1104,1176,13598,260,1112,12833,13800,13138,1363,1078,1173,14191,14411,1043,1046,1149,1068,13608,1045,522,786,786,13138,786,786,1112,1262,1104,13407,13138,523,13435,1045,13219,1045,1112,1173,1115,1263,1043,1104,787,1045,523,1116,1116,13119,1104,13138,13138,1104,1077,786,1104,1078,13428,1149,1066,1149,1045,1078,1045,1363,13115,1173,13138,1112,1113,13211,1150,1104,14414,522,1104,13155,1066,1104,1363,1078,1043,1326,1262,1043,1174,1254,1045,13478,13138,1149,523,13401,1173,1078,13138,13312,13141,1043,1077,1066,1045,13138,1149,1066,13608,786,1078,786,786,13608,13119,260,783,14421,522,1043,1111,1045,1068,13246,1173,1149,1045,1174,1104,786,13210,1066,13788,1066,1066,13584,12833,786,1112,1113,13417,13435,1104,13254,786,1110,1104,13584,1104,1254,1043,1043,1173,13164,1262,13344,522,1111,1104,786,14009,1104,1043,1104,1115,13138,1045,786,523,1364,1115,1363,13138,1066,1078,1111,1104,1104,1174,1173,1173,1077,14429,13119,13138,13116,13806,13199,1104,1104,1175,1104,1045,522,1115,13130,522,522,1149,1104,1104,13127,1104,13138,12833,13312,1175,1173,1066,523,13155,14149,1364,1045,1104,786,1045,13116,1307,14405,13341,13131,13157,786,1112,1104,1045,1104,13132,1254,1104,13415,14430,13115,1173,13219,13401,523,1046,13119,1113,1046,13116,1045,13132,786,523,14431,260,13141,13401,13401,13216,13246,1262,1104,13138,1104,1116,13138,786,1173,1045,14439,1104,1045,1104,1262,13127,13656,1172,14441,14192,1268,13209,1104,1113,1045,13169,14276,13132,13958,1078,1104,14441,1104,1262,1326,1173,1104,1066,1262,787,13141,13138,786,13118,522,1112,1104,1043,1104,1104,13577,1104,1066,1326,786,1115,1363,13583,1045,1066,786,1174,13209,1173,13246,1066,14442,9463,9463,9463,9463,9463,9463,14447,9463,9463,9463,9463,9463,9463,9463,14454,14453,14460,14460,14474,14481,14482,14491,14482,14491,14501,14490,14502,14504,14490,14505,14491,14490,14506,14509,14523,14524,14533,14524,14542,14545,14548,14549,14524,14523,14550,14513,14551,14571,1173,14575,14580,14581,14570,14583,14570,14571,14584,14583,14571,14586,14585,14598,14599,14598,14604,14613,14613,14598,14614,14599,14613,14613,14616,14629,14637,14641,14653,14660,14664,1173,14665,14637,14638,14657,14670,14682,14690,14691,14691,14693,14697,14702,14707,14690,14709,14710,14692,14731,14732,14738,14722,14743,14733,14751,14777,14778,14779,14732,14797,1173,14802,14807,14808,14811,14801,14814,14820,14822,14824,14829,14830,14843,14855,14890,14892,14893,14852,14855,14898,14855,14851,14854,14925,14930,14910,14931,14929,14920,1173,14932,14945,14948,14919,14950,14976,14977,14970,14979,14980,14962,14981,14976,14982,14981,14982,14994,15003,15008,15009,15011,15012,15009,15015,15012,15018,15012,1173,15030,15038,15050,15055,15047,15047,15056,15057,15058,15057,15057,15071,15083,15076,15085,15094,15097,15081,15098,15094,15098,15098,15106,15119,15120,15115,15131,1173,15120,15136,15144,15120,15146,15147,15155,15172,15175,15178,15182,15203,15206,15212,15169,15211,15216,15227,15236,15237,15240,15251,15249,15252,15258,15259,15236,1173,15260,15273,15285,15286,15287,15296,15299,15282,15286,15308,15286,15286,15316,15326,15327,15338,15336,15339,15344,15345,15346,15349,15350,15365,15379,15380,15385,1173,15391,15395,15380,15398,15384,15380,15397,15414,15415,15424,15410,15423,15410,15425,15423,15415,15425,15415,15440,15454,15451,15455,15457,15458,15463,15464,15458,1173,15465,15467,15480,15494,15501,15506,15508,15509,15489,15510,15488,15515,15518,15541,15548,15549,15554,15555,15556,15560,15539,15559,15561,15562,15574,15585,15590,15591,15592,15593,15589,15582,15594,15594,15582,15595,15607,15615,15619,15620,15621,15627,15641,15642,15615,15644,15647,15668,15669,15668,15672,15671,15673,15668,1173,15672,15680,15681,15688,15701,15702,15710,15720,15698,15702,15720,15693,15719,15693,15733,15747,15742,15747,15751,15754,15760,15804,15809,15810,15754,15834,15827,15835,15840,15845,15822,15846,15849,15835,15840,15835,15849,15862,15866,15876,15874,15896,15874,15900,15904,15905,15908,15911,15940,15941,15946,15929,15928,15952,1173,15930,15941,15953,15941,15965,15977,15982,15983,15987,15988,15979,15982,15965,15982,15989,16001,16010,16018,16024,16018,16030,16037,16038,16030,16040,16041,16062,16062,16063,16066,16070,16063,16063,16074,16082,16062,16078,16067,16097,16108,16105,16111,16112,16118,16106,16120,16122,16123,16128,16141,16146,16165,16182,16187,1173,16190,16191,16186,16191,16191,16204,16213,16214,16216,16225,16226,16228,16231,16213,16235,16236,16249,16258,16248,16264,16267,16262,16272,16265,16273,16274,16275,1173,16294,16303,16305,16308,16312,16312,16303,16313,16315,16316,16319,16327,16335,16339,16332,16349,16339,16352,16350,16339,16353,16355,16368,16380,16388,16389,16390,16367,16368,16380,16393,16377,16388,16394,16411,16422,16424,16425,16428,16406,16430,16425,16431,16429,16433,16457,16458,16453,16463,16471,16458,16472,16474,1173,16475,16487,16488,16496,16497,16498,16488,16499,16498,16497,16501,16498,16514,16522,16529,16526,16530,16531,16535,16536,16538,16532,16541,16567,16568,16575,1173,16575,16578,16585,16586,16562,16589,16562,16594,16607,16616,16621,16629,16630,16631,16634,16636,16615,16654,16615,16678,16683,16684,16684,16685,16684,16688,16695,1173,16697,16698,16713,16735,16736,16736,16742,16747,16749,16735,16751,16734,16760,16770,16794,16800,16801,16791,16802,16802,16803,16802,16790,16802,16808,16821,16821,1173,16833,16832,16836,16841,16843,16821,16833,16821,16829,16856,16860,16870,16876,16879,16881,16882,16868,16883,16884,16895,16904,16900,16904,16914,16904,16915,16912,16916,16917,16912,16914,16930,16939,16944,16945,16947,16953,16958,16959,16958,16963,16964,16986,16987,16984,16988,16987,16987,16989,16994,16985,16995,16985,17012,1173,17018,17030,17027,17032,17036,17039,17042,17043,17011,17054,17064,17065,17066,17077,17083,17088,17089,17090,17094,17097,17110,17118,17123,17123,17130,17110,1173,17134,17127,17137,17128,17399,17417,17427,17426,17691,17712,17714,17719,17711,17718,17711,17727,17990,18244,18504,18515,18519,18244,18520,18244,18784,18786,1173,19050,19306,19319,19319,19320,19333,19596,19601,19864,19865,19876,19881,19884,19908,19917,19920,19921,19880,19908,19880,19922,19930,19933,19319,19881,19935,19933,1173,19936,19936,19949,19950,19936,19951,19864,19952,19953,19956,19962,19936,19963,19883,19306,19884,19931,19917,19921,19934,19908,19966,19601,19934,19880,19936,1173,19972,19319,19319,19319,19974,19319,19975,19874,19319,19976,19884,19319,19976,19956,19979,19933,19880,19936,19933,19950,19933,20002,19880,19921,20005,19908,1173,19319,20008,19883,19880,20009,19880,19966,20010,20011,20011,20012,19917,19319,20013,19050,20014,19934,19957,20016,19319,20010,20019,20010,19948,19864,19972,19949,19874,20031,20037,19922,19933,20039,20010,19864,19936,19936,19876,20009,20065,20067,19948,19936,19908,20089,20014,19864,20031,20011,20031,20090,19935,20091,19975,1173,20004,19864,20092,20098,19864,19880,20101,20108,19950,20110,20111,19936,19957,19948,20112,20116,20031,19319,20004,19908,20009,19950,20019,20118,20119,20123,1173,19319,19319,19319,19319,20009,19876,20019,20101,20151,19884,20152,19936,20209,20212,19936,19319,20019,19950,19319,19921,20218,19948,19936,19948,19921,19949,19933,1173,19908,20219,19979,19319,19936,19881,19921,20220,19917,19601,20227,19936,20013,20005,20031,19963,19050,19878,19874,20229,19976,19884,20013,19936,19934,19319,19864,1173,19936,20101,20234,19881,19921,19319,19936,19884,19864,20235,19936,19319,19319,20235,19319,20212,19319,20234,19319,20239,19936,20031,19936,19864,19319,1173,20240,19948,19319,20247,19878,19936,19933,19976,19880,20250,20256,19884,20286,20341,20009,19936,19881,20019,19933,19864,20343,20347,20219,19933,19864,20375,1173,19319,20112,20010,19948,20010,19319,19864,19864,19950,20012,19883,19935,19917,19884,19921,19936,19908,20031,19921,20112,20016,19948,20019,19936,19922,19975,20376,1173,20019,19948,19963,19876,19932,19319,19936,20235,19319,19319,19908,19966,20013,19864,20377,20386,19874,20013,20387,19864,20014,19950,19864,19908,19874,1173,20112,19908,20004,20004,19908,19921,20388,20014,19319,19319,19979,19319,19874,20377,20392,20098,19864,20098,19936,20393,19936,19922,19936,19956,19864,19956,20419,1173,20424,19950,19319,20432,19974,20112,19950,20113,19908,19963,19865,20446,19922,19319,20014,19950,20451,19864,20453,20454,20005,19920,19936,20458,20460,19936,19948,1173,20463,19936,20464,19979,19921,20229,19936,19936,19949,19935,19935,19319,20009,20009,19319,19864,19979,20019,20454,19976,19874,20458,20466,20454,19950,19861,20019,1173,20470,20004,20005,20471,19864,19884,19864,19936,19864,19319,20391,20019,20473,19948,19936,19881,19601,19931,20014,20479,19950,19908,19936,19864,20481,19319,20009,1173,19319,19319,19319,20458,20485,20019,19979,20211,19972,19934,20152,19864,20092,20009,19881,19319,20019,20525,19934,19908,20526,20112,19864,20101,19880,19936,19921,1173,20212,19881,20019,19979,19936,19936,20347,20005,19319,19950,19936,20039,20011,19880,20019,19948,19864,19864,20559,19908,19956,19950,19865,19908,19933,19864,1173,19948,19936,19974,19884,19908,20564,20019,19319,19319,19930,20235,19948,20235,20567,19319,20568,20451,19948,20019,19917,19319,20112,19320,19979,19880,19933,20112,1173,19933,19864,19955,19864,19979,19908,19921,19864,19922,19883,19979,19950,19979,19922,20569,19880,19319,19601,19974,20454,20031,19976,19319,20019,19950,19319,1173,19881,19319,19933,19320,19864,19950,20112,20004,20458,20013,20570,20571,19319,19319,19320,19319,19864,19931,20620,19936,19936,20092,19319,19864,19908,20388,20621,1173,19934,19933,20112,19601,19934,19979,20019,19883,20622,20009,19319,19950,19864,20112,20473,19880,19908,19979,20123,20218,19934,20112,19306,20031,20624,19319,20451,1173,19956,19936,19936,19934,19864,20235,19950,20212,19936,19921,19931,20019,19948,20630,19975,19884,20019,19881,19936,19963,19922,20635,19864,20009,19880,20005,19908,20640,19880,19319,20014,19936,20641,19319,19951,19936,19948,19908,19319,19908,20624,20642,19874,19975,19601,19921,19949,20650,20016,20101,19933,19948,19601,19319,1173,19319,19319,19319,20653,19319,19936,19319,20009,19908,19948,19920,20112,19319,19936,19953,20220,19880,20654,20687,19864,19864,19966,20005,19948,20019,19880,20014,1173,19306,19880,19864,20019,19864,19934,19936,19936,19319,19921,20005,20473,20234,19864,20031,19950,19319,19963,20016,19865,19936,20112,19950,20688,20037,19936,1173,19319,20460,19319,19884,19936,19864,20650,19908,20624,20150,19864,20722,20009,19908,20031,19935,19948,20729,19319,20152,20650,20730,20011,19864,19948,19950,20737,1173,19319,19881,19319,19936,20229,20743,19880,19934,19601,19936,19936,20753,19050,20212,19880,19876,20377,20014,20424,19880,19319,20377,19917,19955,19319,19936,1173,19319,20212,19319,19884,19950,20481,19936,20755,19933,19319,19884,20235,19949,19319,19319,20011,19936,19936,19864,19864,20481,19917,19319,19921,19319,20758,20250,1173,20759,20013,19979,19950,19921,20212,19864,19966,20688,19974,20031,19936,19934,19874,19319,19936,19864,19921,20019,19979,19921,19948,19883,20622,20014,20564,1173,20388,20010,19948,20471,20767,19921,19936,20653,19874,19935,19864,19319,19319,20235,20771,20526,20089,19319,20016,19865,20526,19864,19955,20037,19948,19948,1173,20010,19972,19880,19864,19601,20775,19319,19865,20471,19949,20235,19880,19948,19880,19936,20229,20526,20219,19933,20778,20388,20235,19963,19949,19864,20779,20814,1173,20815,19881,19864,20019,19864,19933,20817,19880,20218,19908,20013,19864,20014,20112,19936,19933,19864,19936,20031,19874,20818,19935,20819,20019,19948,19596,19948,19936,1173,19319,20019,20891,19976,20629,19934,19963,19976,20013,19936,19865,20011,19319,20019,19917,19936,20010,20526,20004,19949,19319,19319,19319,20031,19319,19876,1173,19880,19319,19864,19979,19319,20388,20897,19874,20653,19864,20100,19950,19908,19908,20092,19908,19921,20211,20654,20012,19950,20900,19950,19864,20019,20112,19864,1173,20526,20901,19949,19921,20031,19921,19948,19936,19864,19948,19874,19949,20908,19908,20014,19864,20111,20016,19936,19864,20391,20019,19874,20019,19979,19319,1173,19319,19601,20454,19934,19936,19884,20019,19864,20100,19948,19921,19864,19948,20115,20112,20914,20915,20418,19936,19948,19883,19931,19936,19933,19908,19950,20947,19864,1173,20948,19319,19319,20212,19876,20388,19864,19319,20011,20112,19319,19864,20388,19864,19948,19864,19319,19883,19319,19864,19908,20219,20004,19874,19319,19936,19880,1173,19303,1173,1173,19874,1173,1173,19922,20949,1173,19319,1173,1173,19319,1173,1173,19936,19319,20343,19956,19880,20013,19953,20950,20010,19976,19908,20466,20219,20951,20019,19936,19319,19908,19976,20526,19948,19936,20013,19936,19936,19319,19319,19908,19864,19874,20961,19936,1173,19921,19880,19908,19936,19864,20229,19951,20526,20564,1173,20688,19963,20962,19881,19917,19932,19936,20968,20013,19864,19319,20969,19864,19936,19975,1173,20458,19319,20220,19864,19966,19950,19908,1173,20970,20774,19319,19971,19319,19936,19319,19908,19319,19864,19950,19936,19864,19950,19934,19931,20526,19319,1173,19936,20112,20977,19319,19936,19319,20653,20471,19880,20978,19974,19934,20418,19319,19936,19319,19319,19319,19319,19908,20471,19908,20031,19950,21025,20016,1173,19950,19936,20019,20014,19951,19319,19880,19319,19921,19934,19908,19864,19864,20013,19319,19936,20119,20212,20013,19936,19319,19864,20526,20019,19319,20067,19936,1173,19936,19921,19883,19979,19864,19979,19936,19930,19966,19319,20722,19936,19950,19319,19936,19921,19966,19936,20439,19864,19881,19932,19876,19962,19319,21026,20092,1173,19971,19319,20767,19917,19936,19950,20013,20624,20009,19974,20212,19864,19874,19936,19908,19864,19921,20019,19951,19922,19864,20010,19908,20108,19963,19319,19935,19319,20119,19319,19936,19934,19966,19934,19936,20004,19865,19908,20101,19319,20019,19917,19949,19934,19864,19865,19936,19319,19878,20016,19880,19319,20004,1173,19319,19864,20031,20235,20016,19881,19933,19880,19878,19934,21028,19908,19933,19966,19880,19936,19975,20090,21029,19936,19319,20650,20654,20526,19319,19948,19936,19908,20004,20012,20019,20019,19864,20019,19921,20012,19921,19948,20019,21030,19908,19917,19908,19908,20481,20019,19922,19908,19319,21031,19908,19934,20240,1173,19880,19936,19979,19936,19930,19931,19948,21032,19934,19319,20016,20101,20019,19908,21061,19934,19319,19921,19936,20219,19880,19966,20621,20019,20152,21066,1173,19319,20250,19864,19950,19864,19864,19908,21031,19950,20009,19934,19948,19864,19908,20393,19319,19966,19936,19933,20019,19930,19933,19319,19933,19934,1173,20211,19864,19934,19319,20016,19319,20564,20019,19956,19880,20010,20247,19884,19956,20729,19880,19917,19951,19922,19936,19921,20065,20019,19319,20014,19319,19921,1173,21067,19864,19948,19864,19979,19936,19884,20004,19864,20090,21076,19864,20212,19874,21078,21079,19601,19979,20009,21117,20481,19936,20004,19951,19966,19931,19979,1173,20240,19922,19864,19936,19936,21118,21119,20101,19949,20101,21030,19936,19319,19878,19936,19601,19874,19930,19601,19319,19880,19974,19319,20818,19883,19864,1173,19864,21120,19950,19306,19319,20950,20977,19876,20112,19936,19936,19883,19921,19936,20220,19948,19319,20454,19319,21125,19963,19876,21120,19908,20227,19936,19936,1173,19936,19864,19936,21126,20011,19933,20014,21127,19933,19319,20247,19934,19319,19908,19864,19908,20012,21128,19950,19933,19864,19950,20526,20112,19936,20526,1173,20112,19601,20004,19881,19908,20946,21129,19864,19864,19601,19921,19319,19319,19319,19319,19936,20019,19935,20624,19936,19874,19936,21174,19920,20568,19319,1173,19936,19936,19936,20460,19864,19936,19920,19952,19934,19936,19976,19908,19934,19936,20471,19880,19972,19864,19601,19864,19319,19963,20013,20567,20458,19936,19319,1173,20220,19319,19319,19936,19950,19306,19963,20229,19880,19934,19953,19922,19933,21185,19948,19864,19922,20089,20256,21186,21194,19948,20779,19319,19865,19874,1173,20471,19320,19864,19956,19948,19936,19319,19917,19948,21196,19936,19952,19979,19931,19319,21197,19880,19934,19880,21198,19319,19306,20019,19950,20011,19920,1173,20010,20347,19917,19921,19880,19864,20219,19921,20950,21199,19880,19936,19979,19319,19319,19864,19936,21203,19864,19963,21204,19934,19963,19921,19933,20005,1173,21195,19864,21212,19864,19934,19908,19881,19917,19319,20014,20526,19319,19864,20653,19936,21216,19922,19936,19884,19936,20019,19936,19935,20013,19922,19864,1173,20621,21217,20123,19319,19319,20569,19319,19936,19319,19917,19319,19966,21259,20009,19950,19921,19864,19319,19936,19864,19864,19936,20624,20152,19936,19874,1173,19930,20951,20526,19948,19936,19319,20019,19908,19936,21269,19319,19319,20968,19917,19936,19933,19936,20962,20722,19864,20019,19933,20019,21270,19864,1173,19883,19319,20010,20016,19933,19880,20569,19948,19936,19948,19936,20011,19864,21271,19950,19934,19864,19917,19934,19864,19883,20653,19908,19880,20019,20247,1173,19319,20763,19936,19864,19864,20012,19975,19908,20011,20218,19936,21308,19864,19976,19864,19908,21309,20004,19880,20978,19933,19319,19948,19319,20011,1173,19864,19306,19933,20458,20900,19934,19880,21313,19953,19864,19921,19908,19883,19883,19319,19917,20038,19319,21317,19864,19908,19864,21321,20067,20011,20019,1173,19936,19966,19936,19908,19933,20388,20388,19948,19319,19936,19319,20458,19864,19933,19936,19948,19880,20100,19979,19319,19936,19948,19936,19936,19319,19917,1173,20473,19949,19319,20473,19884,19319,19936,21322,19880,19935,19878,19936,19974,20004,19933,19319,19933,19319,20526,21317,20471,19921,20091,20112,20219,19950,1173,19950,20112,19936,19951,19319,19950,20013,20016,19306,19936,20481,19864,19976,19950,21024,20101,19948,19921,20112,19936,20235,19976,19936,19936,20977,21324,21193,1173,19956,19936,19934,20004,19936,19319,19963,19319,21325,20526,20019,19864,20112,20013,19864,20729,20815,21326,20019,21328,21329,20219,19864,19934,20019,19319,1173,21332,19936,20571,19050,21065,19883,19319,19864,20092,19933,19948,19880,20235,19319,20771,20388,20968,19963,19884,20005,20009,19319,21334,19319,20948,1173,20771,21335,19966,20152,19974,20968,19884,20100,19976,19950,21336,19922,20031,20234,19917,20458,19319,21337,19908,19979,19922,21338,19880,19319,20031,19934,1173,20246,19319,20112,19319,20089,19948,21067,19908,20112,19864,20014,19883,19966,20004,21270,19883,19864,19319,19933,19922,19933,19883,19864,21128,20011,19883,1173,20471,21314,20011,20624,19908,19933,19874,20016,20779,21120,19864,19936,19864,20019,19922,19864,20019,20471,21342,20004,19601,19936,21346,19976,19319,19320,1173,1173,20019,19880,19864,19979,20471,19319,19864,19864,20347,19962,20016,21028,20951,20779,20098,19956,19908,19957,20009,20031,19936,19934,19864,19880,20526,19922,21347,1173,19319,19319,19319,19874,20212,19974,20009,19908,19874,19936,20212,19864,19908,20473,19921,21350,19864,19319,20019,20013,20526,19908,21353,20443,19979,19951,1173,20561,19934,19953,19319,19874,19319,19864,19917,19319,20004,20235,20235,19933,19319,19936,19880,20101,19601,20112,20116,19864,19950,20112,19864,19950,21354,20432,1173,21359,19319,20771,19319,19936,20219,19876,19319,19864,19922,19319,20019,20016,19948,19864,20220,19908,20013,20101,19884,19950,19936,19883,20090,19936,19880,1173,19880,19864,19979,20019,20011,20212,19921,20112,21212,19936,21360,19908,19921,20451,19948,20013,21271,19932,20418,19930,21361,19319,19963,19883,19319,19917,1173,20019,20526,19864,20473,19319,19966,20240,20564,19931,19319,20451,19306,19950,20010,19936,19319,20112,19936,20067,19936,20019,20564,20978,21362,19319,21369,1173,19319,19921,19936,21372,19917,19936,19864,19864,19864,19950,20641,20729,20037,19880,19306,19880,19934,19936,19936,19884,20004,19936,19319,20004,19864,19908,19936,1173,19864,19933,20005,21375,20019,19319,19936,19933,19956,19931,20377,19920,19880,19976,19880,20004,20564,19908,19864,19936,19936,19864,20116,19908,19949,19319,1173,1173,19963,19319,19306,21379,20235,19936,19936,20212,20112,19936,20016,19979,20471,20388,19319,19319,19908,19948,19908,21335,19933,19936,19319,19976,19950,19864,1173,19880,19951,19880,19319,20388,20443,19306,19948,19880,19874,19306,21335,20009,20388,20568,20481,19319,21380,21381,20377,20240,21382,19936,19936,20775,19948,1173,19949,20901,19949,20234,19936,20418,21386,20112,21455,19936,20234,19874,19950,19601,19934,20212,19948,20212,20688,19948,19936,20212,19956,19936,19955,19921,20451,1173,20019,19319,19922,19908,21456,19917,20342,19922,21457,19865,19864,19865,19948,19908,19319,19917,20388,21458,19884,19952,19881,19306,20561,19936,19865,19908,1173,19881,19917,19880,19966,21460,19884,20211,19933,19864,19963,19963,19930,19881,19319,19880,19974,20240,19319,20250,20101,19936,20388,20010,19936,21354,19936,1173,19874,20004,20019,19306,19936,19319,19319,20526,19979,19948,21031,19936,19966,20016,19319,19601,19948,20037,20526,20016,20016,20653,19865,20019,19936,19936,1173,20092,20123,19921,19908,19956,20388,19319,19319,19319,19864,19948,20019,20526,19966,20471,20240,19917,19864,19917,19933,19319,19931,19319,21079,20526,19950,1173,19935,20019,19884,19950,20568,20458,19884,19934,20212,19976,20526,19864,19936,19934,19601,19917,20481,19864,20019,19953,20019,19319,20111,19936,20229,20526,1173,19950,19932,19319,19948,19936,20019,20092,19050,19878,19966,19920,19934,19908,21462,19908,19936,19319,19883,20621,19319,19921,19936,19319,19921,19948,19966,20526,1173,19319,20019,20019,20212,20389,19936,19874,20393,19936,21324,19883,19948,19306,20004,19601,20774,19935,20098,19319,19319,19319,19876,20100,19936,19979,19922,1173,19975,19936,20250,19917,19934,20019,19319,19950,21375,19949,19864,19936,21463,19864,19936,19953,20019,21464,20012,19908,19864,20526,21271,21465,19950,20343,1173,19936,19319,21061,19934,19936,19963,19948,19865,19948,20777,20901,20481,19950,19874,19936,19936,19908,19936,20019,19920,20558,19936,19319,21128,19883,19921,1173,19948,20005,20100,19864,19876,19908,20013,20629,20011,19922,19936,19319,20013,19864,19933,19936,21346,19936,21470,19933,20100,19963,20388,19921,20388,19921,1173,19936,19319,21309,20235,19948,19966,19864,19936,19963,20005,19979,20454,20569,20116,20091,19319,19874,19319,19908,19908,20031,20119,19864,20388,20220,19319,19319,1173,19880,19319,20218,19306,19921,19932,20432,19319,19936,19876,19908,19883,20112,20240,19908,19319,19319,19319,19319,20011,21471,20019,20473,19908,21522,20818,1173,20013,19936,19921,20220,19948,19319,19319,19948,19936,19948,20653,19880,19936,19319,19878,20013,20019,19917,19883,19319,21199,19972,20388,19319,19936,19908,1173,20471,19908,20031,19876,19936,20090,20019,19950,19908,19319,19966,19936,21197,19963,19936,20004,20004,19936,19601,20653,19319,19880,19917,19880,19319,19908,1173,20240,19319,20235,19319,19864,20453,19948,19936,19319,20471,19936,19948,20019,19319,19936,20019,19976,19864,19922,20019,20092,19864,20004,20004,20019,19975,19966,1173,19936,20526,19936,19319,20011,19950,19936,20019,19864,21529,19880,19319,19319,19319,20031,19864,19319,19935,19948,19880,9463,9463,9463,9463,9463,9463,21537,9463,9463,9463,9463,9463,9463,14460,14453,14460,14454,21549,21558,21563,21568,21558,21558,21569,1173,21570,21574,21575,21568,21557,21582,21603,21604,21609,21604,21614,21606,21605,21603,21604,21617,21604,21630,21630,21630,21635,21643,21644,21645,21646,21648,21634,21649,21635,1173,21670,21671,21676,21677,21685,21681,21672,21686,21673,21673,21672,21698,21710,21713,21715,21715,21716,21707,21707,21717,21718,21717,21731,21743,21747,21730,21740,21754,1173,21730,21740,21752,21730,21731,21767,21767,21766,21771,21784,21785,21767,21767,21791,21792,21792,21798,21809,21813,21817,21826,21827,21826,21817,21830,21831,21834,1173,21841,21854,21863,21862,21862,21869,21870,21862,21853,21873,21870,21874,21891,21900,21901,21906,21908,21914,21915,21916,21900,21890,21918,21932,21943,21945,21941,1173,21942,21941,21941,21930,21948,21950,21952,21971,21982,21983,21982,21994,21995,21984,21964,22000,21995,21979,22013,22022,22030,22022,22022,22013,22035,22038,22040,1173,22021,22045,22066,22067,22066,22068,22071,22076,22067,22081,22067,22067,22094,22094,22105,22094,22103,22094,22102,22106,22104,22108,22103,22112,22140,22141,22142,1173,22144,22151,22124,22132,22141,22152,22141,22165,22177,22173,22178,22178,22183,22177,22174,22188,22177,22173,22214,22220,22224,22209,22200,22225,22208,22225,1173,22230,22209,22232,22253,22254,22262,22266,22268,22269,22272,22269,22275,22276,22289,22298,22302,22305,22306,22312,22315,22316,22317,22305,22318,22331,22352,1173,22353,22340,22358,22359,22360,22340,22339,22340,22367,22388,22389,22392,22397,22400,22389,22401,22389,22388,22389,22425,22432,22413,22433,22434,22433,22439,1173,22442,22453,22454,22459,22480,22483,22488,22491,22492,22493,22491,22488,22492,22497,22498,22522,22523,22528,22518,22531,22532,22534,22527,22523,22532,22557,1173,22558,22559,22565,22573,22546,22575,22576,22558,22576,22577,22593,22608,22608,22609,22610,22608,22616,22610,22617,22614,22630,22643,22644,22642,22657,22660,22644,22662,22653,22661,22662,22639,22663,22678,22693,22698,22732,22699,22738,22745,22690,22743,22734,22746,22772,22758,22767,22775,22775,22767,22780,22792,22795,22775,22796,1173,22818,22823,22816,22828,22831,22835,22831,22836,22816,22837,22859,22860,22865,22858,22869,22874,22878,22881,22858,22883,22884,22908,22910,22905,22915,22918,1173,22904,22923,22904,22923,22905,22924,22944,22945,22946,22947,22950,22951,22945,22953,22945,22945,22966,22968,22972,22977,22987,22994,22972,22986,22995,22972,22972,1173,23016,23021,23022,23024,23016,23015,23015,23016,23025,23033,23016,23016,23055,23056,23060,23063,23056,23056,23078,23083,23065,23084,23054,23105,23109,23112,1173,23108,23109,23116,23117,23108,23092,23109,23131,23145,23143,23144,23142,23146,23147,23149,23154,23146,23155,23168,23173,23182,23187,23188,23189,23172,23190,23193,1173,23167,23187,23206,23211,23225,23220,23233,23224,23237,23226,23210,23239,23245,23259,23260,23263,23273,23274,23251,23271,23280,23282,23260,23295,23303,23304,1173,23304,23312,23304,23320,23321,23324,23325,23314,23350,23347,23345,23359,23346,23360,23363,23368,23370,23346,23374,23383,23392,23393,23398,23398,23401,23402,23393,1173,23407,23410,23411,23431,23432,23435,23439,23433,23444,23431,23453,23432,23423,23466,23476,23475,23479,23480,23486,23490,23466,23494,23490,23495,23503,23512,23515,23516,23517,23526,23513,23516,23529,23535,23508,23516,23555,23559,23564,23563,23567,23568,23556,23575,23582,23585,23556,23605,23614,23613,23628,23629,23630,23631,1173,23632,23638,23639,23652,23653,23665,23665,23666,23661,23661,23667,23669,23670,23663,23676,23702,23703,23707,23702,23710,23714,23702,23718,23722,23735,23746,1173,23747,23756,23764,23755,23765,23740,23767,23747,23747,23779,23789,23793,23798,23807,23797,23793,23793,23811,23792,23793,23823,23823,23832,23833,23838,23823,1173,23839,23843,23846,23840,23831,23859,23870,23875,23878,23879,23880,23881,23883,23867,23886,23887,23908,23909,23911,23912,23914,23909,23928,23932,23912,23938,23941,1173,23961,23969,23970,23973,23976,23970,23977,23980,23977,23982,23970,23995,23999,24011,24008,24008,24016,24018,24019,24018,24026,24034,24044,24045,24048,24057,24056,1173,24046,24045,24058,24045,24045,24067,24073,24077,24082,24093,24082,24077,24090,24094,24081,24095,24103,24117,24118,24119,24128,24119,24118,24134,24118,24136,1173,24128,24148,24156,24157,24162,24163,24161,24157,24156,24157,24164,24166,24182,24194,24200,24198,24203,24198,24207,24193,24208,24204,24212,24233,24235,24247,24249,1173,24290,24232,24298,24301,24304,24307,24315,24325,24326,24330,24339,24325,24326,24340,24326,24342,24326,24359,24370,24375,24377,24378,24374,24382,24384,24381,1173,24385,24367,24406,24409,24410,24406,24407,24411,24414,24421,24409,24422,24405,24435,24445,24443,24444,24478,24445,24481,24445,24482,24435,24498,24506,24517,1173,24508,24521,24525,24507,24522,24530,24508,24523,24553,24554,24557,24560,24550,24565,24566,24565,24562,24557,24554,24557,24579,24597,24588,24600,24588,24578,24588,24587,1173,24587,24578,24588,24613,24622,24625,24623,24630,24621,24637,24624,24644,24645,24634,24670,24657,24678,24681,24682,24688,24689,24690,24666,24693,24696,24721,24732,1173,24734,24720,24739,24742,24745,24742,24749,24718,24752,24774,24775,24787,24776,24790,24791,24764,24794,24799,24800,24813,24823,24824,24825,24834,24820,24838,24839,1173,24834,24840,24841,24822,24863,24872,24875,24862,24861,24882,24853,24881,24885,24853,24862,24902,24910,24912,24915,24917,24918,24901,24915,24923,24924,24926,25263,1173,25276,25283,25626,25633,25636,25645,25649,25636,25650,25982,25992,26335,26675,27017,27362,27705,27706,26674,27709,27712,28048,28074,28079,28087,28091,28108,1173,28118,28107,28126,28074,28118,28129,28476,28823,28828,28841,28867,28868,28869,28886,28822,28887,28896,28908,28910,28908,28895,28921,28926,28931,28944,28956,1173,28943,28957,28841,28926,28959,28980,29022,29023,28129,28895,29024,29028,28887,29029,29034,28887,28957,28895,28926,29064,29023,28943,29023,28905,28887,1173,28887,29067,29071,29072,29023,28895,28923,29074,28957,28926,28926,28887,29075,29076,29023,28908,29079,28926,28943,29081,28923,29084,29098,29103,29106,28943,28887,1173,29023,29110,29112,28823,29079,29033,29118,29121,29033,28868,29129,28887,29130,29131,28980,29132,29133,29023,28905,28823,28895,29137,28910,28887,29072,29159,1173,29160,29161,28129,28887,28895,28887,29023,28887,29164,29167,28895,29195,28129,29196,29023,28887,28887,29201,28887,29023,28943,28905,28841,29072,28926,28895,28980,1173,29023,29106,29080,28887,28943,28943,28943,28895,28887,29230,28887,28895,29167,29034,29023,29231,28887,28895,29024,28887,29232,28957,29233,28895,28887,29234,1173,28129,29132,29235,28887,29132,29241,29242,29201,28129,29130,28926,29243,28957,29132,29244,28896,28823,29246,29247,28887,28908,28957,29247,28887,29023,29248,1173,29025,29253,29264,29034,28887,29265,29076,29241,28823,29076,28841,29023,28895,28887,29234,28943,29098,29164,28943,29266,29033,29023,29267,29023,29265,29023,1173,28129,29298,29131,29072,28918,29299,28887,28887,28887,28943,28895,28910,29300,28823,29023,29303,29023,28957,29313,29248,28887,28926,29023,28926,29029,29023,1173,28129,29315,29024,29034,29023,28887,29023,28923,29319,29029,29303,28887,29023,28841,28943,29247,29098,29201,29028,28887,29320,29323,29024,29235,29120,28943,1173,29023,29132,28129,29023,29326,29034,29328,29034,29334,29342,29033,28887,29162,29343,29164,28943,28908,28887,28908,28887,29352,29108,29353,29033,29354,29234,1173,29232,28823,28129,28895,28905,28129,28895,28926,29023,29355,29106,29164,29023,29033,29233,29261,28915,28887,28943,29072,29029,29024,28957,28895,29110,1173,28823,29356,29072,29231,28887,28887,29072,28887,29320,28887,28823,29326,29028,29232,29380,28908,28895,28887,29033,28887,28887,28841,28958,28908,29024,28895,28957,28926,28895,29248,28908,29386,28905,29023,28887,29247,28129,29231,29023,29387,29389,28926,28907,29316,28926,28887,29316,28926,29028,28887,29393,28943,29167,28887,29343,28943,29024,29201,29396,29034,28887,28907,29025,29023,29233,29232,28887,29234,29023,29167,28926,28823,29029,29401,29023,28887,29408,29409,29024,29023,29132,1173,29121,28926,29386,28910,28926,28926,28895,29316,28887,28887,28887,28887,28895,28887,29131,28887,29326,28887,28926,29067,29456,29389,29130,29028,29023,29034,1173,29457,29093,29241,29029,28907,28943,29108,29023,28841,28926,28823,28887,28895,29241,29241,29164,28887,29167,29033,29232,29164,29110,29316,28129,29024,1173,29130,28887,29484,28895,29487,28926,29023,29323,28895,28887,28905,28129,29023,29353,28887,29162,28943,29231,28943,28895,29067,29112,28896,29302,28910,28896,1173,28129,29533,28129,28895,28931,28887,28943,29534,29198,29023,29162,29023,29316,29023,29201,28926,29588,28895,28895,28943,29132,28926,28957,29023,29079,29075,28887,1173,28895,28905,28926,29354,29589,29033,28887,28887,29029,28887,29074,28887,28923,29267,28887,29300,29028,28887,29098,28887,29023,29590,28905,29023,28887,28895,1173,29072,28887,29024,28887,29098,28887,28887,29591,28957,29108,29023,29028,29023,29034,28129,29342,29592,28887,29594,28823,29079,28887,28926,29595,28868,28887,28958,1173,29602,28959,29231,29072,28958,29023,29132,28957,28943,1173,29023,29603,29131,1173,1173,1173,29618,29629,29630,29639,29643,29648,29649,28885,28078,29650,29651,29685,29688,29694,29695,28977,28069,29694,29698,29702,29155,29730,28975,29735,29155,29702,29740,29745,29748,29749,29693,29373,29750,29154,29751,27358,29754,29696,29748,29755,29756,29762,29770,27356,27356,29771,29772,29373,29696,29773,29774,29775,28935,29803,29804,29373,29809,29810,29811,29766,29188,29816,1173,29817,29820,29825,29826,29364,29364,29831,29838,28858,29839,28858,29844,29304,27689,29845,29846,29847,29847,29850,29853,29839,29815,29184,29861,29862,29863,29474,29864,29862,29866,29864,29864,29474,29867,29183,29868,29873,29183,29942,29864,29946,29949,29954,29955,29960,29965,29966,29967,29052,29967,29988,29993,1173,29994,29722,29996,29997,29050,30005,30013,30014,30015,29050,30037,30039,29992,30041,30042,30053,29997,30054,30060,30062,30093,30054,29719,29042,29720,29042,1173,30054,30094,30099,30106,30058,30109,30114,30115,29275,30116,29983,30118,30119,30127,30132,30132,30133,30154,30032,30032,30176,30032,30197,30198,30199,30200,1173,30047,30031,30207,30208,30209,30216,30023,30222,30223,29670,30226,30227,30228,30229,30234,30235,30150,30238,30241,30121,30241,30242,30149,30235,30150,30235,30246,1173,30251,29783,30141,30252,30252,30256,30141,30261,30171,30262,30263,30278,30281,30295,30193,30192,29659,30298,30303,30304,30184,30252,30306,30307,30292,30307,1173,30184,30308,30309,30307,30307,30310,30330,30351,30354,30359,30289,30425,30446,30507,30290,30290,30508,28996,28997,30511,28997,28997,30516,28996,30522,30523,1173,30524,30527,30534,30359,30508,30541,30327,30359,30546,30358,30548,30556,30347,30079,30347,30557,30346,30443,30586,30623,30442,30628,30629,30441,30631,30441,30632,1173,30080,30633,30634,30635,30638,30645,30665,30666,29428,30688,30079,30694,30666,30079,30666,30433,30695,30695,30697,30695,30700,30695,30701,30704,29503,30705,1173,30070,30708,30683,30713,29426,30697,30736,30741,30761,30696,29425,29426,30758,29417,30783,30804,30805,30662,30684,30805,30807,29495,30814,30817,30653,30820,1173,30683,30831,30832,30806,30836,30832,30840,30841,30842,30758,30780,30843,30757,30757,30846,30758,30846,30846,30851,30749,30578,30799,30853,30854,30800,30859,30860,1173,30867,30870,29551,30892,30896,30921,30577,30922,30778,30778,30925,30930,30937,30730,30938,30939],"timeDeltas":[85516,1166,1034,1032,1033,1031,1030,1029,1028,1029,1030,1029,1029,1028,1039,1034,1050,1031,1029,1036,1032,1030,1031,1031,1029,1030,1027,1029,1028,1010,1028,1028,1027,1028,1028,1029,1029,1029,1029,1028,1030,1029,1027,1028,1027,1028,1028,1030,1027,1030,1027,1032,1030,1028,1028,1028,1027,1029,1009,1027,1029,1029,1028,1028,1029,1029,1029,1028,1028,1028,1029,1029,1028,1027,1027,1028,1027,1029,1029,1029,1030,1028,1031,1028,1029,1029,1010,1028,1031,1028,1027,1027,1029,1028,1028,1030,1030,1028,1028,1029,1028,1028,1028,1027,1028,1028,1029,1028,1029,1029,1029,1029,1029,1029,1012,1029,2039,1028,1029,1028,1030,1028,1029,1034,1026,1028,1029,1030,1028,1028,1028,1028,1029,1029,1027,1029,1029,1030,1029,1029,1009,1031,1028,1038,1031,1030,1029,1029,1029,1029,1028,1029,1030,1028,1029,2039,1029,1052,1029,1028,1028,1029,1028,1028,1028,1029,1029,1011,1028,1028,1028,1029,1029,1029,1029,1028,1029,1029,1030,1028,1029,1029,1030,1029,1028,1027,1029,1030,1028,1029,1029,1029,1034,1040,1010,1028,1029,1028,1028,1029,1028,1029,1029,1028,1030,1029,1027,1029,1029,1030,1029,1027,1030,1029,1048,1034,1031,1029,1029,1030,1030,1009,1030,1030,1030,1030,1034,1028,1027,1028,1028,1028,1029,1029,1030,1029,1028,1029,1029,1029,1030,1029,1031,1031,1029,1029,1031,1030,1029,1010,1029,1029,1028,1030,1030,1030,1029,1030,1029,1029,1029,1034,1028,1029,1029,1029,1029,1028,1029,1030,1029,1029,1029,1029,1029,1028,1030,1018,1029,1029,1029,1030,1029,1030,1049,1043,1031,1029,1030,1029,1029,1031,1029,1029,1030,1032,1031,1031,1028,1029,1030,1028,1030,1029,1029,1010,1031,1029,1030,1029,1029,1030,1029,1029,1030,1030,1029,1030,1030,1029,1029,1030,1028,1030,1030,1030,1030,1031,1012,1034,1028,1030,1028,1029,1010,1030,1028,1029,1028,1029,1028,1030,1030,1030,1029,1029,1029,1029,1029,1028,1030,1029,1038,1038,1031,1031,1031,1031,1029,1030,1029,1031,1009,1031,1033,1028,1029,1030,1029,2039,1031,1029,1030,1029,1031,1029,1030,1029,1030,1030,1029,1029,1029,1032,1031,1036,1030,1031,1030,1010,1030,1030,1029,1029,1030,1029,1031,1029,1034,1029,1030,1029,1030,1029,1029,1028,1030,1028,1030,1029,1029,1029,1030,1029,1029,1029,1009,1028,1031,1038,1036,1032,1029,1031,1029,1029,1031,1030,1029,1029,1031,1029,1032,1029,1030,1042,1031,1029,1030,1030,1029,1030,1030,1029,1011,1028,1031,1028,1031,1030,1030,1030,1029,1030,1031,1029,1030,1030,1029,1031,1029,1030,1030,1030,1029,1053,1031,1031,1031,1031,1030,1030,1029,1011,1030,1029,1030,1031,1030,1030,1029,1032,1030,1030,1030,1030,1030,1028,1031,1031,1030,1029,1031,1031,1031,1030,1031,1032,1041,1038,1031,1029,1010,1029,1030,1030,1030,1030,1029,1029,1030,1029,1031,1030,1030,1030,1031,1030,1029,1030,1031,1030,1030,1030,1030,1029,1031,1031,1030,1010,1029,1032,1034,1029,1029,1030,1029,1029,1031,1029,1030,1032,1030,1030,1030,1030,1030,1031,1036,1030,1032,1030,1029,1030,1031,1030,1030,1011,1030,1030,1030,1031,1031,1031,1029,1031,1035,1030,1029,1031,1029,1029,1031,1030,1030,1029,1030,1030,1031,1031,1030,1029,1030,1029,1031,1012,1032,1029,1031,1030,1031,1029,1031,1030,1030,1031,1031,1029,1030,1033,1028,1030,1030,1030,1030,1031,1030,1029,1031,1030,1029,1031,1011,1031,1030,1030,1030,1031,1030,1031,1030,1030,1030,1030,1030,1030,1030,1038,1034,1032,1030,1030,1030,1038,1031,1032,1030,1030,1031,1009,1029,1031,1029,1037,1032,1031,1030,1029,1031,1030,1030,1031,1030,1030,1031,1030,1037,1034,1031,1031,1031,1030,1032,1030,1031,1057,1031,1010,1029,1032,1030,1030,1031,1031,1030,1030,1031,1029,1031,1031,1030,1032,1031,1031,1031,1039,1036,1032,1032,1031,1032,1030,1032,1031,1033,1011,1031,1033,1037,1030,1029,1030,1030,1030,1031,1030,2041,1030,1031,1029,1031,1030,1030,1029,1031,1030,1034,1031,1030,1031,1030,1031,1030,1009,1031,1031,1031,1031,1031,1030,1029,1055,1030,1029,1031,1030,1030,313,292,30,27,26,26,24,25,25,29,27,28,24,26,25,26,24,32,29,26,25,24,24,24,24,24,24,25,23,24,24,25,24,24,24,24,23,24,25,24,24,24,23,24,23,42,24,23,24,25,24,23,24,24,24,23,23,23,24,25,53,-9,37,24,1101,1051,1012,1017,1013,1016,1014,1017,1014,1013,1014,1012,1012,1012,1012,1013,1013,1012,1012,1013,1014,1013,1012,1013,1013,1012,1012,1013,1014,1013,1014,1013,1013,1013,1015,1013,1012,1014,1016,1014,1012,1013,1014,1012,1012,1012,1009,1013,1013,1013,1013,1014,1013,1014,1013,1013,1012,1014,1013,1012,1013,1021,1015,1014,1013,1013,1014,1014,1013,1014,1013,1013,1013,1014,1011,1015,1015,1013,1014,1013,1014,1015,1014,1013,1016,1017,1015,1014,1015,1015,1013,1015,1014,1015,1014,1015,1015,1014,1015,1014,1015,1015,1010,1015,1015,1015,1015,1015,1016,1014,1036,1014,1015,1014,1015,1014,1015,1014,1015,1015,1014,1014,1016,1015,1014,1015,1014,1014,1015,1010,1017,1016,1016,1015,1015,1014,1015,1014,1016,1015,1016,1016,1016,1015,1015,1017,1016,1015,1016,1015,1016,1017,1015,1017,1016,1016,1009,1017,1017,1015,1016,1017,1016,1017,1018,1016,1017,1016,1016,1017,1016,1016,1017,1016,1024,1018,1016,1017,1016,1016,1016,1015,1017,1015,1010,1017,1017,1018,1016,1016,1017,1016,1017,1016,1016,1017,1018,1018,1018,1017,1018,1017,1017,1016,1017,1017,1016,1017,1032,1021,1017,1018,1009,1018,1018,1018,1018,1019,1018,1017,1017,1018,1017,1019,1018,1017,1018,1018,1018,1017,1018,1019,1045,1024,1019,1018,1017,1017,1017,1018,1012,1020,1018,1019,1018,1018,1019,1019,1018,1018,1017,1018,1019,1019,1018,1019,1018,1019,1018,1019,1019,1018,1024,1024,1021,1019,1019,1010,1022,1021,1024,1020,1020,1019,1019,1018,1020,1020,1019,1020,1019,1021,1019,1026,1021,1022,1021,1019,1020,1018,1020,1019,1019,1019,1018,1020,1009,1020,1020,1019,1019,1021,1019,1020,1020,1019,1019,1019,1019,1023,1019,1026,1026,1021,1020,1020,1020,1019,1019,1020,1019,1020,1020,1020,1021,1020,1020,2030,1024,1022,1021,1021,1047,1020,1020,1021,1020,1020,1019,1021,1019,1019,1021,1019,1021,1021,1020,1019,1021,1020,1020,1021,1020,1020,1021,1021,1021,1021,1020,1020,1028,1021,1021,1022,1021,1025,1022,1021,1022,1022,1021,1021,1021,1020,1022,1020,1022,1022,1014,1044,1022,1020,1020,1020,1021,1022,1021,1020,1022,1022,1022,1021,1021,1021,1022,1023,1022,1023,1022,1022,1021,1023,1021,1022,1022,1009,1023,1023,1027,1028,1023,1023,1023,1023,1022,1024,1022,1023,1022,1022,1023,1023,1023,1023,1027,1022,1026,1023,1022,1022,1022,1023,1021,1011,1024,1023,1024,1023,1022,1022,1024,1022,1023,1023,1024,1023,1023,1022,1023,1024,1023,1023,1022,1023,1024,1025,1023,1025,1023,1024,1010,1023,1023,1023,1023,1025,1023,1023,1028,1022,1024,1023,1025,1023,1023,1024,1023,1024,1023,1025,1023,2034,1025,1023,1024,1023,1011,1024,1026,1024,1026,1025,1025,1024,1024,1024,1023,1024,1024,1024,1025,1025,1025,1025,1025,1026,1025,1025,1024,1030,1025,1024,1025,1011,1025,1025,1025,1025,1026,1024,1025,1032,1027,1027,1025,1026,1025,1026,1024,1025,1025,1024,1026,1026,1026,1026,1025,1025,1023,1026,1010,1025,1027,1026,2036,1025,1026,1027,1027,1031,1024,1026,1025,1026,1025,1027,1025,1025,1026,1025,1025,1026,1026,1027,1027,1027,1009,1026,1027,1057,1040,1033,1026,1026,1026,1027,1027,1026,1027,1027,1027,1027,1027,1025,1027,1028,1035,1027,1027,1027,1026,1027,1026,1026,1029,1027,1028,1027,1027,1027,1025,1027,1026,1027,1026,1028,1026,1028,1028,1028,1028,1027,1027,1027,1027,1027,1026,1028,1027,1028,1027,1029,1031,1027,1028,1027,1027,1026,1028,1027,1026,1028,1028,1026,1029,1030,1029,1028,1027,1029,1028,1029,1028,1029,1028,1028,1028,1026,1013,1030,1030,1028,1028,1029,1027,1030,1028,1028,1032,1027,1028,1028,1028,1028,1029,1027,1035,1033,1030,1033,1029,1030,1028,1029,1030,1009,1030,1029,1030,1028,1030,1028,1030,1029,1028,1028,1030,1029,1028,1028,1029,1027,1029,1032,1034,1027,1029,1029,1028,1028,1028,1029,1009,1029,1029,1028,1027,1028,1028,1029,1029,1028,1028,1028,1028,1028,1028,1030,1029,1029,1029,1029,1029,1027,1029,1028,1028,1028,1029,1035,1034,1030,1028,1030,1029,1027,1029,1029,1028,1028,1028,1028,1027,1028,1028,1029,1027,1030,1029,1039,1028,1029,1028,1030,1029,1029,1013,1028,1030,1028,1029,1029,1029,1036,1028,1027,1029,1028,1027,1028,1028,1027,1030,1028,1028,1028,1027,1029,1028,1029,1029,1030,1034,1011,1028,1030,1028,1028,1028,1027,1028,1028,1028,1028,1029,1028,1030,1030,1028,1035,1027,1027,1028,1029,1027,1027,1027,1029,1029,1034,1011,1028,1030,1029,1028,1028,1029,1028,1028,1028,1029,1026,1029,1027,1029,1028,1028,1029,1029,1029,1028,1029,1028,1028,1031,1027,1028,1027,1010,1031,1028,1028,1028,1028,1026,1029,1028,1027,1028,1029,1027,1028,1029,1028,1029,1030,1029,1030,1027,1028,1027,1039,1032,1030,1028,1011,1028,1028,1028,1029,1029,1032,1028,1028,1028,1029,1027,1027,1027,1028,1028,1026,1028,1028,1029,1029,1028,1030,1030,1029,1029,1028,1028,1014,1033,1030,1028,1030,1029,1029,1028,1030,1028,1029,1028,1027,1030,1027,1027,1029,1027,1028,1027,1028,1028,1026,1029,1028,1029,1028,1009,1029,1028,1027,1028,1028,1037,1029,1028,1029,1030,1027,1031,1028,1028,1029,1028,1029,1029,1028,1028,1029,1046,1029,1027,1029,1027,1026,1010,2037,1028,1028,1027,1028,1027,1028,1027,1047,1041,1030,1028,1029,1028,1030,1028,1029,1027,1028,1029,1028,1029,1030,1028,1031,1013,1031,1061,1030,1027,1028,1028,1028,1028,1028,1027,1030,1028,1029,1029,1028,1028,1029,1028,1028,1028,1027,1029,1029,1028,1028,1028,1011,1031,1030,1028,1028,1028,1030,1029,1028,1029,1034,1029,1029,1028,1028,1028,1028,1028,1028,2038,1028,1029,1029,1028,1027,1028,1027,1011,1028,1029,1027,1028,1027,1028,1028,1029,1029,1029,1030,1028,1029,1027,1029,1027,1028,1032,1028,1027,1028,1029,1027,1029,1030,1028,1013,1029,1030,1029,1028,1027,1028,1029,1027,1028,1028,1028,1028,1029,1028,1028,1029,1029,1030,1029,1028,1029,1028,1027,1028,1027,1028,1011,1055,1029,1027,1029,1029,1026,1029,1028,1027,1029,1027,1029,1028,1028,1028,1028,1029,1029,1029,1028,1028,1029,1027,1029,1029,1028,1028,1010,1028,1028,1029,1027,1027,1029,1029,1036,1028,1027,1027,1029,1027,1027,1028,1029,1028,1028,1027,1029,1029,1029,1029,1028,1028,1029,1009,1028,1028,1027,1027,1028,1029,1029,1028,1028,1028,1028,1028,1029,1028,1028,1029,1031,1028,1027,1027,1029,1028,1026,1029,1035,1037,1011,1030,1030,1028,1030,1030,1029,1030,1029,1030,1027,1029,1028,1031,1028,1029,1027,1028,1030,1036,1032,1030,1028,1028,1046,1027,1029,1009,1030,1029,1028,1028,1028,1029,1028,1029,1030,1030,1028,1028,1028,1029,1028,1029,1029,1028,1029,1028,1027,1029,1028,1028,1029,1027,1011,1028,1028,1029,1027,1029,1034,1026,1029,1028,1028,1028,1028,1028,1029,1029,1029,1028,1028,1028,2039,1028,1028,1029,1031,1029,1029,1011,1029,1029,1027,1029,1028,1029,1028,1028,1029,1029,1028,1029,1028,1034,1044,1028,1029,1028,1028,1029,1028,1028,1029,1029,1028,1029,1029,1010,1029,1028,1029,1029,1027,1038,1042,1034,1032,1028,1030,1030,1028,1029,1029,1029,1029,1028,1028,1033,1027,1027,1029,1029,1027,1029,1029,1028,1010,1028,1029,1027,1028,1028,1028,1029,1028,1028,1029,1027,1028,1029,1029,1036,1030,1030,1030,1028,1029,1028,1029,1028,2039,1028,1035,1021,1029,1028,1028,1028,1028,1028,1027,1029,1027,1027,1029,1028,1028,1028,1028,1029,1029,1029,2040,1029,1028,1028,1028,1028,1028,1029,1009,1031,1027,1028,1028,1030,1027,1029,1031,1027,1028,1027,1026,1027,1028,1028,1027,1028,1029,1275,1029,1027,1028,1029,1027,1029,1028,1011,1029,1031,1028,1030,1028,1029,1030,1033,1028,1028,1028,1028,1028,1028,1027,1029,2037,1028,1028,1028,1028,1030,1028,1027,1029,1010,1028,1028,1028,1028,1028,1028,1028,1029,1029,1027,1029,1027,1028,1029,1029,1028,1029,1033,1029,1028,1027,1028,1029,1028,1028,1028,1026,1011,1029,1028,1029,1028,1026,1028,1028,1029,1028,1028,1028,1028,1027,1029,1027,1028,1027,1027,1028,1027,1029,1028,1029,1028,1029,1034,1008,1029,1027,1029,1027,1027,1027,1029,1027,1028,1029,1027,1029,1028,1028,1028,1029,1028,1028,1029,1030,1029,1028,1031,1029,1029,1029,1011,1029,1028,1029,1030,1030,1028,1030,1032,1027,1028,1028,1026,1026,1029,1028,1028,1027,1028,1027,1029,1027,1029,1029,1029,1028,1028,1009,1029,1029,1028,1028,1028,1028,1028,1028,1028,1028,1030,1027,1029,1028,1028,1028,1033,1027,1027,1028,1029,1027,1027,1028,1028,1029,1010,1027,1029,1028,1028,1028,1029,1028,1029,1028,1028,1027,1029,1028,1029,1029,1028,1028,1028,1029,1028,1029,1028,1028,1028,1029,1032,1010,1029,1028,1029,1027,1029,1028,1028,1028,1028,1027,1028,1027,1029,1029,1028,1027,1029,1028,1027,1029,1028,1028,1028,1027,1027,1028,1009,1030,1031,1029,1028,1028,1030,1029,1028,1031,1026,1029,1028,1027,1028,1029,1027,1029,1048,1041,1029,1030,1029,1028,1029,1027,1028,1011,1027,1028,1028,1028,1028,1028,1029,1031,1030,1029,1029,1029,1028,1029,1030,1034,1027,1028,1027,1029,1028,1029,1030,1027,1029,1028,1029,1012,1029,1028,1028,1028,1028,1028,1028,1028,1028,1029,1028,1029,1029,1029,1029,1028,1029,1028,1029,1028,1026,1029,1030,1031,1027,1028,1009,1031,1029,1029,1028,1028,1030,1028,1028,1028,1029,1028,1028,1029,1028,1029,1031,1029,1029,1028,1029,1028,1028,1030,1028,1029,1029,1010,1028,1030,1028,1029,1029,1031,1030,1028,1029,1028,1029,1028,1027,1029,1029,1029,1029,1028,1028,1028,1028,1029,1029,1028,1028,1029,1028,1009,1031,1030,1028,1029,1027,1028,1028,1028,1028,1029,1034,1032,1028,1045,1029,1027,1028,1028,1029,1028,1027,1028,1026,1029,1027,1028,1027,1010,1031,1031,1030,1030,1028,1029,1029,1027,1028,1027,1029,1030,1028,1028,1029,1029,1028,1029,1029,1030,1032,1029,1028,1027,1028,1029,1029,1011,1029,1028,1029,1031,1030,1028,1029,1028,1029,1028,1028,1029,1028,1027,1030,1028,1028,1029,1033,1029,1029,1029,1029,1029,1029,1029,1010,1029,1031,1028,1027,1028,1027,1028,1028,1028,1028,1029,1028,1028,1029,1029,1026,1030,1028,1028,1027,1027,1036,1033,1029,1030,1028,1011,1027,1029,1028,1027,1028,1028,1028,1029,1028,1032,1028,1028,1027,1029,1028,1028,1027,1028,1027,1028,1029,1028,1027,1029,1028,1028,1028,1028,1028,1030,1029,1029,1029,1027,1028,1028,1029,1029,1029,1029,1029,1029,1028,1028,1034,1050,1030,1029,1030,1028,1029,1028,1035,1030,1010,1012,1011,1009,1029,1029,1029,1030,1029,1028,1009,1011,1028,1029,1029,1011,1009,1032,1034,1033,1031,1031,1031,1035,1035,1035,1032,1030,1052,1029,1028,1028,1028,1029,1027,1029,1028,1028,1028,1029,1028,1029,1029,1028,1028,1028,1028,1028,1028,1009,1028,1029,1027,1029,1029,1029,1035,1033,1029,1029,1030,1029,1034,1031,1029,1027,1028,1029,1027,1029,1029,1029,1036,1034,1032,1028,1028,1010,1029,1029,1029,1028,1028,1027,1028,1028,1029,1030,1028,1028,1028,1028,1028,1029,1029,1030,1028,1035,1026,1028,1028,1027,1028,1028,1027,1010,1028,1029,1029,1028,1029,1029,1029,1031,1029,1029,1029,1029,1029,1029,1029,1029,1028,1029,1029,1028,1029,1028,1029,1029,1030,1029,1010,1035,1027,1028,1028,1029,1028,1029,1028,1028,1028,1029,1028,1028,1029,1028,1027,1029,1028,1030,1028,1036,1037,1031,1029,1028,1028,1029,1009,1030,1028,1029,1028,1030,1027,1030,1033,1027,1027,1027,1027,1029,1028,1028,1028,1028,1027,1029,1028,1028,1031,1029,1029,1028,1029,1029,1037,1036,1030,1029,1028,1029,1028,1027,1029,1028,1030,1030,1028,1029,1029,1028,1029,1026,1029,1027,1028,1028,1028,1028,1027,1030,1010,1029,1028,1028,1029,1029,1029,1029,1029,1028,1029,1028,1029,1028,1030,1028,1028,1029,1028,1030,1029,1032,1029,1030,1033,1029,1028,1027,1010,1029,1030,1029,1029,1028,1028,1026,1028,1033,1036,1029,1028,1029,1029,1028,1028,1029,1029,1027,1029,1029,1029,1028,1029,1029,1032,1012,1029,1030,1030,1030,1035,1059,1030,1028,1028,1028,1028,1029,1027,1030,1031,1029,1029,1030,1027,1029,1028,1030,1028,1029,1030,1028,1029,1029,1030,1028,1029,1029,1028,1029,1030,1028,1029,1035,1027,1029,1029,1028,1029,1028,1027,1036,1036,1031,1030,1028,1029,1029,1030,1029,1011,1028,1028,1029,1028,1029,1028,1028,1029,1028,1028,1029,1029,1029,1028,1029,1028,1029,1032,1027,1028,1028,1027,1028,1028,1027,1027,1010,1028,1030,1029,1029,1028,1028,1028,1028,1028,1028,1027,1029,1027,1030,1028,1028,1028,1028,1030,1028,1029,1029,1029,1029,1029,1029,1010,1048,1036,1032,1034,1031,1030,1031,1035,1033,1032,1030,1029,1032,1032,1029,1029,1029,1030,1034,1033,1030,1032,1031,1031,1032,1031,1029,1037,1034,1032,1030,1030,1033,1030,1011,1029,1039,1036,1047,1089,1034,1032,1030,1030,1030,1037,1035,1033,1033,1032,1041,1033,1032,1030,1032,1029,1031,2040,1030,1028,1035,1028,1028,1028,1026,1029,1029,1029,1010,1030,1029,1028,1029,1028,1028,1029,1030,1028,1029,1029,1028,1036,1033,1030,1030,1031,1029,1028,1029,1029,1029,1028,1029,1028,1029,1031,1026,1029,1011,1028,1029,1027,1028,1029,1028,1028,1029,1028,1028,1027,1028,1029,1028,1030,1030,1028,1028,1028,1029,1028,1028,1028,1028,1029,1028,1027,1011,1028,1030,1029,1030,1033,1028,1029,1027,1027,1027,1029,1028,1028,1027,1029,1026,1029,1029,1027,1028,1028,1027,1029,1028,1026,1029,1028,1009,1031,1028,1027,1027,1029,1030,1028,1028,1029,1029,1028,1029,1033,1027,1028,1027,1028,1028,1028,1028,1029,1028,1028,1028,1029,1028,1028,1009,1028,1029,1029,1028,1028,1029,1029,1028,1029,1028,1028,1029,1028,1029,1028,1028,1028,1028,1027,1028,1031,1029,1028,1029,1027,1029,1009,1028,1028,1029,1029,1028,1027,1029,1029,1028,1028,1028,1029,1027,1029,1029,1028,1027,1030,1028,1027,1029,1029,1028,1029,1028,1029,1010,1028,1029,1028,1031,1026,1027,1027,1029,1027,1028,1028,1028,1028,1028,1029,1029,1028,1028,1028,1028,1028,1035,1029,1028,1029,1029,1009,1027,1028,1028,1029,1030,1027,1028,1028,1029,2040,1029,1036,1027,1028,1027,1028,1029,1028,1028,1029,1027,1029,1029,1028,1029,1009,1028,1029,1030,1028,1029,1028,1028,1030,1029,1028,1028,1028,1029,1028,1028,1027,1028,1029,1028,1028,1028,1034,1035,1029,1028,1027,1009,1028,1028,1028,1028,1029,1027,1029,1028,1028,1027,1028,1028,1028,1029,1028,1029,1029,1027,1029,1028,1028,1027,1028,1029,1029,1028,1009,1029,1029,1027,1034,1028,1027,1029,1028,1027,1029,1027,1027,1029,1027,1028,1027,1027,1029,1028,1028,1027,1029,1028,1028,1028,1011,1026,1029,1038,1028,1028,1029,1029,1027,1028,1027,1029,1028,1029,1030,1028,1029,1027,1028,1028,1028,1029,1028,1027,1028,1028,1029,1009,1028,1027,1028,1028,1030,1028,1029,1029,1028,1028,1028,1028,1029,1027,1029,1029,1029,1028,2038,1029,1029,1027,1032,1033,1029,1010,1029,1028,1028,1027,1029,1028,1028,1028,1028,1029,1029,1028,1028,1029,1030,1031,1030,1029,1029,1030,1030,1031,1028,1030,1029,1029,1030,1012,1031,1078,1045,1030,1030,1028,1030,1029,1029,1028,1028,1029,1030,1028,1029,1028,1030,1038,1032,1029,1030,1028,1028,1027,1028,1028,1030,1016,1029,1030,1030,1030,1030,1030,1031,1035,1027,1028,1027,1029,1028,1029,1028,1027,1029,1029,1027,1028,1028,1028,1035,1027,1028,1027,1028,1009,1029,1029,1028,1028,1029,1027,1029,1029,1028,1028,1028,1029,1028,1029,1028,1037,1027,1029,1028,1028,1027,1029,1027,1027,1027,1028,1011,1028,1027,1029,1029,1028,1027,1027,1029,1028,1028,1029,1029,1028,1028,1027,1028,1047,1033,1030,1030,1028,1029,1029,1036,1029,1028,1029,1010,1028,1029,1028,1028,1028,1029,1026,1028,1029,1028,1028,1028,1026,1029,1029,1028,1028,1029,1028,1029,1028,1030,1027,1029,1028,1028,1009,1030,1028,1029,1030,1051,1029,1027,1029,1028,1028,1029,1029,1029,1028,1029,1029,1028,1028,1031,1030,1027,1030,1030,1028,1029,1028,1030,1011,1030,1030,1028,1030,1027,1029,1027,1029,1027,1030,1029,1032,1028,1028,1028,1028,1028,1026,1027,1029,1029,1049,1032,1034,1034,1033,1034,1031,1032,1012,1034,1031,1031,1030,1029,1029,1031,1030,1030,1029,1028,1030,1032,1035,1036,1112,1031,1031,1031,1029,1030,1030,1029,1027,1028,1029,1029,1029,1029,1029,1028,1030,1034,1012,1031,1031,1031,1032,1031,1031,1031,1028,1029,1029,1028,1033,1028,1027,1028,1028,1028,1026,1030,1028,1027,1029,1027,1029,1028,1029,1028,1028,1027,1029,1010,1029,1028,1028,1027,1029,1027,1028,1027,1028,1028,1028,1027,1028,1028,1029,1028,1035,1028,1029,1029,1026,1027,1029,1029,1029,1029,1028,1029,1010,1029,1029,1027,1029,1028,1028,1028,1028,1027,1027,1029,1028,1027,1028,1029,1028,1030,1027,1028,1036,1030,1031,1030,1030,1029,1027,1029,1009,1029,1028,1027,2038,1027,1029,1038,1031,1030,1029,1029,1029,1028,1028,1028,1028,1027,1029,1029,1029,1028,1029,1029,1030,1029,1029,1010,1029,1030,1029,1034,1027,1028,1028,1027,1028,1027,1028,1029,1030,1028,1028,1028,1028,1027,1027,1029,1029,1028,1030,1028,1028,1028,1029,1009,1030,1029,1028,1029,1028,1028,1029,1029,1028,1028,1027,1030,1029,1026,1035,1026,1029,1028,1028,1028,1027,1029,1028,1027,1028,1027,1011,1028,1028,1028,1059,1028,1029,1027,1028,1028,1027,1027,1028,1029,1028,1028,1028,1027,1027,1028,1032,1028,1029,1027,1029,1028,1028,1009,1028,1028,1028,1027,1029,1028,1028,1028,1029,1029,1027,1029,1028,1026,1029,1027,1029,1028,1028,1029,1028,1028,1028,1028,1031,1030,1029,1013,1029,1029,1030,1029,1028,1029,1028,1030,1031,1028,1036,1030,1029,1029,1031,1029,1030,1029,1029,1030,1030,1029,1030,1029,1029,2022,1030,1028,1028,1030,1029,1032,1030,1030,1028,1046,1029,1030,1032,1029,1031,1031,1029,1029,1029,1029,1031,1028,1030,1028,1032,1030,1029,1012,1030,1029,1034,1028,1028,1030,1029,1029,1029,1028,1029,1031,1028,1030,1029,1034,1029,1030,1027,1028,1028,1029,1028,1028,1028,1027,1011,1029,1029,1028,1029,1029,1029,1035,1041,1030,1027,1030,1028,1028,1029,1029,1028,1029,1028,1028,1029,1027,1030,1029,1032,1028,1026,1027,1010,1028,1028,1027,1033,1030,1028,1029,1030,1028,1029,1028,1028,1029,1027,1027,1029,1028,1028,1036,1030,1028,1029,1029,1028,1027,1029,1029,1009,1028,1028,1028,1032,1028,1028,1028,1028,1027,1028,1028,1028,1028,1029,1027,1029,1028,1028,1028,1029,1028,1028,1028,1029,1029,1027,1010,1009,1029,1029,1028,1029,1029,1030,1028,1029,1029,1027,1029,1030,1032,1029,1028,1030,1030,1027,1030,1028,1027,1028,1028,1028,1029,1027,1010,1029,1029,1029,1029,1029,1028,1028,1029,1028,1028,1029,1028,1029,1027,1029,1028,1028,1028,1029,1028,1034,1028,1028,1028,1027,1029,1009,1028,1028,1029,1028,1027,1028,1029,1029,1028,1028,1029,1028,1028,1027,1029,1027,1027,1027,1027,1028,1028,1028,1029,1029,1029,1029,1011,1028,1029,1032,1027,1029,1027,1028,1026,1028,1027,1029,1027,1028,1030,1027,1029,1027,1029,1028,1027,1029,1027,1029,1029,1028,1028,1009,1029,1030,1028,1028,1028,1028,1028,1028,1030,1028,1029,1031,1028,1029,1028,1028,1030,1029,1028,1029,1028,1028,1027,1029,1028,1027,1029,1009,1027,1028,1027,1012,1009,1023,1010,1010,1009,1016,1011,1010,1009,1010,1008,1009,1008,1014,1013,1013,1014,1014,1013,1014,1018,1025,1021,1018,1029,1014,1028,1039,1015,1019,1013,1031,1013,1012,1014,1012,1013,1013,1013,1012,1013,1012,1012,1012,966,46,1015,1009,1015,1020,1016,1024,1019,1016,1018,1016,1016,1013,1017,1015,1014,1014,1013,1013,1014,1015,1018,1016,1016,1014,1014,1013,1016,1014,1015,2025,1014,1013,1011,1015,1015,1014,1015,1020,1017,1016,1014,1015,1014,1015,1014,1014,1014,1014,1015,1016,1015,1019,1015,1014,1013,1015,1014,1017,1014,1014,1015,1014,1010,1015,1016,1015,1014,1015,1015,1014,1014,1015,1014,1015,1016,1014,1018,1016,1014,1015,1016,1014,1014,1015,1016,1016,1015,1015,1015,1014,1016,1009,1017,1017,1016,1015,1016,1017,1015,1016,1016,1016,1015,1015,1015,1016,1015,1015,1015,1017,1016,1015,1016,1016,1015,1016,1015,1017,1019,1009,1020,1017,1016,1015,1016,1016,1016,1016,1015,1016,1016,1016,1016,1016,1016,1023,1019,1017,1016,1017,1018,1016,1017,1017,1018,1016,1016,1010,1018,1017,1017,1017,1017,1017,1018,1018,1018,1018,1018,1020,1019,1016,1018,1016,1016,1018,1017,1017,1022,1020,1018,1018,1017,1018,1018,1009,1019,1021,1017,1017,1016,1017,1017,1017,1017,1018,1017,1017,1018,1016,1020,1018,1018,1018,1019,1017,1017,1018,1017,1019,1018,1018,1018,1011,1018,1018,1018,1019,1018,1019,1018,1018,1018,1019,1019,1018,1018,1020,1018,1018,1018,1018,1018,1020,1019,1018,1020,1018,1018,1020,1018,1010,1020,1022,1019,1019,1019,1020,1018,1019,1019,1018,1018,1018,1018,1020,1020,1019,1017,1019,1021,1019,1018,1020,1019,1019,1019,1021,1019,1024,1021,1021,1019,1021,1019,1020,1021,1022,1021,1021,1019,1020,1021,1020,1021,1020,1019,1021,1019,1021,1021,1020,1020,1027,1034,1021,1010,1020,1019,1019,1019,1020,1020,1019,1021,1021,1020,1020,1019,1021,1021,1021,1022,1022,1020,1022,1021,1021,1024,1023,1021,1021,1021,1022,1021,1022,1023,1020,1021,1021,1021,1021,1021,1021,1022,1021,1021,1022,1023,1021,1042,1034,1029,1023,1020,1023,1021,1021,1020,1021,1022,1010,1021,1022,1020,1021,1021,1023,1022,1021,1022,1021,1021,1022,1021,1021,1022,1023,1023,1022,1022,1022,1021,1024,1022,1022,1023,1022,1024,1022,1023,1024,1022,1023,1022,1026,1022,1021,1021,1023,1022,1023,1022,1022,1023,1022,1023,1021,1022,1022,1022,1024,1022,1024,1026,1023,1009,1024,1023,1023,1023,1021,1023,1024,1022,1023,1024,1022,1024,1023,1023,1023,1023,1024,1029,1026,1024,1024,1023,1041,1024,1024,1024,1022,1010,1025,1024,1024,1025,1023,1026,1024,1022,1025,1023,1022,1024,1024,1024,1022,1025,1025,1024,1024,1023,1024,1025,1025,1024,1025,1024,1024,1024,1025,1025,1024,1024,1025,1024,1025,1031,1024,1026,1024,1024,1025,1025,1025,1024,1024,1025,1025,2035,1025,1024,1024,1025,1025,1010,1025,1025,1026,1025,1024,1024,1025,1025,1026,1023,1026,1025,1027,1025,1026,1024,1026,1024,1026,1025,1026,1030,1043,1027,1027,1026,1011,1027,1026,1026,1026,1033,1033,1028,1026,1027,1027,1025,1027,1025,1027,1026,1027,1026,1027,1026,1028,1026,1026,1027,1025,1027,1026,1027,1011,1026,1027,1028,1027,1031,1029,1027,1026,1027,1027,1027,1026,1026,1028,1028,1027,1027,1027,1026,1027,1026,1026,1026,1026,1027,1034,1031,1010,1031,1028,1028,1027,1027,1027,1028,1026,1027,1028,1026,1028,1027,1037,1026,1026,1027,1027,1026,1027,1027,1028,1026,1027,1027,1026,1028,1027,1026,1027,1028,1028,1028,1027,1028,1028,1028,1027,1029,1027,1028,1028,1030,1028,1028,1028,1028,1028,1028,1031,1026,1027,1028,1028,1009,1029,1029,1029,1028,1028,1029,1030,1027,1029,1029,1027,1029,1029,1028,1027,1028,1029,1028,1028,1029,1029,1030,1028,1029,1029,1028,1010,1031,1028,1029,1034,1028,1030,1029,1029,1028,1030,1030,1027,1032,1028,1028,1029,1029,1030,1030,1030,1028,1029,1030,1029,1028,1030,1012,1029,1029,1031,1029,1028,1029,1029,1029,1028,1030,1030,1033,1030,1031,1029,1028,1030,1030,1028,1027,1028,1029,1028,1028,1028,1029,1027,1012,1029,1028,1029,1029,1029,1029,1030,1028,1028,1028,1028,1029,1027,1029,1028,1028,1029,1028,1032,1035,1029,1028,1028,1027,1028,1028,1010,1028,1029,1029,1029,1027,1029,1028,1028,1029,1030,1028,1029,1029,1028,1029,1027,1027,1028,1029,1028,1028,1028,1029,1029,1030,1029,1009,1036,1030,1028,1028,1028,1027,1027,1028,1028,1029,1028,1028,1028,1028,1029,1029,1028,1029,1029,1028,1027,1028,1027,1028,1028,1028,1027,1028,1028,1029,1030,1028,1028,1027,1029,1028,1031,1027,1027,1029,1030,1027,1029,1028,1029,1029,1028,1027,1027,1028,1031,1029,1027,1028,1012,1029,1029,1028,1029,1029,1027,1029,1028,1028,1028,1027,1030,1028,1028,1028,1027,1027,1030,1049,1043,1034,1028,1029,1028,1028,1029,1010,1033,1029,1030,1029,1028,1029,1030,1029,1029,1028,1029,1029,1030,1030,1030,1028,1030,1028,1028,1029,1028,1030,1029,1033,1027,1028,1027,1010,1029,1029,1027,1029,1028,1026,1028,1029,1028,1028,1029,1028,1029,1029,1028,1026,1029,1028,1028,1028,1029,1030,1030,1029,1028,1029,1029,1009,1030,1029,1029,1028,1033,1028,2038,1028,1029,1027,1028,1029,1028,1029,1029,1028,1028,1028,1028,1027,1030,1027,1028,1028,1030,1009,1030,1028,1028,1028,1028,1029,1028,1028,1027,1029,1029,1030,1029,1036,1028,1028,1026,1029,1029,1033,1030,1029,1029,1028,1028,1028,1011,1029,1029,1027,1028,1028,1029,1029,1028,1028,1028,1028,1028,1029,1029,1028,1033,1029,1027,1028,1028,1029,1033,1028,1027,1029,1028,1028,1012,1029,1027,1028,1028,1028,1029,1028,1027,1028,1029,1028,1028,1028,1028,1027,1029,1028,1028,2039,1028,1028,1028,1028,1030,1029,1010,1034,1029,1030,1032,1028,1028,1028,1028,1028,1027,1028,1028,1029,1028,1027,1028,1029,1029,1029,1028,1028,1029,1029,1028,1028,1027,1030,1009,1030,1037,1033,1030,1029,1028,1029,1028,1028,1027,1029,1037,1029,1028,1026,1029,1028,1029,1034,1030,1029,1029,1028,1030,1028,1028,1029,1009,1029,1029,1028,1028,1030,1034,1031,1030,1028,1028,1029,1027,1030,1028,1028,1029,1029,1028,1076,1029,1028,1028,1031,1029,1028,1029,1029,1009,1029,1029,1029,1027,1028,1029,1029,1030,1028,1028,1032,1030,1028,1029,1028,1027,1029,1027,1027,1028,1030,1028,1030,1031,1030,1027,1036,1010,1030,1028,1029,1029,1027,1029,1028,1029,1028,1030,1029,1028,1028,1028,1032,1031,1030,1030,1029,1029,1029,1029,1028,1029,1027,1029,1029,1012,1030,1028,1029,1033,1027,1028,1028,1028,1028,1028,1029,1027,1036,1035,1029,1029,1029,1028,1030,1029,1029,1029,1028,1028,1028,1029,1010,1030,1031,1030,1028,1030,1028,1028,1029,1029,1029,1029,1032,1026,1029,1028,1029,1028,1028,1029,1028,1028,1029,1027,1029,1027,1029,1028,1009,1028,1029,1029,1028,1029,1028,1028,1029,1029,1028,1028,1029,1028,1029,1029,1027,1029,1029,1028,1032,1026,1029,1027,1028,1029,1029,1009,1027,1032,1036,1028,1029,1029,1028,1029,1029,1029,1030,1027,1030,1029,1027,1029,1028,1027,1030,1029,1029,1030,1030,1029,1028,1029,1029,1010,1037,1028,1028,1028,1028,1029,1028,1028,1028,1028,1029,1027,1029,1028,1028,1028,1029,1028,1028,1028,1028,1028,1027,1031,1030,1031,1031,1009,1030,1030,1029,1028,1030,1027,1029,1031,1028,1028,1027,1028,1028,1030,1028,1029,1029,1028,1028,1027,1028,1027,1029,1028,1028,1028,1029,1027,1028,1028,1027,1029,1028,1029,1028,1029,1029,1028,1029,1028,1028,1028,1034,1032,1028,1030,1026,1029,1028,1028,1027,1028,1028,1029,1010,1030,1030,1028,1029,1030,1028,1028,1029,1028,1027,1029,1029,1030,1030,1029,1028,1027,1027,1029,1029,1037,1032,1039,1030,1029,1027,1027,1009,1029,1027,1028,1028,1028,1028,1036,1030,1029,1029,1028,1029,1028,1029,1027,1028,1028,1028,1030,1029,1029,1029,1029,1028,1029,1029,1011,1030,1028,1030,1033,1028,1028,1027,1028,1028,1026,1029,1029,1028,1030,1033,1030,1028,1028,1029,1029,1030,1028,1030,1028,1030,1029,1028,1013,1029,1028,1029,1029,1029,1028,1028,1028,1030,1029,1033,1028,1028,1029,1028,1028,1027,1027,1028,1027,1028,1027,1028,1028,1035,1029,1010,1028,1030,1028,1030,1028,1029,1029,1029,1030,1029,1028,1029,1028,1029,1029,1028,1029,1028,1029,1031,1027,1028,1030,1029,1028,1029,1029,1009,1027,1029,1027,1029,1028,1029,1028,1028,1028,1030,1027,1028,1028,1029,1028,1029,1028,1029,1028,1030,1029,1028,1028,1029,1027,1027,1009,1033,1026,1029,1027,1027,1029,2040,1028,1028,1028,1047,1041,1030,1028,1030,1030,1029,1029,1029,1029,1028,1030,1028,1028,1028,1028,1010,1028,1028,1028,1028,1028,1028,1029,1029,1029,1028,1028,1027,1028,1026,1028,1029,1028,1027,1029,1028,1027,1035,1038,1028,1029,1030,1029,1010,1029,1028,1030,1029,1029,1029,1028,1028,1030,1028,1030,1028,1028,1030,1029,1034,1030,1030,1028,1028,1029,1028,1028,1028,1028,1028,1029,1028,1010,1029,1029,1030,1028,1029,1029,1028,1029,1029,1028,1028,1029,1028,1036,1036,1031,1028,1028,1030,1027,1029,1043,1028,1026,1028,1028,1010,1029,1030,1036,1030,1030,1028,1029,1029,1029,1029,1028,1028,1028,1028,1029,1029,1028,1030,1035,1031,1029,1029,1028,1029,1030,1029,1028,1010,1035,1032,1027,1029,1027,1027,1035,1031,1029,1029,1029,1028,1027,1029,1028,1028,1027,1029,1028,1028,1028,1029,1030,1030,1029,1028,1011,1028,1028,1027,1028,1030,1028,1028,1028,1031,1032,1037,1029,1029,1028,1036,1036,1034,1031,1031,1031,1029,1028,1030,1030,1030,1030,1031,1030,1012,1029,1030,1031,1029,1030,1030,1029,1029,1030,1031,1029,1028,1029,1037,1031,1030,1030,1029,1028,1029,1028,1028,1029,1028,1030,1028,1027,1009,1028,1011,1010,1028,1011,1011,1029,1027,1011,1028,1011,1010,1029,1010,1009,1033,1032,1030,1033,1031,1034,1035,1035,2062,1035,1029,1029,1029,1027,1028,1028,1029,1029,1029,1028,1062,1037,1032,1031,1031,1029,1029,1029,1030,1028,1030,1028,1010,1028,1028,1029,2041,1029,1029,1029,1028,1029,1010,1032,1028,1029,1027,1028,1028,1029,1028,1029,1030,1028,1029,1028,1028,1028,1010,1031,1029,1029,1028,1029,1028,1030,1010,1028,1029,1029,1029,1028,1029,1030,1028,1028,1030,1028,1029,1046,1029,1028,1027,1028,1028,1010,1028,1029,1029,1028,1029,1028,1029,1027,1028,1029,1029,1030,1029,1028,1029,1029,1028,1029,1029,1029,1028,1029,1027,1030,1029,1029,1010,1028,1029,1046,1029,1029,1029,1027,1029,1029,1029,1029,1029,1028,1029,1028,1029,1030,1029,1028,1029,1029,1028,1028,1029,1030,1029,1029,1012,1030,1029,1029,1028,1029,1028,1029,1036,1037,1031,1031,1029,1029,1029,1029,1028,1029,1028,1027,1029,1028,1027,1029,1027,1029,1028,1030,1012,1030,1028,1027,1030,1028,1029,1028,1029,1028,1029,1029,1029,1029,1031,1030,1032,1028,1027,1029,1028,1029,1027,1028,1028,1027,1028,1033,1030,1029,1028,1030,1029,1028,1028,1029,1030,1028,1028,1029,1029,1028,1029,1029,1029,1029,1029,1031,1029,1027,1029,1030,1028,1028,1009,1029,1029,1027,1028,1028,1027,1027,1028,1028,1028,1029,1028,1028,1029,1027,1029,1029,1030,1029,1028,1028,1028,1028,1038,1032,1031,1028,1032,1031,1029,1029,1051,1028,1029,1028,1028,1028,1028,1029,1028,1030,1030,1028,1029,1028,1028,1028,1030,1028,1028,1029,1028,1029,1009,1028,1029,1028,1029,1029,1027,1029,1027,1030,1028,1030,1028,1034,1029,1028,1032,1029,1029,1028,1028,1027,1029,1028,1029,1028,1028,1009,1028,1029,1029,1027,1030,1028,1029,1028,1029,1028,1030,1028,1028,1029,1028,1029,1028,1029,1029,1028,1033,1027,1028,1028,1027,1010,1031,1029,1030,1029,1028,1027,1029,1029,1027,1029,1027,1027,1029,1029,1028,1028,1028,1029,1028,1028,1028,1028,1028,1029,1027,1029,1028,1010,1029,1036,1042,1030,1042,1036,1030,1029,1027,1029,1028,1028,1030,1029,1029,1029,1027,1029,1030,1030,1030,1030,1029,1029,1030,1028,1029,1010,1032,1031,1030,1030,1028,1029,1030,1031,1032,1027,1028,1027,1029,1026,1029,1029,1029,1028,1027,1028,1027,1028,1028,1029,1027,1029,1010,1030,1028,1029,1028,1037,1033,1029,1029,1029,1028,1029,1030,1029,1029,1029,1029,1028,1033,1028,1028,1027,1029,1027,1028,1029,1029,1028,1009,1032,1030,1030,1028,1028,1028,1028,1028,1029,1029,1028,1028,1029,1028,1029,1028,1028,1029,1030,1029,1028,1028,1028,1029,1032,1026,1010,1030,1028,1028,1027,1028,1028,1029,1029,1028,1027,1029,1028,1028,1030,1028,1028,1029,1028,1028,1028,1029,1037,1032,1030,1030,1029,1009,1029,1030,1028,1029,1029,1029,1037,1035,1028,1029,1029,1029,1029,1028,1026,1029,1032,1028,1029,1028,1028,1028,1028,1029,1028,1028,1029,1013,1028,1029,1028,1030,1028,1028,1027,1027,1028,1028,1029,1029,1028,1033,1028,1028,1030,1030,1028,1028,1027,1029,1028,1029,1027,1029,1009,1027,1027,1028,1027,1029,1028,1029,1029,1036,1031,1030,1030,1029,1029,1029,1029,1028,1029,1028,1028,1029,1030,1036,1031,1029,1029,1012,1038,1031,1029,1029,1027,1028,1028,1029,1028,1035,1028,1028,1028,1030,1029,1029,1028,1029,1028,1028,1027,1028,1027,1028,1029,1028,1012,1029,1028,1030,1031,1028,1027,1028,1027,1028,1027,1030,1028,1029,1028,1028,1030,1029,1029,1028,1028,1028,1029,1028,1029,1028,1028,1009,1029,1028,1029,1030,1028,1030,1028,1029,1029,1029,1028,1030,1031,1027,1029,1027,1029,1028,1030,1029,1028,1029,1029,1028,1029,1028,1009,1028,1028,1029,1027,1029,1029,1028,1029,1028,1029,1031,1029,1029,1029,1028,1028,1028,2040,1029,1029,1031,1037,1036,1031,1029,1012,1029,1030,1027,1029,1027,1028,1028,1029,1028,1029,1027,1030,1029,1029,1028,1030,1028,1029,1029,1028,1028,1028,1029,1028,1029,1027,1010,1030,1030,1032,1028,1028,1028,1029,1028,1028,1028,1029,1028,1029,1030,1028,1028,1028,1029,1028,1028,1028,1028,1030,1028,1030,1009,1030,1028,1028,1029,1029,1028,1027,1029,1028,1028,1029,1028,1045,1029,1028,1027,1028,1028,1027,1029,1029,1028,1027,1028,1029,1028,1009,1034,1030,1028,1030,1028,1027,1028,1028,1028,1028,1028,1029,1028,1028,1030,1028,1028,1029,1029,1028,1033,1026,1037,1029,1028,1028,1009,1028,1029,1028,1028,1027,1029,1029,1028,1027,1028,1028,1047,1036,1030,1029,1029,1028,1030,1028,1029,1027,1029,1027,1029,1029,1029,1011,1028,1038,1031,1030,1029,1030,1028,1028,1027,1028,1028,1029,1028,1027,1029,1031,1028,1028,1028,1028,1028,1029,1028,1029,1028,1028,1029,1015,1029,1028,1030,1029,1028,1029,1029,1029,1030,1029,1028,1028,1028,1027,1029,1029,1029,1028,1028,1029,1029,1029,1028,1029,1028,1028,1011,1027,1029,1027,1029,1034,1032,1028,1030,1029,2039,1029,1028,1027,1029,1029,1029,1029,1036,1029,1029,1029,1037,1034,1030,1027,1011,1028,1027,1028,1029,1027,1029,1028,1028,1029,1028,1029,1030,1028,1028,1029,1028,1028,1027,1029,1028,1029,1028,1027,1029,1027,1029,1038,1031,1029,1028,1028,1030,1028,1029,1028,1028,1028,1027,1029,1029,1029,1029,1029,1030,1029,2038,1029,1028,1028,1029,1028,1029,1029,1012,1031,1030,1030,1030,1030,1028,1034,1028,1027,1029,1027,1028,1029,1029,1029,1028,1027,1028,1028,1030,1028,1028,1027,1029,1028,1028,1009,1010,1030,1027,1029,1028,1027,1028,1029,1029,1036,1031,1030,1029,1027,1028,1038,1030,1029,1028,1029,1027,1029,1030,1028,1027,1028,1028,1028,1009,1028,1030,1029,1028,1029,1028,1028,1028,1029,1029,1029,1029,1037,1033,1029,1028,1030,1029,1028,1029,1029,1037,1030,1029,1033,1029,1010,1028,1029,1028,1029,1029,1029,1028,1028,1029,1028,1028,1027,1028,1030,1028,1028,1028,1039,1030,1029,1028,1029,1028,1028,1028,1027,1028,1012,1030,1029,1042,1036,1030,1030,1029,1028,1029,1029,1029,1029,1028,1029,1030,1028,1030,1029,1028,1030,1029,1028,1032,1028,1030,1027,1011,1030,1030,1029,1030,1028,1030,1029,1030,1029,1032,1028,1028,1028,1028,1027,1028,1029,1028,1028,1027,1029,1028,1028,1028,1028,1028,1010,1028,1029,1028,1029,1029,1028,1029,1027,1027,1029,1029,1028,1028,1027,1029,1029,1028,1028,1033,1027,1027,1029,1027,1029,1028,1029,1010,1031,1028,1029,1028,1028,1028,1036,1038,1029,1028,1029,1029,1029,1028,1029,1028,1029,1029,1029,1030,1028,1030,1030,1028,1029,1029,1037,1012,1050,1031,1036,1029,1029,1029,1029,1029,1027,1029,1027,1029,1027,1029,1027,1028,1028,1028,1028,1028,1028,1029,1027,1028,1028,1028,1011,1014,1028,1028,1027,1029,1029,1033,1027,1027,1028,1028,1029,1029,1026,1029,1028,1028,1029,1027,1029,1028,1028,1029,1028,1028,1028,1028,1009,1028,1029,1027,1029,1027,1030,1027,1029,1028,1028,1028,1028,1028,1027,1028,1048,1038,1029,1029,1028,1033,1028,1029,1031,1032,1030,1011,1027,1028,1028,1030,1028,1029,1029,1028,1030,1030,1029,1029,1030,1028,1028,1029,1028,1029,1028,1029,1028,1029,1044,1036,1029,1035,1028,1011,1031,1029,1028,1028,1028,1028,1029,1028,1027,1028,1028,1028,1027,1029,1028,1030,1028,1029,1028,1029,1028,1029,1028,1028,1028,1029,1010,1028,1029,1034,1058,1031,2038,1030,1028,1028,1027,1027,1028,1027,1028,1026,1029,1027,1029,1030,1031,1030,1029,1027,1029,1027,1028,1010,1028,1029,1030,1028,1029,1028,1029,1036,1032,1035,1032,1029,1030,1028,1028,1027,1029,1028,1028,1029,1028,1028,1028,1030,1028,1029,1009,1030,1028,1029,1029,1028,1027,1028,1028,1028,1028,1029,1028,1029,1028,1029,1028,1028,1033,1027,1027,1029,1026,1029,1027,1035,1030,1010,1028,1029,1029,1029,1029,1028,1028,1028,1028,1029,1029,1028,1029,1029,1028,1028,1028,1029,1028,1029,1029,1028,1027,1029,1029,1028,1010,1040,1031,1035,1031,1028,1028,1027,1029,1028,1028,1028,1028,1027,1029,1029,1030,1028,1029,1028,1028,1028,1029,1029,1036,1030,1030,1029,1012,1031,1030,1029,1030,1028,1029,1033,1028,1029,1027,1028,1027,1028,1027,1028,1029,1028,1028,1028,1028,1029,1029,1029,1029,1029,1028,1009,1028,1030,1028,1029,1029,1030,1028,1029,1028,1030,1030,1028,1029,1028,1029,1045,1038,1030,1031,1028,1029,1029,1028,2038,1029,1027,1010,1028,1029,1029,1028,1028,1029,1028,1028,1028,1029,1028,1029,1030,1028,1029,1028,1029,1028,1028,1029,1029,1035,1035,1029,1029,1028,1010,1030,1029,1028,1029,1028,1028,1030,1029,1028,1029,1028,1029,1028,1029,1028,1028,1027,1029,1029,1028,1028,1027,1028,1028,1028,1028,1010,1029,1030,1030,1027,1038,1034,1030,1028,1027,1028,1028,1027,1028,1027,1027,1028,1028,1029,1028,1028,1028,1029,1028,1028,1028,1028,1029,1010,1027,1029,1029,1028,1028,1029,1028,1029,1029,1028,1030,1032,1027,1026,1029,1028,1027,1029,1028,1028,1028,1029,1028,1029,1029,1029,1010,1028,1029,1029,1028,1028,1028,1029,1028,1029,1028,1029,1027,1030,1029,1027,1029,1029,1028,1029,1028,1032,1027,1027,1029,1028,1028,1009,1029,1028,1027,1028,1029,1028,1028,1028,1029,1028,1028,1028,1028,1027,1028,1029,1029,1028,1029,1029,1028,1028,1028,1027,1028,1028,1009,1029,1028,1029,1033,1400,1039,1030,1029,1030,1028,1028,1028,1029,1029,1030,1028,1030,1029,1029,1029,1030,1029,1028,1030,1034,1031,1030,1011,1028,1029,1028,1029,1029,1028,1028,1029,1028,1030,1027,1028,1028,1028,1028,1028,1028,1029,1028,1027,1011,1009,1009,1009,1010,1013,1020,1012,1010,1010,1009,1009,1009,1014,1013,1013,1013,1015,1014,1016,1014,1013,1012,1014,1010,1014,1019,1018,1013,1013,1014,1013,1012,1015,1012,1013,1012,1013,1013,1013,1013,1012,1014,1014,1012,1014,1012,1014,1013,1013,1012,1013,1013,1012,1011,1017,1014,1015,1013,1014,1013,1013,1014,1013,1013,1013,1015,1014,1013,1014,1020,1015,1013,1014,1014,1013,1014,1014,1015,1015,1014,1014,1015,1010,1014,1014,1015,1018,1015,1015,1015,1014,1014,1014,1014,1015,1015,1014,1014,1014,1019,1014,1015,1029,1024,1016,1014,1014,1014,1014,1014,1010,1014,1014,1014,1016,1014,1014,1014,1015,1014,1014,1014,1015,1015,1015,1016,1015,1014,1015,1016,1015,1015,1015,1014,1016,1016,1015,1016,1009,1019,1017,1016,1017,1015,1017,1015,1016,1016,1016,1015,1017,1016,1019,1017,1015,1016,1015,1017,1016,1018,1016,1015,1016,1020,1015,1015,1009,1017,1017,1017,1016,1016,1015,1018,1016,1015,1016,1016,1015,1017,1016,1016,1017,1016,1018,1022,1017,1016,1016,1016,1016,1018,1016,1016,1012,1016,1017,1016,1016,1016,1017,1016,1018,1017,1017,1016,1017,1017,1016,1016,1016,1018,1016,1018,1016,1018,1017,1016,1018,1018,1017,1010,1016,1018,1020,1016,1018,1016,1016,1017,1017,1017,1017,1017,1017,1017,1017,1017,1017,1017,1016,1018,1016,1016,1017,1017,1018,1018,1012,1018,1018,1017,1019,1018,1017,1020,1021,1019,1019,1019,1020,1019,1020,1019,1019,1017,1023,1020,2182,1019,1018,1025,1018,1021,1019,1011,1020,1020,1019,1018,1019,1019,1018,1018,1019,1018,1018,1018,1017,1019,1018,1019,1018,1017,1019,1017,1019,1018,1019,1019,1018,1019,1010,1020,1019,1018,1019,1019,1020,1018,1019,1019,1019,1019,1020,1019,1020,1019,1019,1018,1019,1020,1019,1020,1020,1033,1028,1020,1019,1019,1019,1020,1024,1022,1020,1020,1019,1021,1019,1023,1019,1021,1019,1019,1019,1020,1019,1024,1022,1021,1020,1020,1020,1019,1020,1020,1020,1020,1009,1024,1022,1021,1021,1021,2032,1019,1020,1020,1020,1020,1021,1021,1021,1034,1025,1023,1023,1025,1021,1020,1021,1021,1025,1020,1020,1009,1020,1021,1020,1019,1021,1020,1021,1021,1021,1025,1024,1021,1021,1020,1021,1020,1020,1020,1022,1020,1021,1021,1021,1022,1021,1020,1022,1010,1021,1022,1022,1022,1021,1021,1030,1031,1027,1025,1023,1020,1022,1021,1021,1021,1020,1021,1022,1021,1021,1021,1022,1022,1022,1021,2021,1022,1021,1022,1022,1022,1020,1022,1021,1022,1022,1022,1021,1021,1022,1023,1021,1022,1022,1023,1022,1022,1022,1023,1022,1030,1025,1027,1012,1022,1022,1024,1021,1023,1024,1023,1024,1022,1022,1022,1022,1023,1022,1024,1022,1022,1023,1022,1022,1022,1021,1023,1023,1023,1024,1010,1023,1023,1024,1024,1023,1023,1023,1023,1024,1024,1024,1023,1024,1029,1023,1023,1022,1022,1030,1030,1024,1024,1022,1027,1024,1025,1023,1010,1025,1024,1022,1024,1024,1023,1024,1023,1022,1024,1024,1024,1023,1025,1024,1025,1023,1031,1033,1029,1024,1025,1024,1024,1024,1025,1032,1026,1023,1025,1024,1024,1023,1024,1024,1023,1025,1026,1024,1024,1024,1024,1024,1024,1024,1024,1025,1026,1024,1025,1026,1024,1025,1025,1013,1025,1024,1024,1025,1025,1026,1025,1024,1025,1025,1025,1026,1032,1038,1033,1033,1025,2035,1025,1024,1023,1026,1024,1024,1024,1026,1011,1026,1024,1026,1026,1025,1026,1025,1024,1026,1024,1025,1025,1026,1025,1026,1026,1029,1028,1027,1026,1027,1026,1027,1030,1025,1024,1009,1027,1026,1027,1026,1025,1026,1026,1026,1025,1025,1025,1026,1027,1026,1025,1026,1028,1026,1026,1026,1025,1026,1028,1027,1026,1026,1026,1010,1028,1026,1028,1027,1028,1026,1027,1030,1035,1031,1028,1027,1026,1026,1027,1026,1025,1027,1026,1025,1026,1027,1027,1026,1027,1028,1029,1032,1034,1028,1029,1027,1026,1028,1027,1027,1027,1027,1028,1027,1027,1027,1029,1034,1027,1026,1028,1027,1028,1027,1027,1028,1026,1028,1010,1028,1027,1035,1033,1030,1027,1028,1027,1027,1028,1027,1027,1029,1028,1028,1028,1027,1028,1028,1028,1028,1028,1028,1029,1032,1034,1028,1009,1033,1028,1028,1049,1034,1028,1029,1028,1028,1028,1028,1028,1028,1029,1028,1028,1028,1028,1030,1028,1029,1027,1029,1028,1030,1028,1009,1030,1029,1029,1029,1029,1044,1037,1031,1030,1029,1030,1028,1029,1029,1029,1030,1028,1033,1029,1028,1028,1029,1029,1029,1030,1031,1010,1029,1037,1033,1031,1030,1029,1030,1030,1031,1029,1030,1040,1035,1031,1029,1029,1030,1030,1029,1030,1029,1032,1030,1031,1030,1029,1029,1031,1009,1029,1030,1030,1030,1030,1037,1033,1031,1031,1030,1031,1030,1030,1029,1031,1035,1039,1030,1030,1029,1030,1030,1032,1031,1031,1031,1030,1013,1030,1039,1032,1031,1031,1030,1031,1030,1029,1032,1032,1031,1032,1030,1031,1029,1031,1031,1032,1030,1034,1031,1031,1030,1030,1030,1030,1012,1033,1031,1030,1031,1031,1030,1032,1032,1032,1030,1031,1030,1030,1038,1038,1033,1033,1032,1031,1032,1033,1032,1031,1032,1035,1030,1031,1009,1031,1031,1032,1031,1031,1031,1031,1033,1031,1031,1033,1032,1032,1032,1032,1032,1032,1031,1031,1030,1033,1032,1031,1032,1030,1031,1011,1031,1031,1035,1029,1031,1031,1032,1031,1033,1031,1031,2042,1030,1031,1032,1031,1032,1031,1031,1030,1031,1031,1032,1032,1030,1031,1016,1031,1032,1030,1030,1031,1031,1032,1037,1034,1032,1031,1041,1031,1031,1056,1045,1032,1031,2040,1032,1033,1032,1031,1032,1030,1010,1077,1034,1033,1032,1033,1031,1032,1031,1032,1031,1049,1032,1029,1032,1030,1031,1030,1038,1032,1030,1030,1031,1031,1031,1030,1031,1031,1009,1032,1031,1031,1030,1031,1032,1031,1031,1030,1032,1031,1031,1032,1032,1036,1030,1031,1031,1031,1031,1032,1039,1035,1032,1031,1031,1010,1033,1031,1031,1031,1031,1030,1031,1031,1033,1032,1031,1032,1031,1030,1033,1031,1030,1031,1031,1035,1030,1030,1029,1032,1031,1031,1031,1010,1032,1031,1030,1030,1032,1030,1030,1031,1031,1031,1032,1032,1031,1031,1065,1043,1032,1032,1032,1030,1032,1031,1032,1032,1030,1031,1010,1031,1031,1031,1031,1031,1030,1030,1031,1030,1031,1031,1030,1032,1031,1031,1032,1030,1032,1032,1031,1031,1032,1031,1030,1032,1031,1009,1031,1033,1035,1030,1029,1032,1030,1031,1030,1032,1029,1032,1030,1032,1030,1031,1031,1031,1031,1031,1030,1031,1030,1032,1031,1030,1011,1031,1032,1031,1032,1031,1032,1032,1031,1037,1031,1031,1031,1031,1031,1053,1036,1032,1031,1031,1032,1031,1031,1031,1030,1031,1030,1009,1032,1032,1031,1030,1032,1031,1031,1031,1032,1032,1031,1032,1031,1032,1031,1030,1030,1031,1030,1030,1031,1030,1031,1031,1031,1031,1009,1033,1032,1030,1030,1032,1030,1030,1030,1030,1031,1030,1032,1031,1031,1031,1032,1030,1031,1031,1036,1031,1031,1030,1030,1029,1031,1009,1034,1031,1031,1030,1031,1032,1030,1031,1032,1031,1030,1030,1031,1030,1031,1032,1031,1031,1030,1031,1031,1031,2041,1031,1034,1009,1042,1031,1030,1031,1031,1030,1031,1031,1031,1031,1031,1031,1030,1031,1031,1032,1031,1030,1030,1031,1031,1030,1031,1031,1030,1032,1031,1030,1031,1030,1032,1035,1030,1032,1030,1031,1031,1030,1031,1031,1031,1031,1030,1031,1031,1031,1031,1030,1031,1030,1031,1032,1031,1030,1032,1032,1031,1030,1030,1030,1031,1030,1031,1032,1031,1031,1041,1030,1032,1031,1030,1031,1030,1032,1031,1030,1031,1032,1031,1032,1031,1013,1032,1030,1032,1032,1030,1030,1033,1030,1032,1030,1031,1031,1030,1032,1035,1042,1037,1038,1030,1032,1031,1031,1031,1030,1031,1030,1012,1030,1031,1030,2042,1030,1032,1031,1031,1031,1030,1032,1031,1031,1030,1031,1030,1031,1030,1031,1034,1031,1030,1030,1031,1030,1009,1033,1030,1031,1032,1030,1030,1032,1031,1031,1030,1032,1032,1031,1030,1031,1030,1031,1030,1032,1031,1032,1031,1030,1033,1032,1032,1014,1031,1030,1037,1032,1031,1030,1031,1030,1031,1030,1031,1036,1031,1032,1030,1032,1031,1031,1032,1032,1031,1030,1031,1032,1030,1031,1030,1011,1031,1032,1032,1030,1034,1029,1052,1047,1032,1031,1031,1031,1031,1031,1030,1032,1030,1030,1031,1031,1031,1031,1031,1030,1032,1031,1010,1031,1033,1031,1032,1031,1032,1031,1031,1037,1034,1032,1032,1031,1031,1030,1031,1031,1031,1031,1031,1031,1032,1030,1030,1031,1031,1031,1009,1032,1031,1032,1032,1031,1031,1032,1032,1030,1011,1031,1031,1031,1011,1009,1010,1076,1048,1050,1039,832,206,1038,1037,1038,1039,1033,1031,1032,1031,1032,1030,1032,1031,1033,1030,1031,2043,1032,1030,1032,1030,1030,1031,1036,1042,1031,1030,1030,1032,1032,1036,1031,1036,1033,1034,1032,1034,1033,1034,1034,1034,1034,1034,1042,1036,1033,1031,1030,1032,1033,1031,1032,1031,1061,1033,1031,1030,1012,1033,1031,1031,1033,1033,1031,1030,1031,1031,1031,2041,1031,1031,1031,1031,1030,1030,1031,1031,1030,1030,1031,1031,1031,1032,1031,1030,1034,2040,1029,1031,1029,1032,1029,1031,1031,1031,1030,1032,1031,1029,1031,1030,1031,1030,1030,1031,1031,1031,1031,1031,1030,1011,1033,1031,1031,1032,1032,1031,1030,1032,1030,1031,1034,1032,1031,1030,1031,1030,1031,1030,1029,1031,1030,1030,1031,1030,1030,1031,1010,1032,1030,1031,1031,1030,1030,1030,1031,1030,1032,1031,1030,1030,1041,1030,1030,1030,1032,1030,1030,1030,1032,1030,1030,1030,1030,1010,1031,1032,1030,1030,1031,1030,1032,1032,1031,1031,1029,1031,1029,1031,1029,1032,1030,1032,1032,1034,1029,1031,1034,1033,1031,1030,1030,1009,1031,1030,1029,1031,1031,1031,1030,1030,1031,1029,1038,1033,1032,1031,1032,1030,1032,1030,1030,1031,1032,1031,1031,1030,1034,1031,1011,1040,1033,1030,1031,1030,1030,1031,1032,1031,1030,1030,1030,1031,1031,1031,1031,1030,1031,1031,1030,1030,1032,1029,1031,1029,1031,1009,1031,1031,1030,1034,1029,1029,1030,1029,1030,1029,1030,1031,1030,1031,1032,1031,1031,1031,1031,1032,1031,1030,1031,1031,1030,1032,1031,1009,1031,1030,1038,1034,1032,1033,1032,1031,1035,1033,1031,1029,1031,1029,1031,1029,1031,1029,1031,1030,1029,1030,1031,1029,1031,1031,1011,1035,1030,1030,1030,1030,1029,1031,1029,1030,1031,1031,1029,1032,1030,1041,1032,1029,1030,1030,1030,1029,1028,1029,1030,1029,1030,1009,1031,1030,1030,1030,1029,1030,1029,1032,1030,1029,1030,1028,1031,1029,1030,1029,1031,1029,1030,1031,1030,1034,1037,1041,1039,1030,1031,1012,1032,1032,1030,1031,1031,1030,1030,1031,1030,1030,1030,1031,1029,1030,1030,1032],"$vscode":{"rootPath":"c:\\projects\\roku\\brighterscript5__parent-linking","locations":[{"callFrame":{"functionName":"(root)","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"locations":[]},{"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":273},"locations":[{"lineNumber":4,"columnNumber":274,"source":{"name":"/VM46947596","path":"/VM46947596","sourceReference":46947596}}]},{"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":17,"columnNumber":20},"locations":[{"lineNumber":18,"columnNumber":21,"source":{"name":"benchmarks/targets/validate.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\targets\\validate.js","sourceReference":0}}]},{"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":715,"columnNumber":20},"locations":[{"lineNumber":716,"columnNumber":21,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"822","url":"","lineNumber":0,"columnNumber":19},"locations":[{"lineNumber":1,"columnNumber":20,"source":{"name":"/VM46947596","path":"/VM46947596","sourceReference":46947596}}]},{"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":12},"locations":[{"lineNumber":454,"columnNumber":13,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":8},"locations":[{"lineNumber":109,"columnNumber":9,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Logger.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Logger.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":72},"locations":[{"lineNumber":455,"columnNumber":73,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":78},"locations":[{"lineNumber":484,"columnNumber":79,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":12},"locations":[{"lineNumber":525,"columnNumber":13,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":530,"columnNumber":103},"locations":[{"lineNumber":531,"columnNumber":104,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":13},"locations":[{"lineNumber":38,"columnNumber":14,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":565,"columnNumber":13},"locations":[{"lineNumber":566,"columnNumber":14,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":21},"locations":[{"lineNumber":410,"columnNumber":22,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":573,"columnNumber":31},"locations":[{"lineNumber":574,"columnNumber":32,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":37},"locations":[{"lineNumber":756,"columnNumber":38,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":789,"columnNumber":0},"locations":[{"lineNumber":790,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":790,"columnNumber":0},"locations":[{"lineNumber":791,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":785,"columnNumber":0},"locations":[{"lineNumber":786,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":786,"columnNumber":0},"locations":[{"lineNumber":787,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":783,"columnNumber":0},"locations":[{"lineNumber":784,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":784,"columnNumber":0},"locations":[{"lineNumber":785,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":762,"columnNumber":0},"locations":[{"lineNumber":763,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":763,"columnNumber":0},"locations":[{"lineNumber":764,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":764,"columnNumber":0},"locations":[{"lineNumber":765,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":336,"columnNumber":23},"locations":[{"lineNumber":337,"columnNumber":24,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":337,"columnNumber":0},"locations":[{"lineNumber":338,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isFunctionType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":338,"columnNumber":0},"locations":[{"lineNumber":339,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClassMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":175,"columnNumber":15},"locations":[{"lineNumber":176,"columnNumber":16,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":11,"columnNumber":12},"locations":[{"lineNumber":12,"columnNumber":13,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Cache.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Cache.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":47},"locations":[{"lineNumber":177,"columnNumber":48,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":181,"columnNumber":0},"locations":[{"lineNumber":182,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":182,"columnNumber":0},"locations":[{"lineNumber":183,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":52},"locations":[{"lineNumber":723,"columnNumber":53,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":725,"columnNumber":0},"locations":[{"lineNumber":726,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":726,"columnNumber":0},"locations":[{"lineNumber":727,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":37},"locations":[{"lineNumber":631,"columnNumber":38,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":646,"columnNumber":0},"locations":[{"lineNumber":647,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":647,"columnNumber":0},"locations":[{"lineNumber":648,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":648,"columnNumber":0},"locations":[{"lineNumber":649,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":23},"locations":[{"lineNumber":42,"columnNumber":24,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":12,"columnNumber":0},"locations":[{"lineNumber":13,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Cache.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Cache.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":13,"columnNumber":0},"locations":[{"lineNumber":14,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Cache.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Cache.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":24,"columnNumber":7},"locations":[{"lineNumber":25,"columnNumber":8,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Cache.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Cache.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Cache.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Cache.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Cache.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Cache.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":660,"columnNumber":38},"locations":[{"lineNumber":661,"columnNumber":39,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":666,"columnNumber":0},"locations":[{"lineNumber":667,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":667,"columnNumber":0},"locations":[{"lineNumber":668,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":11},"locations":[{"lineNumber":279,"columnNumber":12,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":285,"columnNumber":0},"locations":[{"lineNumber":286,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":286,"columnNumber":0},"locations":[{"lineNumber":287,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":279,"columnNumber":0},"locations":[{"lineNumber":280,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":280,"columnNumber":0},"locations":[{"lineNumber":281,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":152,"columnNumber":12},"locations":[{"lineNumber":153,"columnNumber":13,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClass","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":49,"columnNumber":12},"locations":[{"lineNumber":50,"columnNumber":13,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":76,"columnNumber":20},"locations":[{"lineNumber":77,"columnNumber":21,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":82,"columnNumber":0},"locations":[{"lineNumber":83,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":83,"columnNumber":0},"locations":[{"lineNumber":84,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":79,"columnNumber":0},"locations":[{"lineNumber":80,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":80,"columnNumber":0},"locations":[{"lineNumber":81,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":789,"columnNumber":30},"locations":[{"lineNumber":790,"columnNumber":31,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":790,"columnNumber":0},"locations":[{"lineNumber":791,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFullyQualifiedClassName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":791,"columnNumber":0},"locations":[{"lineNumber":792,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":679,"columnNumber":50},"locations":[{"lineNumber":680,"columnNumber":51,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":368,"columnNumber":21},"locations":[{"lineNumber":369,"columnNumber":22,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":369,"columnNumber":0},"locations":[{"lineNumber":370,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isCustomType","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":370,"columnNumber":0},"locations":[{"lineNumber":371,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":17,"columnNumber":18},"locations":[{"lineNumber":18,"columnNumber":19,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"locations":[]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":18,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":19,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":39},"locations":[{"lineNumber":865,"columnNumber":40,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOwnScriptImports","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":849,"columnNumber":23},"locations":[{"lineNumber":850,"columnNumber":24,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":421,"columnNumber":21},"locations":[{"lineNumber":422,"columnNumber":22,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":851,"columnNumber":31},"locations":[{"lineNumber":852,"columnNumber":32,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":853,"columnNumber":0},"locations":[{"lineNumber":854,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":854,"columnNumber":0},"locations":[{"lineNumber":855,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":24},"locations":[{"lineNumber":69,"columnNumber":25,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":0},"locations":[{"lineNumber":71,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":71,"columnNumber":0},"locations":[{"lineNumber":72,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":24},"locations":[{"lineNumber":110,"columnNumber":25,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":12,"columnNumber":0},"locations":[{"lineNumber":13,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":13,"columnNumber":0},"locations":[{"lineNumber":14,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":8},"locations":[{"lineNumber":12,"columnNumber":9,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\PluginInterface.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":15,"columnNumber":84},"locations":[{"lineNumber":16,"columnNumber":85,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\PluginInterface.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":19},"locations":[{"lineNumber":36,"columnNumber":20,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":16},"locations":[{"lineNumber":26,"columnNumber":17,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"walkFiles","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":35,"columnNumber":13},"locations":[{"lineNumber":36,"columnNumber":14,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":36,"columnNumber":43},"locations":[{"lineNumber":37,"columnNumber":44,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":43,"columnNumber":26},"locations":[{"lineNumber":44,"columnNumber":27,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":81,"columnNumber":0},"locations":[{"lineNumber":82,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":82,"columnNumber":0},"locations":[{"lineNumber":83,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":75,"columnNumber":0},"locations":[{"lineNumber":76,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":76,"columnNumber":0},"locations":[{"lineNumber":77,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":83,"columnNumber":0},"locations":[{"lineNumber":84,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":77,"columnNumber":0},"locations":[{"lineNumber":78,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":13},"locations":[{"lineNumber":45,"columnNumber":14,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":47,"columnNumber":0},"locations":[{"lineNumber":48,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":48,"columnNumber":0},"locations":[{"lineNumber":49,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":49,"columnNumber":0},"locations":[{"lineNumber":50,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":50,"columnNumber":0},"locations":[{"lineNumber":51,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":27},"locations":[{"lineNumber":244,"columnNumber":28,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":110,"columnNumber":0},"locations":[{"lineNumber":111,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":111,"columnNumber":0},"locations":[{"lineNumber":112,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":252,"columnNumber":0},"locations":[{"lineNumber":253,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":253,"columnNumber":0},"locations":[{"lineNumber":254,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":256,"columnNumber":0},"locations":[{"lineNumber":257,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":257,"columnNumber":0},"locations":[{"lineNumber":258,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":18},"locations":[{"lineNumber":25,"columnNumber":19,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":27,"columnNumber":0},"locations":[{"lineNumber":28,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":24,"columnNumber":0},"locations":[{"lineNumber":25,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":18},"locations":[{"lineNumber":27,"columnNumber":19,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":28,"columnNumber":0},"locations":[{"lineNumber":29,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":29,"columnNumber":0},"locations":[{"lineNumber":30,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnum","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":67,"columnNumber":11},"locations":[{"lineNumber":68,"columnNumber":12,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":106,"columnNumber":19},"locations":[{"lineNumber":107,"columnNumber":20,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":109,"columnNumber":0},"locations":[{"lineNumber":110,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":110,"columnNumber":0},"locations":[{"lineNumber":111,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":112,"columnNumber":0},"locations":[{"lineNumber":113,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":113,"columnNumber":0},"locations":[{"lineNumber":114,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnumMap","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":219,"columnNumber":14},"locations":[{"lineNumber":220,"columnNumber":15,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":0},"locations":[{"lineNumber":43,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":43,"columnNumber":0},"locations":[{"lineNumber":44,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":0},"locations":[{"lineNumber":42,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get namespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":29},"locations":[{"lineNumber":176,"columnNumber":30,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":202,"columnNumber":0},"locations":[{"lineNumber":203,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":203,"columnNumber":0},"locations":[{"lineNumber":204,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":194,"columnNumber":0},"locations":[{"lineNumber":195,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":195,"columnNumber":0},"locations":[{"lineNumber":196,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":180,"columnNumber":0},"locations":[{"lineNumber":181,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":181,"columnNumber":0},"locations":[{"lineNumber":182,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":215,"columnNumber":0},"locations":[{"lineNumber":216,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":216,"columnNumber":0},"locations":[{"lineNumber":217,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":208,"columnNumber":0},"locations":[{"lineNumber":209,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":209,"columnNumber":0},"locations":[{"lineNumber":210,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":24},"locations":[{"lineNumber":140,"columnNumber":25,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":18,"columnNumber":0},"locations":[{"lineNumber":19,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isBrsFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":19,"columnNumber":0},"locations":[{"lineNumber":20,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":39},"locations":[{"lineNumber":542,"columnNumber":40,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":546,"columnNumber":0},"locations":[{"lineNumber":547,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":547,"columnNumber":0},"locations":[{"lineNumber":548,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":544,"columnNumber":0},"locations":[{"lineNumber":545,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":545,"columnNumber":0},"locations":[{"lineNumber":546,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":36},"locations":[{"lineNumber":342,"columnNumber":37,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":352,"columnNumber":0},"locations":[{"lineNumber":353,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":353,"columnNumber":0},"locations":[{"lineNumber":354,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":19},"locations":[{"lineNumber":380,"columnNumber":20,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOwnCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":434,"columnNumber":19},"locations":[{"lineNumber":435,"columnNumber":20,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"isXmlFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":21,"columnNumber":18},"locations":[{"lineNumber":22,"columnNumber":19,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":22,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":23,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":668,"columnNumber":0},"locations":[{"lineNumber":669,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":606,"columnNumber":19},"locations":[{"lineNumber":607,"columnNumber":20,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get symbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":589,"columnNumber":19},"locations":[{"lineNumber":590,"columnNumber":20,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":590,"columnNumber":50},"locations":[{"lineNumber":591,"columnNumber":51,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":20},"locations":[{"lineNumber":92,"columnNumber":21,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":75,"columnNumber":13},"locations":[{"lineNumber":76,"columnNumber":14,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":78,"columnNumber":0},"locations":[{"lineNumber":79,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":79,"columnNumber":0},"locations":[{"lineNumber":80,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":107,"columnNumber":15},"locations":[{"lineNumber":108,"columnNumber":16,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":108,"columnNumber":59},"locations":[{"lineNumber":109,"columnNumber":60,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":333,"columnNumber":15},"locations":[{"lineNumber":334,"columnNumber":16,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":334,"columnNumber":50},"locations":[{"lineNumber":335,"columnNumber":51,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":65,"columnNumber":22},"locations":[{"lineNumber":66,"columnNumber":23,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":139,"columnNumber":22},"locations":[{"lineNumber":140,"columnNumber":23,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":146,"columnNumber":0},"locations":[{"lineNumber":147,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":147,"columnNumber":0},"locations":[{"lineNumber":148,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":148,"columnNumber":0},"locations":[{"lineNumber":149,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":155,"columnNumber":0},"locations":[{"lineNumber":156,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":156,"columnNumber":0},"locations":[{"lineNumber":157,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":141,"columnNumber":0},"locations":[{"lineNumber":142,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":142,"columnNumber":0},"locations":[{"lineNumber":143,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":401,"columnNumber":20},"locations":[{"lineNumber":402,"columnNumber":21,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":402,"columnNumber":0},"locations":[{"lineNumber":403,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFileByPkgPath","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":403,"columnNumber":0},"locations":[{"lineNumber":404,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":14,"columnNumber":26},"locations":[{"lineNumber":15,"columnNumber":27,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":252,"columnNumber":26},"locations":[{"lineNumber":253,"columnNumber":27,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":255,"columnNumber":0},"locations":[{"lineNumber":256,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get dependencyGraphKey","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":256,"columnNumber":0},"locations":[{"lineNumber":257,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":108,"columnNumber":0},"locations":[{"lineNumber":109,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Logger.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Logger.js","sourceReference":0}}]},{"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":109,"columnNumber":0},"locations":[{"lineNumber":110,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Logger.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Logger.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":38,"columnNumber":0},"locations":[{"lineNumber":39,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":39,"columnNumber":0},"locations":[{"lineNumber":40,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":73,"columnNumber":0},"locations":[{"lineNumber":74,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":74,"columnNumber":0},"locations":[{"lineNumber":75,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":24,"columnNumber":0},"locations":[{"lineNumber":25,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":691,"columnNumber":0},"locations":[{"lineNumber":692,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":692,"columnNumber":0},"locations":[{"lineNumber":693,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":337,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":338,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":532,"columnNumber":28},"locations":[{"lineNumber":533,"columnNumber":29,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasFile","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":909,"columnNumber":11},"locations":[{"lineNumber":910,"columnNumber":12,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOwnFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":118,"columnNumber":15},"locations":[{"lineNumber":119,"columnNumber":16,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":119,"columnNumber":50},"locations":[{"lineNumber":120,"columnNumber":51,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":578,"columnNumber":0},"locations":[{"lineNumber":579,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":579,"columnNumber":0},"locations":[{"lineNumber":580,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":337,"columnNumber":0},"locations":[{"lineNumber":338,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":338,"columnNumber":0},"locations":[{"lineNumber":339,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":0},"locations":[{"lineNumber":542,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":542,"columnNumber":0},"locations":[{"lineNumber":543,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":577,"columnNumber":0},"locations":[{"lineNumber":578,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":77,"columnNumber":0},"locations":[{"lineNumber":78,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":347,"columnNumber":0},"locations":[{"lineNumber":348,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":348,"columnNumber":0},"locations":[{"lineNumber":349,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":72,"columnNumber":0},"locations":[{"lineNumber":73,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":46,"columnNumber":0},"locations":[{"lineNumber":47,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":575,"columnNumber":0},"locations":[{"lineNumber":576,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":576,"columnNumber":0},"locations":[{"lineNumber":577,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":18},"locations":[{"lineNumber":145,"columnNumber":19,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":144,"columnNumber":0},"locations":[{"lineNumber":145,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":145,"columnNumber":0},"locations":[{"lineNumber":146,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":394,"columnNumber":43},"locations":[{"lineNumber":395,"columnNumber":44,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":25},"locations":[{"lineNumber":564,"columnNumber":26,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":470,"columnNumber":0},"locations":[{"lineNumber":471,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":471,"columnNumber":0},"locations":[{"lineNumber":472,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":634,"columnNumber":0},"locations":[{"lineNumber":635,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":635,"columnNumber":0},"locations":[{"lineNumber":636,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":636,"columnNumber":0},"locations":[{"lineNumber":637,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getParentScope","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":18},"locations":[{"lineNumber":22,"columnNumber":19,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":22,"columnNumber":50},"locations":[{"lineNumber":23,"columnNumber":51,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getComponentScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":254,"columnNumber":21},"locations":[{"lineNumber":255,"columnNumber":22,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getComponent","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":117,"columnNumber":16},"locations":[{"lineNumber":118,"columnNumber":17,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getComponent","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":122,"columnNumber":0},"locations":[{"lineNumber":123,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getComponent","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":123,"columnNumber":0},"locations":[{"lineNumber":124,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":486,"columnNumber":0},"locations":[{"lineNumber":487,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":487,"columnNumber":0},"locations":[{"lineNumber":488,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":14,"columnNumber":0},"locations":[{"lineNumber":15,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Cache.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Cache.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":82,"columnNumber":0},"locations":[{"lineNumber":83,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":83,"columnNumber":0},"locations":[{"lineNumber":84,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":76,"columnNumber":0},"locations":[{"lineNumber":77,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":533,"columnNumber":0},"locations":[{"lineNumber":534,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":534,"columnNumber":0},"locations":[{"lineNumber":535,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":761,"columnNumber":0},"locations":[{"lineNumber":762,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":20},"locations":[{"lineNumber":20,"columnNumber":21,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":66},"locations":[{"lineNumber":9,"columnNumber":67,"source":{"name":"benchmarks/node_modules/vscode-languageserver/lib/node/main.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver\\lib\\node\\main.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":8,"columnNumber":0},"locations":[{"lineNumber":9,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-languageserver/lib/node/main.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver\\lib\\node\\main.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"590","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver/lib/node/main.js","lineNumber":9,"columnNumber":0},"locations":[{"lineNumber":10,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-languageserver/lib/node/main.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver\\lib\\node\\main.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":484,"columnNumber":0},"locations":[{"lineNumber":485,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":485,"columnNumber":0},"locations":[{"lineNumber":486,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":27,"columnNumber":0},"locations":[{"lineNumber":28,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":293,"columnNumber":28},"locations":[{"lineNumber":294,"columnNumber":29,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":378,"columnNumber":21},"locations":[{"lineNumber":379,"columnNumber":22,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"URI","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":140,"columnNumber":20},"locations":[{"lineNumber":141,"columnNumber":21,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":25},"locations":[{"lineNumber":60,"columnNumber":26,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":81,"columnNumber":0},"locations":[{"lineNumber":82,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":82,"columnNumber":0},"locations":[{"lineNumber":83,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":736,"columnNumber":0},"locations":[{"lineNumber":737,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":737,"columnNumber":0},"locations":[{"lineNumber":738,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":633,"columnNumber":0},"locations":[{"lineNumber":634,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":47},"locations":[{"lineNumber":801,"columnNumber":48,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":807,"columnNumber":0},"locations":[{"lineNumber":808,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":808,"columnNumber":0},"locations":[{"lineNumber":809,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":549,"columnNumber":0},"locations":[{"lineNumber":550,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":550,"columnNumber":0},"locations":[{"lineNumber":551,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"scopeFunctionShadowedByBuiltInFunction","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":553,"columnNumber":44},"locations":[{"lineNumber":554,"columnNumber":45,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":66},"locations":[{"lineNumber":8,"columnNumber":67,"source":{"name":"benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver-protocol\\lib\\node\\main.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":7,"columnNumber":0},"locations":[{"lineNumber":8,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver-protocol\\lib\\node\\main.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"593","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","lineNumber":8,"columnNumber":0},"locations":[{"lineNumber":9,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-languageserver-protocol/lib/node/main.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver-protocol\\lib\\node\\main.js","sourceReference":0}}]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":369,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":370,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":343,"columnNumber":0},"locations":[{"lineNumber":344,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":344,"columnNumber":0},"locations":[{"lineNumber":345,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":268,"columnNumber":0},"locations":[{"lineNumber":269,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":269,"columnNumber":0},"locations":[{"lineNumber":270,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":459,"columnNumber":0},"locations":[{"lineNumber":460,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":460,"columnNumber":0},"locations":[{"lineNumber":461,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":549,"columnNumber":0},"locations":[{"lineNumber":550,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":550,"columnNumber":0},"locations":[{"lineNumber":551,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":303,"columnNumber":0},"locations":[{"lineNumber":304,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":304,"columnNumber":0},"locations":[{"lineNumber":305,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":341,"columnNumber":0},"locations":[{"lineNumber":342,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":342,"columnNumber":0},"locations":[{"lineNumber":343,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":379,"columnNumber":0},"locations":[{"lineNumber":380,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":380,"columnNumber":0},"locations":[{"lineNumber":381,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":498,"columnNumber":33},"locations":[{"lineNumber":499,"columnNumber":34,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":512,"columnNumber":0},"locations":[{"lineNumber":513,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":513,"columnNumber":0},"locations":[{"lineNumber":514,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":64},"locations":[{"lineNumber":500,"columnNumber":65,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":506,"columnNumber":0},"locations":[{"lineNumber":507,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":507,"columnNumber":0},"locations":[{"lineNumber":508,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"afterProgramValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":38,"columnNumber":24},"locations":[{"lineNumber":39,"columnNumber":25,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"afterProgramValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":40,"columnNumber":0},"locations":[{"lineNumber":41,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"afterProgramValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":41,"columnNumber":0},"locations":[{"lineNumber":42,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":727,"columnNumber":0},"locations":[{"lineNumber":728,"columnNumber":1,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":728,"columnNumber":0},"locations":[{"lineNumber":729,"columnNumber":1,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":107,"columnNumber":0},"locations":[{"lineNumber":108,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getEnumFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":108,"columnNumber":0},"locations":[{"lineNumber":109,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":220,"columnNumber":46},"locations":[{"lineNumber":221,"columnNumber":47,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":398,"columnNumber":0},"locations":[{"lineNumber":399,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_URI.toString","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":399,"columnNumber":0},"locations":[{"lineNumber":400,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":482,"columnNumber":0},"locations":[{"lineNumber":483,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":483,"columnNumber":0},"locations":[{"lineNumber":484,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":465,"columnNumber":0},"locations":[{"lineNumber":466,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":466,"columnNumber":0},"locations":[{"lineNumber":467,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":469,"columnNumber":0},"locations":[{"lineNumber":470,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":184,"columnNumber":0},"locations":[{"lineNumber":185,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":185,"columnNumber":0},"locations":[{"lineNumber":186,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":186,"columnNumber":0},"locations":[{"lineNumber":187,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":187,"columnNumber":0},"locations":[{"lineNumber":188,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":267,"columnNumber":28},"locations":[{"lineNumber":268,"columnNumber":29,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":268,"columnNumber":0},"locations":[{"lineNumber":269,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isLiteralExpression","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":269,"columnNumber":0},"locations":[{"lineNumber":270,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":268,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":269,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":663,"columnNumber":0},"locations":[{"lineNumber":664,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":664,"columnNumber":0},"locations":[{"lineNumber":665,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":77,"columnNumber":0},"locations":[{"lineNumber":78,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getClassFileLink","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":78,"columnNumber":0},"locations":[{"lineNumber":79,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":743,"columnNumber":0},"locations":[{"lineNumber":744,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":744,"columnNumber":0},"locations":[{"lineNumber":745,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":886,"columnNumber":0},"locations":[{"lineNumber":887,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":887,"columnNumber":0},"locations":[{"lineNumber":888,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFileByRelativePath","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":894,"columnNumber":25},"locations":[{"lineNumber":895,"columnNumber":26,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFileByRelativePath","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":900,"columnNumber":0},"locations":[{"lineNumber":901,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getFileByRelativePath","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":901,"columnNumber":0},"locations":[{"lineNumber":902,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":438,"columnNumber":31},"locations":[{"lineNumber":439,"columnNumber":32,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":440,"columnNumber":0},"locations":[{"lineNumber":441,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":441,"columnNumber":0},"locations":[{"lineNumber":442,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":68,"columnNumber":0},"locations":[{"lineNumber":69,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":69,"columnNumber":0},"locations":[{"lineNumber":70,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":554,"columnNumber":0},"locations":[{"lineNumber":555,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":555,"columnNumber":0},"locations":[{"lineNumber":556,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":559,"columnNumber":0},"locations":[{"lineNumber":560,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":560,"columnNumber":0},"locations":[{"lineNumber":561,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":345,"columnNumber":0},"locations":[{"lineNumber":346,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":346,"columnNumber":0},"locations":[{"lineNumber":347,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":349,"columnNumber":0},"locations":[{"lineNumber":350,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"getCallableContainersByLowerName","scriptId":"652","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/util.js","lineNumber":350,"columnNumber":0},"locations":[{"lineNumber":351,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/util.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\util.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":409,"columnNumber":0},"locations":[{"lineNumber":410,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":410,"columnNumber":0},"locations":[{"lineNumber":411,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":31},"locations":[{"lineNumber":46,"columnNumber":32,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":45,"columnNumber":0},"locations":[{"lineNumber":46,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":46,"columnNumber":0},"locations":[{"lineNumber":47,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":619,"columnNumber":21},"locations":[{"lineNumber":620,"columnNumber":22,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":179,"columnNumber":0},"locations":[{"lineNumber":180,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":180,"columnNumber":0},"locations":[{"lineNumber":181,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOrAdd","scriptId":"688","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Cache.js","lineNumber":15,"columnNumber":0},"locations":[{"lineNumber":16,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Cache.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Cache.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":595,"columnNumber":0},"locations":[{"lineNumber":596,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":596,"columnNumber":0},"locations":[{"lineNumber":597,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":94,"columnNumber":0},"locations":[{"lineNumber":95,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":95,"columnNumber":0},"locations":[{"lineNumber":96,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":78,"columnNumber":0},"locations":[{"lineNumber":79,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":79,"columnNumber":0},"locations":[{"lineNumber":80,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":92,"columnNumber":0},"locations":[{"lineNumber":93,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":93,"columnNumber":0},"locations":[{"lineNumber":94,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":80,"columnNumber":0},"locations":[{"lineNumber":81,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":81,"columnNumber":0},"locations":[{"lineNumber":82,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":77,"columnNumber":0},"locations":[{"lineNumber":78,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":83,"columnNumber":0},"locations":[{"lineNumber":84,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":84,"columnNumber":0},"locations":[{"lineNumber":85,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":12,"columnNumber":0},"locations":[{"lineNumber":13,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":13,"columnNumber":0},"locations":[{"lineNumber":14,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":499,"columnNumber":0},"locations":[{"lineNumber":500,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateComponentNames","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":500,"columnNumber":0},"locations":[{"lineNumber":501,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":325,"columnNumber":15},"locations":[{"lineNumber":326,"columnNumber":16,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":18,"columnNumber":0},"locations":[{"lineNumber":19,"columnNumber":1,"source":{"name":"benchmarks/targets/validate.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\targets\\validate.js","sourceReference":0}}]},{"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":19,"columnNumber":0},"locations":[{"lineNumber":20,"columnNumber":1,"source":{"name":"benchmarks/targets/validate.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\targets\\validate.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":12,"columnNumber":0},"locations":[{"lineNumber":13,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":13,"columnNumber":0},"locations":[{"lineNumber":14,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":802,"columnNumber":0},"locations":[{"lineNumber":803,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":803,"columnNumber":0},"locations":[{"lineNumber":804,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":27,"columnNumber":0},"locations":[{"lineNumber":28,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateClasses","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":712,"columnNumber":19},"locations":[{"lineNumber":713,"columnNumber":20,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":13,"columnNumber":12},"locations":[{"lineNumber":14,"columnNumber":13,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"verifyNewExpressions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":42,"columnNumber":24},"locations":[{"lineNumber":43,"columnNumber":25,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":40,"columnNumber":0},"locations":[{"lineNumber":41,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":661,"columnNumber":0},"locations":[{"lineNumber":662,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":662,"columnNumber":0},"locations":[{"lineNumber":663,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":690,"columnNumber":0},"locations":[{"lineNumber":691,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":809,"columnNumber":0},"locations":[{"lineNumber":810,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":810,"columnNumber":0},"locations":[{"lineNumber":811,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":80,"columnNumber":0},"locations":[{"lineNumber":81,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":85,"columnNumber":0},"locations":[{"lineNumber":86,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":86,"columnNumber":0},"locations":[{"lineNumber":87,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":732,"columnNumber":0},"locations":[{"lineNumber":733,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":733,"columnNumber":0},"locations":[{"lineNumber":734,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":895,"columnNumber":0},"locations":[{"lineNumber":896,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":896,"columnNumber":0},"locations":[{"lineNumber":897,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":49,"columnNumber":0},"locations":[{"lineNumber":50,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":50,"columnNumber":0},"locations":[{"lineNumber":51,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":12,"columnNumber":0},"locations":[{"lineNumber":13,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":13,"columnNumber":0},"locations":[{"lineNumber":14,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":112,"columnNumber":0},"locations":[{"lineNumber":113,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":113,"columnNumber":0},"locations":[{"lineNumber":114,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":176,"columnNumber":0},"locations":[{"lineNumber":177,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":177,"columnNumber":0},"locations":[{"lineNumber":178,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":3,"columnNumber":0},"locations":[{"lineNumber":4,"columnNumber":1,"source":{"name":"/VM46947596","path":"/VM46947596","sourceReference":46947596}}]},{"callFrame":{"functionName":"d16585506126231.fn","scriptId":"822","url":"","lineNumber":4,"columnNumber":0},"locations":[{"lineNumber":5,"columnNumber":1,"source":{"name":"/VM46947596","path":"/VM46947596","sourceReference":46947596}}]},{"callFrame":{"functionName":"","scriptId":"850","url":"","lineNumber":0,"columnNumber":19},"locations":[{"lineNumber":1,"columnNumber":20,"source":{"name":"/VM46947602","path":"/VM46947602","sourceReference":46947602}}]},{"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":273},"locations":[{"lineNumber":4,"columnNumber":274,"source":{"name":"/VM46947602","path":"/VM46947602","sourceReference":46947602}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":567,"columnNumber":0},"locations":[{"lineNumber":568,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":568,"columnNumber":0},"locations":[{"lineNumber":569,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":411,"columnNumber":0},"locations":[{"lineNumber":412,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":17},"locations":[{"lineNumber":71,"columnNumber":18,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":70,"columnNumber":0},"locations":[{"lineNumber":71,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":71,"columnNumber":0},"locations":[{"lineNumber":72,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":24,"columnNumber":0},"locations":[{"lineNumber":25,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":51,"columnNumber":0},"locations":[{"lineNumber":52,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":52,"columnNumber":0},"locations":[{"lineNumber":53,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":491,"columnNumber":0},"locations":[{"lineNumber":492,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":492,"columnNumber":0},"locations":[{"lineNumber":493,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":464,"columnNumber":0},"locations":[{"lineNumber":465,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":193,"columnNumber":0},"locations":[{"lineNumber":194,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"unknownBrightScriptComponent","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":668,"columnNumber":34},"locations":[{"lineNumber":669,"columnNumber":35,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"unknownBrightScriptComponent","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":669,"columnNumber":0},"locations":[{"lineNumber":670,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"unknownBrightScriptComponent","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":670,"columnNumber":0},"locations":[{"lineNumber":671,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":7,"columnNumber":66},"locations":[{"lineNumber":8,"columnNumber":67,"source":{"name":"benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver-protocol\\lib\\common\\api.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":7,"columnNumber":0},"locations":[{"lineNumber":8,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver-protocol\\lib\\common\\api.js","sourceReference":0}}]},{"callFrame":{"functionName":"get","scriptId":"610","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","lineNumber":8,"columnNumber":0},"locations":[{"lineNumber":9,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-languageserver-protocol/lib/common/api.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-languageserver-protocol\\lib\\common\\api.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":340,"columnNumber":0},"locations":[{"lineNumber":341,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":341,"columnNumber":0},"locations":[{"lineNumber":342,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":552,"columnNumber":0},"locations":[{"lineNumber":553,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":553,"columnNumber":0},"locations":[{"lineNumber":554,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":539,"columnNumber":0},"locations":[{"lineNumber":540,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":540,"columnNumber":0},"locations":[{"lineNumber":541,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"689","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/globalCallables.js","lineNumber":995,"columnNumber":39},"locations":[{"lineNumber":996,"columnNumber":40,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/globalCallables.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\globalCallables.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"689","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/globalCallables.js","lineNumber":995,"columnNumber":0},"locations":[{"lineNumber":996,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/globalCallables.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\globalCallables.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"689","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/globalCallables.js","lineNumber":996,"columnNumber":0},"locations":[{"lineNumber":997,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/globalCallables.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\globalCallables.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":18,"columnNumber":0},"locations":[{"lineNumber":19,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":19,"columnNumber":0},"locations":[{"lineNumber":20,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":34,"columnNumber":0},"locations":[{"lineNumber":35,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":35,"columnNumber":0},"locations":[{"lineNumber":36,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":18,"columnNumber":0},"locations":[{"lineNumber":19,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":19,"columnNumber":0},"locations":[{"lineNumber":20,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":383,"columnNumber":0},"locations":[{"lineNumber":384,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":384,"columnNumber":0},"locations":[{"lineNumber":385,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":35,"columnNumber":0},"locations":[{"lineNumber":36,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":36,"columnNumber":0},"locations":[{"lineNumber":37,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":609,"columnNumber":0},"locations":[{"lineNumber":610,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":610,"columnNumber":0},"locations":[{"lineNumber":611,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":82,"columnNumber":0},"locations":[{"lineNumber":83,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parser","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":169,"columnNumber":14},"locations":[{"lineNumber":170,"columnNumber":15,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parser","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":170,"columnNumber":0},"locations":[{"lineNumber":171,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parser","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":171,"columnNumber":0},"locations":[{"lineNumber":172,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":26,"columnNumber":14},"locations":[{"lineNumber":27,"columnNumber":15,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":27,"columnNumber":0},"locations":[{"lineNumber":28,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"pushParent","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":28,"columnNumber":0},"locations":[{"lineNumber":29,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"invalidate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":584,"columnNumber":14},"locations":[{"lineNumber":585,"columnNumber":15,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"invalidate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":587,"columnNumber":0},"locations":[{"lineNumber":588,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"invalidate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":588,"columnNumber":0},"locations":[{"lineNumber":589,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getSymbolTable","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":146,"columnNumber":0},"locations":[{"lineNumber":147,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"878","url":"","lineNumber":0,"columnNumber":19},"locations":[{"lineNumber":1,"columnNumber":20,"source":{"name":"/VM46947608","path":"/VM46947608","sourceReference":46947608}}]},{"callFrame":{"functionName":"d16585506126235.fn","scriptId":"878","url":"","lineNumber":3,"columnNumber":273},"locations":[{"lineNumber":4,"columnNumber":274,"source":{"name":"/VM46947608","path":"/VM46947608","sourceReference":46947608}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":681,"columnNumber":0},"locations":[{"lineNumber":682,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":682,"columnNumber":0},"locations":[{"lineNumber":683,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":245,"columnNumber":145},"locations":[{"lineNumber":246,"columnNumber":146,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":374,"columnNumber":0},"locations":[{"lineNumber":375,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":375,"columnNumber":0},"locations":[{"lineNumber":376,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"reset","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":30,"columnNumber":9},"locations":[{"lineNumber":31,"columnNumber":10,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"reset","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":31,"columnNumber":0},"locations":[{"lineNumber":32,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"reset","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":32,"columnNumber":0},"locations":[{"lineNumber":33,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":21,"columnNumber":0},"locations":[{"lineNumber":22,"columnNumber":1,"source":{"name":"benchmarks/targets/validate.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\targets\\validate.js","sourceReference":0}}]},{"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":22,"columnNumber":0},"locations":[{"lineNumber":23,"columnNumber":1,"source":{"name":"benchmarks/targets/validate.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\targets\\validate.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":327,"columnNumber":0},"locations":[{"lineNumber":328,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":328,"columnNumber":0},"locations":[{"lineNumber":329,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"689","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/globalCallables.js","lineNumber":997,"columnNumber":0},"locations":[{"lineNumber":998,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/globalCallables.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\globalCallables.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":39,"columnNumber":0},"locations":[{"lineNumber":40,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":40,"columnNumber":0},"locations":[{"lineNumber":41,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":800,"columnNumber":0},"locations":[{"lineNumber":801,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":801,"columnNumber":0},"locations":[{"lineNumber":802,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":47,"columnNumber":0},"locations":[{"lineNumber":48,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":48,"columnNumber":0},"locations":[{"lineNumber":49,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":80,"columnNumber":0},"locations":[{"lineNumber":81,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"addSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":81,"columnNumber":0},"locations":[{"lineNumber":82,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":220,"columnNumber":0},"locations":[{"lineNumber":221,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":221,"columnNumber":0},"locations":[{"lineNumber":222,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":71,"columnNumber":0},"locations":[{"lineNumber":72,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":425,"columnNumber":0},"locations":[{"lineNumber":426,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":426,"columnNumber":0},"locations":[{"lineNumber":427,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":84,"columnNumber":0},"locations":[{"lineNumber":85,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":59,"columnNumber":0},"locations":[{"lineNumber":60,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":60,"columnNumber":0},"locations":[{"lineNumber":61,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":28,"columnNumber":0},"locations":[{"lineNumber":29,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"processEvent","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":29,"columnNumber":0},"locations":[{"lineNumber":30,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":107,"columnNumber":0},"locations":[{"lineNumber":108,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":108,"columnNumber":0},"locations":[{"lineNumber":109,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":111,"columnNumber":0},"locations":[{"lineNumber":112,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":47,"columnNumber":0},"locations":[{"lineNumber":48,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":48,"columnNumber":0},"locations":[{"lineNumber":49,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":109,"columnNumber":0},"locations":[{"lineNumber":110,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":110,"columnNumber":0},"locations":[{"lineNumber":111,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":333,"columnNumber":0},"locations":[{"lineNumber":334,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":334,"columnNumber":0},"locations":[{"lineNumber":335,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":790,"columnNumber":0},"locations":[{"lineNumber":791,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":791,"columnNumber":0},"locations":[{"lineNumber":792,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":46,"columnNumber":0},"locations":[{"lineNumber":47,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":178,"columnNumber":0},"locations":[{"lineNumber":179,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":179,"columnNumber":0},"locations":[{"lineNumber":180,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":122,"columnNumber":0},"locations":[{"lineNumber":123,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":123,"columnNumber":0},"locations":[{"lineNumber":124,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":189,"columnNumber":0},"locations":[{"lineNumber":190,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":190,"columnNumber":0},"locations":[{"lineNumber":191,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":188,"columnNumber":0},"locations":[{"lineNumber":189,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":210,"columnNumber":0},"locations":[{"lineNumber":211,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":211,"columnNumber":0},"locations":[{"lineNumber":212,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":19,"columnNumber":0},"locations":[{"lineNumber":20,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"cannotFindName","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":20,"columnNumber":0},"locations":[{"lineNumber":21,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":243,"columnNumber":0},"locations":[{"lineNumber":244,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":244,"columnNumber":0},"locations":[{"lineNumber":245,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":569,"columnNumber":0},"locations":[{"lineNumber":570,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":570,"columnNumber":0},"locations":[{"lineNumber":571,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":812,"columnNumber":0},"locations":[{"lineNumber":813,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":813,"columnNumber":0},"locations":[{"lineNumber":814,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":804,"columnNumber":0},"locations":[{"lineNumber":805,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":805,"columnNumber":0},"locations":[{"lineNumber":806,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":822,"columnNumber":0},"locations":[{"lineNumber":823,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":823,"columnNumber":0},"locations":[{"lineNumber":824,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":814,"columnNumber":0},"locations":[{"lineNumber":815,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":815,"columnNumber":0},"locations":[{"lineNumber":816,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":574,"columnNumber":0},"locations":[{"lineNumber":575,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":411,"columnNumber":0},"locations":[{"lineNumber":412,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":412,"columnNumber":0},"locations":[{"lineNumber":413,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":77,"columnNumber":0},"locations":[{"lineNumber":78,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":78,"columnNumber":0},"locations":[{"lineNumber":79,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":632,"columnNumber":0},"locations":[{"lineNumber":633,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":724,"columnNumber":0},"locations":[{"lineNumber":725,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":727,"columnNumber":0},"locations":[{"lineNumber":728,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":728,"columnNumber":0},"locations":[{"lineNumber":729,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":729,"columnNumber":0},"locations":[{"lineNumber":730,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":765,"columnNumber":0},"locations":[{"lineNumber":766,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":766,"columnNumber":0},"locations":[{"lineNumber":767,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":767,"columnNumber":0},"locations":[{"lineNumber":768,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":768,"columnNumber":0},"locations":[{"lineNumber":769,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":759,"columnNumber":0},"locations":[{"lineNumber":760,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":760,"columnNumber":0},"locations":[{"lineNumber":761,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":683,"columnNumber":0},"locations":[{"lineNumber":684,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":369,"columnNumber":0},"locations":[{"lineNumber":370,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectInvalidFunctionExpressionTypes","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":370,"columnNumber":0},"locations":[{"lineNumber":371,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":868,"columnNumber":0},"locations":[{"lineNumber":869,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":869,"columnNumber":0},"locations":[{"lineNumber":870,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":899,"columnNumber":0},"locations":[{"lineNumber":900,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":900,"columnNumber":0},"locations":[{"lineNumber":901,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":242,"columnNumber":15},"locations":[{"lineNumber":243,"columnNumber":16,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":243,"columnNumber":0},"locations":[{"lineNumber":244,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":244,"columnNumber":0},"locations":[{"lineNumber":245,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"findClasses","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":245,"columnNumber":0},"locations":[{"lineNumber":246,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":68,"columnNumber":0},"locations":[{"lineNumber":69,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get scriptTagImports","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":69,"columnNumber":0},"locations":[{"lineNumber":70,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"scopeFunctionShadowedByBuiltInFunction","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":553,"columnNumber":0},"locations":[{"lineNumber":554,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"scopeFunctionShadowedByBuiltInFunction","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":554,"columnNumber":0},"locations":[{"lineNumber":555,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":439,"columnNumber":0},"locations":[{"lineNumber":440,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":146,"columnNumber":0},"locations":[{"lineNumber":147,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":147,"columnNumber":0},"locations":[{"lineNumber":148,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":255,"columnNumber":0},"locations":[{"lineNumber":256,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":256,"columnNumber":0},"locations":[{"lineNumber":257,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":149,"columnNumber":0},"locations":[{"lineNumber":150,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":150,"columnNumber":0},"locations":[{"lineNumber":151,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":665,"columnNumber":0},"locations":[{"lineNumber":666,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":54},"locations":[{"lineNumber":43,"columnNumber":55,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":12,"columnNumber":0},"locations":[{"lineNumber":13,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":13,"columnNumber":0},"locations":[{"lineNumber":14,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":882,"columnNumber":0},"locations":[{"lineNumber":883,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":883,"columnNumber":0},"locations":[{"lineNumber":884,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":561,"columnNumber":0},"locations":[{"lineNumber":562,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":562,"columnNumber":0},"locations":[{"lineNumber":563,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":464,"columnNumber":0},"locations":[{"lineNumber":465,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":465,"columnNumber":0},"locations":[{"lineNumber":466,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":138,"columnNumber":0},"locations":[{"lineNumber":139,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Logger.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Logger.js","sourceReference":0}}]},{"callFrame":{"functionName":"time","scriptId":"665","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Logger.js","lineNumber":139,"columnNumber":0},"locations":[{"lineNumber":140,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Logger.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Logger.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parser","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":169,"columnNumber":0},"locations":[{"lineNumber":170,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":524,"columnNumber":0},"locations":[{"lineNumber":525,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":525,"columnNumber":0},"locations":[{"lineNumber":526,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":501,"columnNumber":0},"locations":[{"lineNumber":502,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":502,"columnNumber":0},"locations":[{"lineNumber":503,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":505,"columnNumber":0},"locations":[{"lineNumber":506,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":299,"columnNumber":0},"locations":[{"lineNumber":300,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"URI.file","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":300,"columnNumber":0},"locations":[{"lineNumber":301,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"addDiagnosticOnce","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":231,"columnNumber":21},"locations":[{"lineNumber":232,"columnNumber":22,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":232,"columnNumber":126},"locations":[{"lineNumber":233,"columnNumber":127,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":233,"columnNumber":0},"locations":[{"lineNumber":234,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":234,"columnNumber":0},"locations":[{"lineNumber":235,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":440,"columnNumber":0},"locations":[{"lineNumber":441,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":441,"columnNumber":0},"locations":[{"lineNumber":442,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":382,"columnNumber":0},"locations":[{"lineNumber":383,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":442,"columnNumber":0},"locations":[{"lineNumber":443,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":22,"columnNumber":0},"locations":[{"lineNumber":23,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateOwnFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":23,"columnNumber":0},"locations":[{"lineNumber":24,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":13,"columnNumber":0},"locations":[{"lineNumber":14,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\PluginInterface.js","sourceReference":0}}]},{"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":14,"columnNumber":0},"locations":[{"lineNumber":15,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\PluginInterface.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":16,"columnNumber":0},"locations":[{"lineNumber":17,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\PluginInterface.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":17,"columnNumber":0},"locations":[{"lineNumber":18,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\PluginInterface.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":119,"columnNumber":0},"locations":[{"lineNumber":120,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":120,"columnNumber":0},"locations":[{"lineNumber":121,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":39,"columnNumber":0},"locations":[{"lineNumber":40,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":40,"columnNumber":0},"locations":[{"lineNumber":41,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":175,"columnNumber":0},"locations":[{"lineNumber":176,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":176,"columnNumber":0},"locations":[{"lineNumber":177,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":43,"columnNumber":0},"locations":[{"lineNumber":44,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":44,"columnNumber":0},"locations":[{"lineNumber":45,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":755,"columnNumber":0},"locations":[{"lineNumber":756,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":756,"columnNumber":0},"locations":[{"lineNumber":757,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":630,"columnNumber":0},"locations":[{"lineNumber":631,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":631,"columnNumber":0},"locations":[{"lineNumber":632,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":63,"columnNumber":0},"locations":[{"lineNumber":64,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":64,"columnNumber":0},"locations":[{"lineNumber":65,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":20,"columnNumber":0},"locations":[{"lineNumber":21,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":21,"columnNumber":0},"locations":[{"lineNumber":22,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"fileIsIncludedInAnyScope","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":535,"columnNumber":0},"locations":[{"lineNumber":536,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"getOwnDependencies","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":94,"columnNumber":22},"locations":[{"lineNumber":95,"columnNumber":23,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":491,"columnNumber":0},"locations":[{"lineNumber":492,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":492,"columnNumber":0},"locations":[{"lineNumber":493,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":223,"columnNumber":0},"locations":[{"lineNumber":224,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":224,"columnNumber":0},"locations":[{"lineNumber":225,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"getName","scriptId":"683","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","lineNumber":278,"columnNumber":0},"locations":[{"lineNumber":279,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Statement.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Statement.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectCircularReferences","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":111,"columnNumber":28},"locations":[{"lineNumber":112,"columnNumber":29,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectCircularReferences","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":111,"columnNumber":0},"locations":[{"lineNumber":112,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectCircularReferences","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":112,"columnNumber":0},"locations":[{"lineNumber":113,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"isXmlScope","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":25,"columnNumber":19},"locations":[{"lineNumber":26,"columnNumber":20,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":26,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"get name","scriptId":"0","url":"","lineNumber":27,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"diagnosticDetectDuplicateAncestorScriptImports","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":84,"columnNumber":50},"locations":[{"lineNumber":85,"columnNumber":51,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parentComponent","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":319,"columnNumber":23},"locations":[{"lineNumber":320,"columnNumber":24,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":339,"columnNumber":0},"locations":[{"lineNumber":340,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":41,"columnNumber":0},"locations":[{"lineNumber":42,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":0},"locations":[{"lineNumber":43,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"buildNamespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":451,"columnNumber":24},"locations":[{"lineNumber":452,"columnNumber":25,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"buildNamespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":452,"columnNumber":0},"locations":[{"lineNumber":453,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"buildNamespaceLookup","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":453,"columnNumber":0},"locations":[{"lineNumber":454,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parent","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":332,"columnNumber":14},"locations":[{"lineNumber":333,"columnNumber":15,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parent","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":333,"columnNumber":0},"locations":[{"lineNumber":334,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parent","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":334,"columnNumber":0},"locations":[{"lineNumber":335,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":413,"columnNumber":0},"locations":[{"lineNumber":414,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"enumerateBrsFiles","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":414,"columnNumber":0},"locations":[{"lineNumber":415,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":66,"columnNumber":0},"locations":[{"lineNumber":67,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validateUri","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":67,"columnNumber":0},"locations":[{"lineNumber":68,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":423,"columnNumber":0},"locations":[{"lineNumber":424,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"onScopeValidate","scriptId":"760","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","lineNumber":424,"columnNumber":0},"locations":[{"lineNumber":425,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/BscPlugin.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\BscPlugin.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":423,"columnNumber":0},"locations":[{"lineNumber":424,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllCallables","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":424,"columnNumber":0},"locations":[{"lineNumber":425,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":65,"columnNumber":0},"locations":[{"lineNumber":66,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"findNamespaceNonNamespaceCollisions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":64,"columnNumber":39},"locations":[{"lineNumber":65,"columnNumber":40,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"findNamespaceNonNamespaceCollisions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":64,"columnNumber":0},"locations":[{"lineNumber":65,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"findNamespaceNonNamespaceCollisions","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":65,"columnNumber":0},"locations":[{"lineNumber":66,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":864,"columnNumber":0},"locations":[{"lineNumber":865,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":865,"columnNumber":0},"locations":[{"lineNumber":866,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":17,"columnNumber":0},"locations":[{"lineNumber":18,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":18,"columnNumber":0},"locations":[{"lineNumber":19,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":483,"columnNumber":0},"locations":[{"lineNumber":484,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"(garbage collector)","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"locations":[]},{"callFrame":{"functionName":"(program)","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"locations":[]},{"callFrame":{"functionName":"(idle)","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"locations":[]},{"callFrame":{"functionName":"processTimers","scriptId":"38","url":"internal/timers.js","lineNumber":484,"columnNumber":24},"locations":[{"lineNumber":485,"columnNumber":25,"source":{"name":"/internal/timers.js","path":"/internal/timers.js","sourceReference":2056358770,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"listOnTimeout","scriptId":"38","url":"internal/timers.js","lineNumber":504,"columnNumber":24},"locations":[{"lineNumber":505,"columnNumber":25,"source":{"name":"/internal/timers.js","path":"/internal/timers.js","sourceReference":2056358770,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":2791,"columnNumber":32},"locations":[{"lineNumber":2792,"columnNumber":33,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":732,"columnNumber":29},"locations":[{"lineNumber":733,"columnNumber":30,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"cycle","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1983,"columnNumber":18},"locations":[{"lineNumber":1984,"columnNumber":19,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"emit","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1201,"columnNumber":17},"locations":[{"lineNumber":1202,"columnNumber":18,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"forEach","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":9407,"columnNumber":20},"locations":[{"lineNumber":9408,"columnNumber":21,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"arrayEach","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":524,"columnNumber":20},"locations":[{"lineNumber":525,"columnNumber":21,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1213,"columnNumber":42},"locations":[{"lineNumber":1214,"columnNumber":43,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"update","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1857,"columnNumber":21},"locations":[{"lineNumber":1858,"columnNumber":22,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"startCycle","scriptId":"146","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/target-runner.js","lineNumber":27,"columnNumber":62},"locations":[{"lineNumber":28,"columnNumber":63,"source":{"name":"benchmarks/target-runner.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\target-runner.js","sourceReference":0}}]},{"callFrame":{"functionName":"Writable.write","scriptId":"90","url":"internal/streams/writable.js","lineNumber":257,"columnNumber":35},"locations":[{"lineNumber":258,"columnNumber":36,"source":{"name":"/internal/streams/writable.js","path":"/internal/streams/writable.js","sourceReference":99910672,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"writeOrBuffer","scriptId":"90","url":"internal/streams/writable.js","lineNumber":333,"columnNumber":22},"locations":[{"lineNumber":334,"columnNumber":23,"source":{"name":"/internal/streams/writable.js","path":"/internal/streams/writable.js","sourceReference":99910672,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"Socket._write","scriptId":"81","url":"net.js","lineNumber":808,"columnNumber":34},"locations":[{"lineNumber":809,"columnNumber":35,"source":{"name":"/net.js","path":"/net.js","sourceReference":1603489257,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"Socket._writeGeneric","scriptId":"81","url":"net.js","lineNumber":771,"columnNumber":41},"locations":[{"lineNumber":772,"columnNumber":42,"source":{"name":"/net.js","path":"/net.js","sourceReference":1603489257,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"writeGeneric","scriptId":"95","url":"internal/stream_base_commons.js","lineNumber":142,"columnNumber":21},"locations":[{"lineNumber":143,"columnNumber":22,"source":{"name":"/internal/stream_base_commons.js","path":"/internal/stream_base_commons.js","sourceReference":169077143,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"handleWriteReq","scriptId":"95","url":"internal/stream_base_commons.js","lineNumber":46,"columnNumber":23},"locations":[{"lineNumber":47,"columnNumber":24,"source":{"name":"/internal/stream_base_commons.js","path":"/internal/stream_base_commons.js","sourceReference":169077143,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"writeUtf8String","scriptId":"0","url":"","lineNumber":-1,"columnNumber":-1},"locations":[]},{"callFrame":{"functionName":"writeUtf8String","scriptId":"0","url":"","lineNumber":62,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"writeUtf8String","scriptId":"0","url":"","lineNumber":63,"columnNumber":0},"locations":[]},{"callFrame":{"functionName":"getNext","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":867,"columnNumber":22},"locations":[{"lineNumber":868,"columnNumber":23,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"evaluate","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1888,"columnNumber":23},"locations":[{"lineNumber":1889,"columnNumber":24,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"getMean","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":568,"columnNumber":20},"locations":[{"lineNumber":569,"columnNumber":21,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"reduce","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":9744,"columnNumber":19},"locations":[{"lineNumber":9745,"columnNumber":20,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"arrayReduce","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":688,"columnNumber":22},"locations":[{"lineNumber":689,"columnNumber":23,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"arrayReduce","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":690,"columnNumber":0},"locations":[{"lineNumber":691,"columnNumber":1,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"arrayReduce","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":691,"columnNumber":0},"locations":[{"lineNumber":692,"columnNumber":1,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"delay","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":534,"columnNumber":18},"locations":[{"lineNumber":535,"columnNumber":19,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":6611,"columnNumber":21},"locations":[{"lineNumber":6612,"columnNumber":22,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"apply","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":484,"columnNumber":16},"locations":[{"lineNumber":485,"columnNumber":17,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":10537,"columnNumber":33},"locations":[{"lineNumber":10538,"columnNumber":34,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"baseDelay","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":2787,"columnNumber":22},"locations":[{"lineNumber":2788,"columnNumber":23,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"setTimeout","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":6708,"columnNumber":46},"locations":[{"lineNumber":6709,"columnNumber":47,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"setTimeout","scriptId":"36","url":"timers.js","lineNumber":139,"columnNumber":19},"locations":[{"lineNumber":140,"columnNumber":20,"source":{"name":"/timers.js","path":"/timers.js","sourceReference":122368388,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"Timeout","scriptId":"38","url":"internal/timers.js","lineNumber":164,"columnNumber":16},"locations":[{"lineNumber":165,"columnNumber":17,"source":{"name":"/internal/timers.js","path":"/internal/timers.js","sourceReference":2056358770,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"Timeout","scriptId":"38","url":"internal/timers.js","lineNumber":193,"columnNumber":0},"locations":[{"lineNumber":194,"columnNumber":1,"source":{"name":"/internal/timers.js","path":"/internal/timers.js","sourceReference":2056358770,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"Timeout","scriptId":"38","url":"internal/timers.js","lineNumber":194,"columnNumber":0},"locations":[{"lineNumber":195,"columnNumber":1,"source":{"name":"/internal/timers.js","path":"/internal/timers.js","sourceReference":2056358770,"presentationHint":"deemphasize","origin":"Skipped by skipFiles"}}]},{"callFrame":{"functionName":"linkClassesWithParents","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":271,"columnNumber":26},"locations":[{"lineNumber":272,"columnNumber":27,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkClassesWithParents","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":271,"columnNumber":0},"locations":[{"lineNumber":272,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkClassesWithParents","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":272,"columnNumber":0},"locations":[{"lineNumber":273,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":109,"columnNumber":0},"locations":[{"lineNumber":110,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":110,"columnNumber":0},"locations":[{"lineNumber":111,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":740,"columnNumber":0},"locations":[{"lineNumber":741,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":741,"columnNumber":0},"locations":[{"lineNumber":742,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":72,"columnNumber":0},"locations":[{"lineNumber":73,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateInterface","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":73,"columnNumber":0},"locations":[{"lineNumber":74,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"get componentName","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":140,"columnNumber":21},"locations":[{"lineNumber":141,"columnNumber":22,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get componentName","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":142,"columnNumber":0},"locations":[{"lineNumber":143,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get componentName","scriptId":"702","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","lineNumber":143,"columnNumber":0},"locations":[{"lineNumber":144,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/XmlFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\XmlFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":149,"columnNumber":0},"locations":[{"lineNumber":150,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllDependencies","scriptId":"758","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","lineNumber":150,"columnNumber":0},"locations":[{"lineNumber":151,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DependencyGraph.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DependencyGraph.js","sourceReference":0}}]},{"callFrame":{"functionName":"SymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":8,"columnNumber":15},"locations":[{"lineNumber":9,"columnNumber":16,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":867,"columnNumber":0},"locations":[{"lineNumber":868,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":144,"columnNumber":0},"locations":[{"lineNumber":145,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":145,"columnNumber":0},"locations":[{"lineNumber":146,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":244,"columnNumber":37},"locations":[{"lineNumber":245,"columnNumber":38,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":246,"columnNumber":0},"locations":[{"lineNumber":247,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":247,"columnNumber":0},"locations":[{"lineNumber":248,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":722,"columnNumber":0},"locations":[{"lineNumber":723,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":723,"columnNumber":0},"locations":[{"lineNumber":724,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":621,"columnNumber":0},"locations":[{"lineNumber":622,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":622,"columnNumber":0},"locations":[{"lineNumber":623,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":254,"columnNumber":0},"locations":[{"lineNumber":255,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":607,"columnNumber":0},"locations":[{"lineNumber":608,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":608,"columnNumber":0},"locations":[{"lineNumber":609,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"execute","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":848,"columnNumber":22},"locations":[{"lineNumber":849,"columnNumber":23,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"run","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":2092,"columnNumber":16},"locations":[{"lineNumber":2093,"columnNumber":17,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"Deferred","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":398,"columnNumber":21},"locations":[{"lineNumber":399,"columnNumber":22,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"clock","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1568,"columnNumber":22},"locations":[{"lineNumber":1569,"columnNumber":23,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"createCompiled","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1667,"columnNumber":29},"locations":[{"lineNumber":1668,"columnNumber":30,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"createCompiled","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1720,"columnNumber":0},"locations":[{"lineNumber":1721,"columnNumber":1,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"createCompiled","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1721,"columnNumber":0},"locations":[{"lineNumber":1722,"columnNumber":1,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"interpolate","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1783,"columnNumber":26},"locations":[{"lineNumber":1784,"columnNumber":27,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"interpolate","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1785,"columnNumber":0},"locations":[{"lineNumber":1786,"columnNumber":1,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"interpolate","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":1786,"columnNumber":0},"locations":[{"lineNumber":1787,"columnNumber":1,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"template","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":14837,"columnNumber":21},"locations":[{"lineNumber":14838,"columnNumber":22,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":15323,"columnNumber":35},"locations":[{"lineNumber":15324,"columnNumber":36,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":14940,"columnNumber":35},"locations":[{"lineNumber":14941,"columnNumber":36,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":14941,"columnNumber":0},"locations":[{"lineNumber":14942,"columnNumber":1,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"189","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/lodash/lodash.js","lineNumber":14942,"columnNumber":0},"locations":[{"lineNumber":14943,"columnNumber":1,"source":{"name":"node_modules/lodash/lodash.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\lodash\\lodash.js","sourceReference":0}}]},{"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":717,"columnNumber":0},"locations":[{"lineNumber":718,"columnNumber":1,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"resolve","scriptId":"188","url":"file:///C:/projects/roku/brighterscript5__parent-linking/node_modules/benchmark/benchmark.js","lineNumber":718,"columnNumber":0},"locations":[{"lineNumber":719,"columnNumber":1,"source":{"name":"node_modules/benchmark/benchmark.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\node_modules\\benchmark\\benchmark.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":411,"columnNumber":0},"locations":[{"lineNumber":412,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":412,"columnNumber":0},"locations":[{"lineNumber":413,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":143,"columnNumber":0},"locations":[{"lineNumber":144,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":144,"columnNumber":0},"locations":[{"lineNumber":145,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":155,"columnNumber":0},"locations":[{"lineNumber":156,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":156,"columnNumber":0},"locations":[{"lineNumber":157,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":621,"columnNumber":0},"locations":[{"lineNumber":622,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"unlinkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":622,"columnNumber":0},"locations":[{"lineNumber":623,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":12,"columnNumber":0},"locations":[{"lineNumber":13,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":13,"columnNumber":0},"locations":[{"lineNumber":14,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"get parent","scriptId":"684","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","lineNumber":332,"columnNumber":0},"locations":[{"lineNumber":333,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/parser/Expression.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\parser\\Expression.js","sourceReference":0}}]},{"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":3,"columnNumber":0},"locations":[{"lineNumber":4,"columnNumber":1,"source":{"name":"/VM46947602","path":"/VM46947602","sourceReference":46947602}}]},{"callFrame":{"functionName":"d16585506126233.fn","scriptId":"850","url":"","lineNumber":4,"columnNumber":0},"locations":[{"lineNumber":5,"columnNumber":1,"source":{"name":"/VM46947602","path":"/VM46947602","sourceReference":46947602}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":42,"columnNumber":0},"locations":[{"lineNumber":43,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":43,"columnNumber":0},"locations":[{"lineNumber":44,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":37,"columnNumber":0},"locations":[{"lineNumber":38,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":38,"columnNumber":0},"locations":[{"lineNumber":39,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":504,"columnNumber":0},"locations":[{"lineNumber":505,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":109,"columnNumber":0},"locations":[{"lineNumber":110,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"get ownScriptImports","scriptId":"690","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","lineNumber":110,"columnNumber":0},"locations":[{"lineNumber":111,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/files/BrsFile.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\files\\BrsFile.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":608,"columnNumber":0},"locations":[{"lineNumber":609,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":609,"columnNumber":0},"locations":[{"lineNumber":610,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":151,"columnNumber":0},"locations":[{"lineNumber":152,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":1351,"columnNumber":0},"locations":[{"lineNumber":1352,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":1352,"columnNumber":0},"locations":[{"lineNumber":1353,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":670,"columnNumber":0},"locations":[{"lineNumber":671,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":671,"columnNumber":0},"locations":[{"lineNumber":672,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":411,"columnNumber":0},"locations":[{"lineNumber":412,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":412,"columnNumber":0},"locations":[{"lineNumber":413,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":79,"columnNumber":0},"locations":[{"lineNumber":80,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":80,"columnNumber":0},"locations":[{"lineNumber":81,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":25,"columnNumber":0},"locations":[{"lineNumber":26,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"getAllFiles","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":26,"columnNumber":0},"locations":[{"lineNumber":27,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":122,"columnNumber":0},"locations":[{"lineNumber":123,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"752","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/XmlScope.js","lineNumber":123,"columnNumber":0},"locations":[{"lineNumber":124,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/XmlScope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\XmlScope.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":139,"columnNumber":0},"locations":[{"lineNumber":140,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectDuplicateEnums","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":140,"columnNumber":0},"locations":[{"lineNumber":141,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":481,"columnNumber":0},"locations":[{"lineNumber":482,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":44,"columnNumber":0},"locations":[{"lineNumber":45,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"hasSymbol","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":45,"columnNumber":0},"locations":[{"lineNumber":46,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"referencedFileDoesNotExist","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":38,"columnNumber":32},"locations":[{"lineNumber":39,"columnNumber":33,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"referencedFileDoesNotExist","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":38,"columnNumber":0},"locations":[{"lineNumber":39,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"referencedFileDoesNotExist","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":39,"columnNumber":0},"locations":[{"lineNumber":40,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"isXmlFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":22,"columnNumber":0},"locations":[{"lineNumber":23,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"isXmlFile","scriptId":"668","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","lineNumber":23,"columnNumber":0},"locations":[{"lineNumber":24,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/astUtils/reflection.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\astUtils\\reflection.js","sourceReference":0}}]},{"callFrame":{"functionName":"scriptImportCaseMismatch","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":79,"columnNumber":30},"locations":[{"lineNumber":80,"columnNumber":31,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"scriptImportCaseMismatch","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":80,"columnNumber":0},"locations":[{"lineNumber":81,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"scriptImportCaseMismatch","scriptId":"645","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","lineNumber":81,"columnNumber":0},"locations":[{"lineNumber":82,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/DiagnosticMessages.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\DiagnosticMessages.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":255,"columnNumber":0},"locations":[{"lineNumber":256,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":261,"columnNumber":0},"locations":[{"lineNumber":262,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":262,"columnNumber":0},"locations":[{"lineNumber":263,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":563,"columnNumber":0},"locations":[{"lineNumber":564,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"_asFormatted","scriptId":"653","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/vscode-uri/lib/umd/index.js","lineNumber":564,"columnNumber":0},"locations":[{"lineNumber":565,"columnNumber":1,"source":{"name":"benchmarks/node_modules/vscode-uri/lib/umd/index.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\vscode-uri\\lib\\umd\\index.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":541,"columnNumber":0},"locations":[{"lineNumber":542,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":542,"columnNumber":0},"locations":[{"lineNumber":543,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"mergeSymbolTable","scriptId":"686","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","lineNumber":91,"columnNumber":0},"locations":[{"lineNumber":92,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/SymbolTable.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\SymbolTable.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":453,"columnNumber":0},"locations":[{"lineNumber":454,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"validate","scriptId":"589","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Program.js","lineNumber":454,"columnNumber":0},"locations":[{"lineNumber":455,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Program.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Program.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":225,"columnNumber":0},"locations":[{"lineNumber":226,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":226,"columnNumber":0},"locations":[{"lineNumber":227,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"detectVariableNamespaceCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":645,"columnNumber":0},"locations":[{"lineNumber":646,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":96,"columnNumber":0},"locations":[{"lineNumber":97,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectShadowedLocalVars","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":97,"columnNumber":0},"locations":[{"lineNumber":98,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":790,"columnNumber":0},"locations":[{"lineNumber":791,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCollisions","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":791,"columnNumber":0},"locations":[{"lineNumber":792,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticFindDuplicateFunctionDeclarations","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":806,"columnNumber":0},"locations":[{"lineNumber":807,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":870,"columnNumber":0},"locations":[{"lineNumber":871,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":871,"columnNumber":0},"locations":[{"lineNumber":872,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":853,"columnNumber":0},"locations":[{"lineNumber":854,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticValidateScriptImportPaths","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":854,"columnNumber":0},"locations":[{"lineNumber":855,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":89,"columnNumber":0},"locations":[{"lineNumber":90,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":90,"columnNumber":0},"locations":[{"lineNumber":91,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":142,"columnNumber":0},"locations":[{"lineNumber":143,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":143,"columnNumber":0},"locations":[{"lineNumber":144,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":68,"columnNumber":0},"locations":[{"lineNumber":69,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":69,"columnNumber":0},"locations":[{"lineNumber":70,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":20,"columnNumber":0},"locations":[{"lineNumber":21,"columnNumber":1,"source":{"name":"benchmarks/targets/validate.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\targets\\validate.js","sourceReference":0}}]},{"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":27,"columnNumber":0},"locations":[{"lineNumber":28,"columnNumber":1,"source":{"name":"benchmarks/targets/validate.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\targets\\validate.js","sourceReference":0}}]},{"callFrame":{"functionName":"suite.add","scriptId":"793","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/targets/validate.js","lineNumber":28,"columnNumber":0},"locations":[{"lineNumber":29,"columnNumber":1,"source":{"name":"benchmarks/targets/validate.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\targets\\validate.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":170,"columnNumber":0},"locations":[{"lineNumber":171,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"iterateFileExpressions","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":171,"columnNumber":0},"locations":[{"lineNumber":172,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateFieldTypes","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":197,"columnNumber":22},"locations":[{"lineNumber":198,"columnNumber":23,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateFieldTypes","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":199,"columnNumber":0},"locations":[{"lineNumber":200,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateFieldTypes","scriptId":"646","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","lineNumber":200,"columnNumber":0},"locations":[{"lineNumber":201,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/validators/ClassValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\validators\\ClassValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":595,"columnNumber":0},"locations":[{"lineNumber":596,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"linkSymbolTable","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":596,"columnNumber":0},"locations":[{"lineNumber":597,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"validateCreateObjectCalls","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":204,"columnNumber":0},"locations":[{"lineNumber":205,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":571,"columnNumber":0},"locations":[{"lineNumber":572,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"_validate","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":572,"columnNumber":0},"locations":[{"lineNumber":573,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"diagnosticDetectFunctionCallsWithWrongParamCount","scriptId":"644","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/Scope.js","lineNumber":734,"columnNumber":0},"locations":[{"lineNumber":735,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/Scope.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\Scope.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":157,"columnNumber":0},"locations":[{"lineNumber":158,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"addMultiScopeDiagnostic","scriptId":"768","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","lineNumber":158,"columnNumber":0},"locations":[{"lineNumber":159,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/bscPlugin/validation/ScopeValidator.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\bscPlugin\\validation\\ScopeValidator.js","sourceReference":0}}]},{"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":11,"columnNumber":0},"locations":[{"lineNumber":12,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\PluginInterface.js","sourceReference":0}}]},{"callFrame":{"functionName":"emit","scriptId":"759","url":"file:///C:/projects/roku/brighterscript5__parent-linking/benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","lineNumber":12,"columnNumber":0},"locations":[{"lineNumber":13,"columnNumber":1,"source":{"name":"benchmarks/node_modules/brighterscript1/dist/PluginInterface.js","path":"c:\\projects\\roku\\brighterscript5__parent-linking\\benchmarks\\node_modules\\brighterscript1\\dist\\PluginInterface.js","sourceReference":0}}]}]}} \ No newline at end of file