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

rokucommunity / brighterscript / #14385

09 May 2025 11:44AM UTC coverage: 87.032% (-2.0%) from 89.017%
#14385

push

web-flow
Merge a194c3925 into 489231ac7

13732 of 16677 branches covered (82.34%)

Branch coverage included in aggregate %.

8175 of 8874 new or added lines in 103 files covered. (92.12%)

84 existing lines in 22 files now uncovered.

14604 of 15881 relevant lines covered (91.96%)

20324.31 hits per line

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

66.67
/src/types/UninitializedType.ts
1
import { isUninitializedType } from '../astUtils/reflection';
1✔
2
import type { TypeCompatibilityData } from '../interfaces';
3
import { BscType } from './BscType';
1✔
4
import { BscTypeKind } from './BscTypeKind';
1✔
5

6
export class UninitializedType extends BscType {
1✔
7
    public isAssignableTo(targetType: BscType) {
NEW
8
        return false;
×
9
    }
10

11
    public readonly kind = BscTypeKind.UninitializedType;
1✔
12

13
    public isBuiltIn = true;
1✔
14
    public static instance = new UninitializedType();
1✔
15

16
    public isTypeCompatible(targetType: BscType, data?: TypeCompatibilityData) {
NEW
17
        return false;
×
18
    }
19

20
    public toString() {
21
        return 'uninitialized';
2✔
22
    }
23

24
    public toTypeString(): string {
NEW
25
        throw new Error('Uninitialized type cannot be used in code');
×
26
    }
27

28
    public isEqual(targetType: BscType): boolean {
NEW
29
        return isUninitializedType(targetType);
×
30
    }
31
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc