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

source-academy / py-slang / 23374581540

21 Mar 2026 07:13AM UTC coverage: 42.162% (+7.2%) from 34.925%
23374581540

Pull #104

github

web-flow
Merge 15a5ed218 into 8feccc8f9
Pull Request #104: feat: replace hand-written parser with Nearley grammar

299 of 1055 branches covered (28.34%)

Branch coverage included in aggregate %.

580 of 641 new or added lines in 24 files covered. (90.48%)

1234 of 2581 relevant lines covered (47.81%)

52.3 hits per line

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

33.33
/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 {
NEW
6
    if (node instanceof ExprNS.Lambda) {
×
NEW
7
      throw new FeatureNotSupportedError("lambda expressions", node);
×
8
    }
NEW
9
    if (node instanceof ExprNS.MultiLambda) {
×
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