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

rokucommunity / brighterscript / #14141

07 Apr 2025 12:46PM UTC coverage: 87.118% (-2.0%) from 89.104%
#14141

push

web-flow
Merge 9e907b45f into e8dca2372

13300 of 16135 branches covered (82.43%)

Branch coverage included in aggregate %.

7986 of 8664 new or added lines in 102 files covered. (92.17%)

84 existing lines in 22 files now uncovered.

14379 of 15637 relevant lines covered (91.95%)

19678.33 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;
5,867✔
8
    public isBuiltIn = true;
5,867✔
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