Skip to content

Commit

Permalink
Merge pull request #299 from schungx/master
Browse files Browse the repository at this point in the history
Allow floating point numbers ending in a period.
  • Loading branch information
schungx committed Nov 23, 2020
2 parents 9dcf47a + 86009c7 commit e152e06
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 12 deletions.
19 changes: 10 additions & 9 deletions doc/src/language/numbers.md
Expand Up @@ -8,14 +8,15 @@ Integer numbers follow C-style format with support for decimal, binary ('`0b`'),
The default system integer type (also aliased to `INT`) is `i64`. It can be turned into `i32` via the [`only_i32`] feature.

Floating-point numbers are also supported if not disabled with [`no_float`]. The default system floating-point type is `i64`
(also aliased to `FLOAT`).
(also aliased to `FLOAT`). It can be turned into `f32` via the [`f32_float`] feature.

'`_`' separators can be added freely and are ignored within a number.
'`_`' separators can be added freely and are ignored within a number - except at the very beginning or right after
a decimal point ('`.`').

| Format | Type |
| ---------------- | ---------------- |
| `123_345`, `-42` | `i64` in decimal |
| `0o07_76` | `i64` in octal |
| `0xabcd_ef` | `i64` in hex |
| `0b0101_1001` | `i64` in binary |
| `123_456.789` | `f64` |
| Format | Type |
| --------------------- | ---------------- |
| `123_345`, `-42` | `INT` in decimal |
| `0o07_76` | `INT` in octal |
| `0xabcd_ef` | `INT` in hex |
| `0b0101_1001` | `INT` in binary |
| `123_456.789`, `-42.` | `FLOAT` |
23 changes: 20 additions & 3 deletions src/token.rs
Expand Up @@ -1056,14 +1056,31 @@ fn get_next_token_inner(
'.' => {
stream.get_next().unwrap();

// Check if followed by digits (or _)
// Check if followed by digits or something that cannot start a property name
match stream.peek_next().unwrap_or('\0') {
'0'..='9' | '_' => {
// digits after period - accept the period
'0'..='9' => {
result.push(next_char);
pos.advance()
}
// _ - cannot follow a decimal point
'_' => {
stream.unread(next_char);
break;
}
// .. - reserved symbol, not a floating-point number
'.' => {
stream.unread(next_char);
break;
}
// symbol after period - probably a float
ch @ _ if !is_id_first_alphabetic(ch) => {
result.push(next_char);
pos.advance();
result.push('0');
}
// Not a floating-point number
_ => {
// Not a floating-point number
stream.unread(next_char);
break;
}
Expand Down
1 change: 1 addition & 0 deletions tests/float.rs
Expand Up @@ -15,6 +15,7 @@ fn test_float() -> Result<(), Box<EvalAltResult>> {
engine.eval::<bool>("let x = 0.0; let y = 1.0; x > y")?,
false
);
assert_eq!(engine.eval::<bool>("let x = 0.; let y = 1.; x > y")?, false);
assert!((engine.eval::<FLOAT>("let x = 9.9999; x")? - 9.9999 as FLOAT).abs() < EPSILON);

Ok(())
Expand Down

0 comments on commit e152e06

Please sign in to comment.