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

rokucommunity / brighterscript / #13988

10 Mar 2025 03:58PM UTC coverage: 89.113%. Remained the same
#13988

push

TwitchBronBron
0.69.1

7461 of 8823 branches covered (84.56%)

Branch coverage included in aggregate %.

9794 of 10540 relevant lines covered (92.92%)

1836.23 hits per line

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

33.33
/src/types/CustomType.ts
1
import { isCustomType, isDynamicType } from '../astUtils/reflection';
1✔
2
import type { BscType } from './BscType';
3

4
export class CustomType implements BscType {
1✔
5

6
    constructor(public name: string) {
128✔
7
    }
8

9
    public toString() {
10
        return this.name;
1✔
11
    }
12

13
    public toTypeString(): string {
14
        return 'object';
10✔
15
    }
16

17
    public isAssignableTo(targetType: BscType) {
18
        //TODO for now, if the custom types have the same name, assume they're the same thing
19
        if (isCustomType(targetType) && targetType.name === this.name) {
×
20
            return true;
×
21
        } else if (isDynamicType(targetType)) {
×
22
            return true;
×
23
        } else {
24
            return false;
×
25
        }
26
    }
27

28
    public isConvertibleTo(targetType: BscType) {
29
        return this.isAssignableTo(targetType);
×
30
    }
31

32
    public clone() {
33
        return new CustomType(this.name);
1✔
34
    }
35
}
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