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

rokucommunity / brighterscript / #13685

03 Feb 2025 04:19PM UTC coverage: 86.753% (-1.4%) from 88.185%
#13685

push

web-flow
Merge 34e72243e into 4afb6f658

12476 of 15203 branches covered (82.06%)

Branch coverage included in aggregate %.

7751 of 8408 new or added lines in 101 files covered. (92.19%)

85 existing lines in 17 files now uncovered.

13398 of 14622 relevant lines covered (91.63%)

34302.59 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