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

source-academy / py-slang / 23331903244

20 Mar 2026 06:34AM UTC coverage: 40.054% (+5.1%) from 34.925%
23331903244

Pull #69

github

web-flow
Merge 470cd13b2 into 8d5d05e29
Pull Request #69: Nearley dsl

421 of 1377 branches covered (30.57%)

Branch coverage included in aggregate %.

485 of 614 new or added lines in 20 files covered. (78.99%)

37 existing lines in 2 files now uncovered.

1347 of 3037 relevant lines covered (44.35%)

65.24 hits per line

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

77.78
/src/validator/features/no-lambda.ts
1
import { ExprNS } from "../../ast-types";
1✔
2
import { ASTNode, FeatureValidator, FeatureNotSupportedError } from "../types";
1✔
3

4
export const NoLambdaValidator: FeatureValidator = {
1✔
5
  validate(node: ASTNode): void {
6
    if (node instanceof ExprNS.Lambda) {
27✔
7
      throw new FeatureNotSupportedError("lambda expressions", node);
1✔
8
    }
9
    if (node instanceof ExprNS.MultiLambda) {
26!
NEW
10
      throw new FeatureNotSupportedError("multi-line lambda expressions", node);
×
11
    }
12
  },
13
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc