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

rokucommunity / brighterscript / #13310

22 Nov 2024 08:22PM UTC coverage: 86.806%. Remained the same
#13310

push

web-flow
Merge a320d9302 into 2a6afd921

11836 of 14421 branches covered (82.07%)

Branch coverage included in aggregate %.

192 of 206 new or added lines in 26 files covered. (93.2%)

200 existing lines in 18 files now uncovered.

12869 of 14039 relevant lines covered (91.67%)

32033.54 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,850,478✔
8
    public isBuiltIn = true;
3,850,478✔
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