Bug 1466 – Spec claims maximal munch technique always works: not for "1..3"

Status
RESOLVED
Resolution
FIXED
Severity
minor
Priority
P3
Component
dlang.org
Product
D
Version
D1 (retired)
Platform
All
OS
All
Creation time
2007-09-01T09:35:00Z
Last change time
2014-02-16T15:24:18Z
Keywords
spec
Assigned to
nobody
Creator
matti.niemenmaa+dbugzilla
Blocks
3104

Comments

Comment #0 by matti.niemenmaa+dbugzilla — 2007-09-01T09:35:26Z
A snippet from http://digitalmars.com/d/1.0/lex.html: "The source text is split into tokens using the maximal munch technique, i.e., the lexical analyzer tries to make the longest token it can." Relevant parts of the grammar: Token: FloatLiteral .. FloatLiteral: Float Float: DecimalFloat DecimalFloat: DecimalDigits . . Decimal DecimalDigits: DecimalDigit DecimalDigit: NonZeroDigit Decimal: NonZeroDigit Based on the above, if a lexer encounters "1..3", for instance in a slice: "foo[1..3]", it should, using the maximal munch technique, make the longest possible token from "1..3": this is the Float "1.". Next, it should come up with the Float ".3". Of course, this isn't currently happening, and would be problematic if it did. But, according to the grammar, that's what should happen, unless I'm missing something. Either some exception needs to be made or remove the "DecimalDigits ." possibility from the grammar and the compiler.
Comment #1 by lovesyao — 2007-09-01T12:15:17Z
Reply to [email protected], > http://d.puremagic.com/issues/show_bug.cgi?id=1466 > > Summary: Spec claims maximal munch technique always works: > not > for "1..3" > Product: D > Version: 1.020 > Platform: All > URL: http://digitalmars.com/d/1.0/lex.html > OS/Version: All > Status: NEW > Keywords: spec > Severity: minor > Priority: P3 > Component: www.digitalmars.com > AssignedTo: [email protected] > ReportedBy: [email protected] > A snippet from http://digitalmars.com/d/1.0/lex.html: > > "The source text is split into tokens using the maximal munch > technique, i.e., the lexical analyzer tries to make the longest token > it can." > > Relevant parts of the grammar: > > Token: > FloatLiteral > .. > FloatLiteral: > Float > Float: > DecimalFloat > DecimalFloat: > DecimalDigits . > . Decimal > DecimalDigits: > DecimalDigit > DecimalDigit: > NonZeroDigit > Decimal: > NonZeroDigit > Based on the above, if a lexer encounters "1..3", for instance in a > slice: "foo[1..3]", it should, using the maximal munch technique, make > the longest possible token from "1..3": this is the Float "1.". Next, > it should come up with the Float ".3". > > Of course, this isn't currently happening, and would be problematic if > it did. But, according to the grammar, that's what should happen, > unless I'm missing something. > > Either some exception needs to be made or remove the "DecimalDigits ." > possibility from the grammar and the compiler. > or make it "DecimalDigits . [^.]" where the ^ production is non consuming.
Comment #2 by lovesyao — 2007-09-02T17:30:15Z
Reply to [email protected], > "The source text is split into tokens using the maximal munch > technique, i.e., the lexical analyzer tries to make the longest token > it can." > another case: actual !isGood -> ! isGood MaxMunch !isGood -> !is Good
Comment #3 by ibisbasenji — 2007-09-02T17:45:15Z
BCS wrote: > Reply to [email protected], > > >> "The source text is split into tokens using the maximal munch >> technique, i.e., the lexical analyzer tries to make the longest token >> it can." >> > > another case: > > actual > !isGood -> ! isGood > MaxMunch > !isGood -> !is Good > > I might be wrong, but my guess is that 'is' is always treated as its own entity, so that '!is' is really ('!' 'is'). Its not a bad practice when one has keyword-operators to do this, to avoid MM screwing up user's identifiers. But, as I haven't taken any trips through the DMD frontend source, I might be completely off. -- Chris Nicholson-Sauls
Comment #4 by lovesyao — 2007-09-02T18:30:16Z
Reply to Chris Nicholson-Sauls, > BCS wrote: > >> Reply to [email protected], >> >>> "The source text is split into tokens using the maximal munch >>> technique, i.e., the lexical analyzer tries to make the longest >>> token it can." >>> >> another case: >> >> actual >> !isGood -> ! isGood >> MaxMunch >> !isGood -> !is Good > I might be wrong, but my guess is that 'is' is always treated as its > own entity, so that '!is' is really ('!' 'is'). Its not a bad That's how I spoted it in the first place > practice when one has keyword-operators to do this, to avoid MM > screwing up user's identifiers. But, as I haven't taken any trips > through the DMD frontend source, I might be completely off. > For that to work the lexer has to keep track of whitespace. :-b
Comment #5 by jascha — 2007-09-03T06:08:58Z
(In reply to comment #0) > A snippet from http://digitalmars.com/d/1.0/lex.html: > > "The source text is split into tokens using the maximal munch technique, i.e., > the lexical analyzer tries to make the longest token it can." > > Relevant parts of the grammar: > > Token: > FloatLiteral > .. > > FloatLiteral: > Float > > Float: > DecimalFloat > > DecimalFloat: > DecimalDigits . > . Decimal > > DecimalDigits: > DecimalDigit > > DecimalDigit: > NonZeroDigit > > Decimal: > NonZeroDigit > > Based on the above, if a lexer encounters "1..3", for instance in a slice: > "foo[1..3]", it should, using the maximal munch technique, make the longest > possible token from "1..3": this is the Float "1.". Next, it should come up > with the Float ".3". > > Of course, this isn't currently happening, and would be problematic if it did. > But, according to the grammar, that's what should happen, unless I'm missing > something. > > Either some exception needs to be made or remove the "DecimalDigits ." > possibility from the grammar and the compiler. > (In reply to comment #1) > Reply to [email protected], > > > http://d.puremagic.com/issues/show_bug.cgi?id=1466 > > > > Summary: Spec claims maximal munch technique always works: > > not > > for "1..3" > > Product: D > > Version: 1.020 > > Platform: All > > URL: http://digitalmars.com/d/1.0/lex.html > > OS/Version: All > > Status: NEW > > Keywords: spec > > Severity: minor > > Priority: P3 > > Component: www.digitalmars.com > > AssignedTo: [email protected] > > ReportedBy: [email protected] > > A snippet from http://digitalmars.com/d/1.0/lex.html: > > > > "The source text is split into tokens using the maximal munch > > technique, i.e., the lexical analyzer tries to make the longest token > > it can." > > > > Relevant parts of the grammar: > > > > Token: > > FloatLiteral > > .. > > FloatLiteral: > > Float > > Float: > > DecimalFloat > > DecimalFloat: > > DecimalDigits . > > . Decimal > > DecimalDigits: > > DecimalDigit > > DecimalDigit: > > NonZeroDigit > > Decimal: > > NonZeroDigit > > Based on the above, if a lexer encounters "1..3", for instance in a > > slice: "foo[1..3]", it should, using the maximal munch technique, make > > the longest possible token from "1..3": this is the Float "1.". Next, > > it should come up with the Float ".3". > > > > Of course, this isn't currently happening, and would be problematic if > > it did. But, according to the grammar, that's what should happen, > > unless I'm missing something. > > > > Either some exception needs to be made or remove the "DecimalDigits ." > > possibility from the grammar and the compiler. > > > > or make it "DecimalDigits . [^.]" where the ^ production is non consuming. > it is possible to parse D using a maximal munch lexer - see the seatd grammar for an example. it's a matter of what lexemes exactly you choose. in this particular case, the float lexemes need to be split, such that those floats with a trailing dot are not matched by a single lexeme.
Comment #6 by lovesyao — 2007-09-03T09:50:18Z
Reply to Jascha, > BCS wrote: > >> For that to work the lexer has to keep track of whitespace. :-b >> > you can also match "(!is)[^_a-zA-Z0-9]", advancing the input only for > the submatch. or use a single-character lookahead. > That's what I'm hoping to do sooner or later. I already do somthing like that for ".." vs "."
Comment #7 by matti.niemenmaa+dbugzilla — 2007-09-09T12:26:03Z
Here's some example code underlining the issue: class Foo { static int opSlice(double a, double b) { return 0; } } void main() { // works assert (Foo[0. .. 1] == 0); // thinks it's [0 ... 1], no maximal munch taking place assert (Foo[0... 1] == 0); }
Comment #8 by lovesyao — 2007-09-09T16:50:26Z
Reply to Jascha, > [email protected] wrote: > >> // thinks it's [0 ... 1], no maximal munch taking place >> assert (Foo[0... 1] == 0); >> } > this *is* maximal munch taking place. because of the ".." lexeme, > float literals are not lexemes. they are context free production rules > consisting of multiple lexemes. therefore "0." consists of two lexemes > and "..." wins the max munch over ".". > But is it the the correct way to do it? (Not is is doing what the spec says, but is it doing what it should be designed to do)
Comment #9 by bugzilla — 2010-11-09T19:43:04Z