• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Build has been canceled!

rokucommunity / brighterscript / #13624

16 Jan 2025 06:37PM UTC coverage: 86.817% (-1.4%) from 88.185%
#13624

push

web-flow
Merge 4d932f3a2 into 71f9febcc

12444 of 15150 branches covered (82.14%)

Branch coverage included in aggregate %.

7705 of 8349 new or added lines in 101 files covered. (92.29%)

85 existing lines in 17 files now uncovered.

13351 of 14562 relevant lines covered (91.68%)

34000.26 hits per line

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

55.56
/src/types/BaseFunctionType.ts
1
import type { TypeCompatibilityData } from '../interfaces';
2
import { BscType } from './BscType';
1✔
3
import { DynamicType } from './DynamicType';
1✔
4

5
export abstract class BaseFunctionType extends BscType {
1✔
6

7
    public returnType: BscType = DynamicType.instance;
4,027,404✔
8
    public isBuiltIn = true;
4,027,404✔
9

10
    public isTypeCompatible(targetType: BscType, data?: TypeCompatibilityData): boolean {
NEW
11
        throw new Error('Method not implemented.');
×
12
    }
13

14
    public toString() {
NEW
15
        return this.toTypeString();
×
16

17
    }
18

19
    public toTypeString(): string {
NEW
20
        return 'Function';
×
21
    }
22

23
    isEqual(targetType: BscType): boolean {
NEW
24
        throw new Error('Method not implemented.');
×
25
    }
26
}
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