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

fix(toml): handle hexadecimal, octal, and binary numbers #6496

Merged
merged 4 commits into from
Mar 24, 2025

Conversation

re-masashi
Copy link
Contributor

Fixes the error in #6490. Also handles octal and binary.
The tests for these have also been updated.
Files changed: toml/_parser.ts and toml/parse_test.ts

@re-masashi re-masashi requested a review from kt3k as a code owner March 19, 2025 20:21
@CLAassistant
Copy link

CLAassistant commented Mar 19, 2025

CLA assistant check
All committers have signed the CLA.

@github-actions github-actions bot added the toml label Mar 19, 2025
Copy link

codecov bot commented Mar 19, 2025

Codecov Report

Attention: Patch coverage is 88.23529% with 4 lines in your changes missing coverage. Please review.

Project coverage is 95.29%. Comparing base (48fae8f) to head (11b80bf).
Report is 4 commits behind head on main.

Files with missing lines Patch % Lines
toml/_parser.ts 88.23% 2 Missing and 2 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #6496      +/-   ##
==========================================
- Coverage   95.30%   95.29%   -0.01%     
==========================================
  Files         575      575              
  Lines       43279    43307      +28     
  Branches     6467     6473       +6     
==========================================
+ Hits        41247    41271      +24     
- Misses       1993     1995       +2     
- Partials       39       41       +2     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

toml/_parser.ts Outdated
Comment on lines 574 to 588
// Determine the base and parse
let base: number;
switch (prefix) {
case "0b":
base = 2;
break;
case "0o":
base = 8;
break;
case "0x":
base = 16;
break;
default:
return failure();
}
Copy link
Contributor

@babiabeo babiabeo Mar 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can just determine the base in the above switch rather than making another one

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's feasible too, although this works as well

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should i change the code to do it that way?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that can avoid duplicate code

Copy link
Contributor Author

@re-masashi re-masashi Mar 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alright, I'll do it.

Copy link
Member

@kt3k kt3k left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Thanks!

@kt3k kt3k changed the title fix(toml): the hexadecimal type bug in #6490 fix(toml): handle hexadecimal, octal, and binary numbers Mar 24, 2025
@kt3k kt3k merged commit 9e4d7a6 into denoland:main Mar 24, 2025
19 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants