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

source-academy / py-slang / 23394816171

22 Mar 2026 03:29AM UTC coverage: 41.678% (+6.8%) from 34.925%
23394816171

Pull #104

github

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

276 of 1014 branches covered (27.22%)

Branch coverage included in aggregate %.

560 of 621 new or added lines in 24 files covered. (90.18%)

1214 of 2561 relevant lines covered (47.4%)

52.68 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