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

rokucommunity / brighterscript / #14191

17 Apr 2025 05:47PM UTC coverage: 87.12% (-2.0%) from 89.104%
#14191

push

web-flow
Merge cb3036ca3 into 2b6cc17a0

13317 of 16155 branches covered (82.43%)

Branch coverage included in aggregate %.

7996 of 8674 new or added lines in 102 files covered. (92.18%)

84 existing lines in 22 files now uncovered.

14388 of 15646 relevant lines covered (91.96%)

19751.32 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