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

rokucommunity / brighterscript / #13028

05 Sep 2024 06:50PM UTC coverage: 86.418% (-1.5%) from 87.933%
#13028

push

web-flow
Merge c5c56b09a into 43cbf8b72

10784 of 13272 branches covered (81.25%)

Branch coverage included in aggregate %.

153 of 158 new or added lines in 7 files covered. (96.84%)

811 existing lines in 44 files now uncovered.

12484 of 13653 relevant lines covered (91.44%)

27481.68 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,280,910✔
8

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

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

16
    }
17

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

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