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

rokucommunity / brighterscript / #12931

13 Aug 2024 05:02PM UTC coverage: 86.193% (-1.7%) from 87.933%
#12931

push

web-flow
Merge 58ad447a2 into 0e968f1c3

10630 of 13125 branches covered (80.99%)

Branch coverage included in aggregate %.

6675 of 7284 new or added lines in 99 files covered. (91.64%)

84 existing lines in 18 files now uncovered.

12312 of 13492 relevant lines covered (91.25%)

26867.76 hits per line

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

50.0
/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,208,250✔
8

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

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

16
    }
17

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

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