Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Special-case literals in parse_bottom_expr. #61612

Merged
merged 1 commit into from Jun 12, 2019

Commits on Jun 10, 2019

  1. Special-case literals in parse_bottom_expr.

    This makes parsing faster, particularly for code with large constants,
    for two reasons:
    - it skips all the keyword comparisons for literals;
    - it replaces the unnecessary `parse_literal_maybe_minus` call with
      `parse_lit`, avoiding an unnecessary allocation via `mk_expr`.
    nnethercote committed Jun 10, 2019
    Copy the full SHA
    35b5f43 View commit details
    Browse the repository at this point in the history