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

rokucommunity / brighterscript / #13326

25 Nov 2024 05:15PM UTC coverage: 86.867%. Remained the same
#13326

push

web-flow
Merge 0ff800164 into 2a6afd921

11938 of 14535 branches covered (82.13%)

Branch coverage included in aggregate %.

324 of 340 new or added lines in 31 files covered. (95.29%)

240 existing lines in 20 files now uncovered.

12972 of 14141 relevant lines covered (91.73%)

32490.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;
3,861,598✔
8
    public isBuiltIn = true;
3,861,598✔
9

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

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

17
    }
18

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

23
    isEqual(targetType: BscType): boolean {
UNCOV
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

© 2025 Coveralls, Inc