diff --git a/src/brsTypes/components/RoSGNode.ts b/src/brsTypes/components/RoSGNode.ts index cd5a8ade..af17bb1f 100644 --- a/src/brsTypes/components/RoSGNode.ts +++ b/src/brsTypes/components/RoSGNode.ts @@ -1783,7 +1783,7 @@ export function createNodeByType(interpreter: Interpreter, type: BrsString): RoS // Start from the "basemost" component of the tree. typeDef = typeDefStack.pop(); - // If this extends a built-in component, create it. + // If this extends a built-in node component, create it. let node = NodeFactory.createComponent(typeDef!.extends as BrsNodeType, type.value); // Default to Node as parent. diff --git a/src/parser/ComponentScopeResolver.ts b/src/parser/ComponentScopeResolver.ts index f93cb7cf..c498a5f9 100644 --- a/src/parser/ComponentScopeResolver.ts +++ b/src/parser/ComponentScopeResolver.ts @@ -76,7 +76,7 @@ export class ComponentScopeResolver { let currentComponent: ComponentDefinition | undefined = component; while (currentComponent.extends) { - // If this is a built-in component, then no work is needed and we can return. + // If this is a built-in node component, then no work is needed and we can return. if (NodeFactory.canResolveComponentType(currentComponent.extends)) { return Promise.resolve(); }