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

rokucommunity / brighterscript / #12196

17 Apr 2024 07:54PM UTC coverage: 87.919% (-0.6%) from 88.473%
#12196

push

web-flow
Upgrade to @rokucommunity/logger (#1137)

* Upgrade to @rokucommunity/logger

* Add original logger class back

* @rokucommunity/logger v0.3.4

6020 of 7320 branches covered (82.24%)

Branch coverage included in aggregate %.

29 of 29 new or added lines in 10 files covered. (100.0%)

54 existing lines in 1 file now uncovered.

8775 of 9508 relevant lines covered (92.29%)

1742.83 hits per line

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

46.15
/src/types/InvalidType.ts
1
import type { BscType } from './BscType';
2
import { DynamicType } from './DynamicType';
1✔
3

4
export class InvalidType implements BscType {
1✔
5
    constructor(
6
        public typeText?: string
55✔
7
    ) { }
8

9
    public isAssignableTo(targetType: BscType) {
10
        return (
2✔
11
            targetType instanceof InvalidType ||
3✔
12
            targetType instanceof DynamicType
13
        );
14
    }
15

16
    public isConvertibleTo(targetType: BscType) {
17
        return this.isAssignableTo(targetType);
×
18
    }
19

20
    public toString() {
21
        return this.typeText ?? 'invalid';
×
22
    }
23

24
    public toTypeString(): string {
25
        return this.toString();
×
26
    }
27
}
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

© 2025 Coveralls, Inc