• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

rokucommunity / roku-debug / 29091048042

10 Jul 2026 11:57AM UTC coverage: 73.586% (+0.8%) from 72.802%
29091048042

Pull #323

github

web-flow
Merge a7a0b7642 into 7aa945dd8
Pull Request #323: Add component library postfix to `library` statements

3842 of 5489 branches covered (69.99%)

Branch coverage included in aggregate %.

66 of 102 new or added lines in 2 files covered. (64.71%)

1442 existing lines in 106 files now uncovered.

6296 of 8288 relevant lines covered (75.97%)

45.79 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

83.33
/src/adapters/customVariables/ifFileSystem.ts
1
import { VariableType } from '../../debugProtocol/events/responses/VariablesResponse';
2
import type { DebugProtocolAdapter, EvaluateContainer } from '../DebugProtocolAdapter';
2✔
3
import { pushCustomVariableToContainer } from './utils';
2✔
4

2✔
5
// https://developer.roku.com/en-ca/docs/references/brightscript/interfaces/iffilesystem.md
2✔
6
export function pushIfFileSystemVariables(adapter: DebugProtocolAdapter, expression: string, container: EvaluateContainer) {
7
    pushCustomVariableToContainer(adapter, container, {
UNCOV
8
        name: '$volumeList',
×
9
        type: VariableType.List,
10
        presentationHint: { kind: 'virtual' },
11
        evaluateName: `${expression}.GetVolumeList()`,
12
        value: VariableType.List,
13
        children: []
14
    });
15
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc