Github user afs commented on a diff in the pull request:

    https://github.com/apache/jena/pull/114#discussion_r183786125
  
    --- Diff: jena-arq/Grammar/master.jj ---
    @@ -2176,6 +2251,19 @@ String String() : { Token t ; String lex ; }
         }
     }
     
    +#ifdef ARQ
    +Number Number() : { Token t ; Number number ; }
    +{
    +  (
    +    t = < INTEGER > { number = integerValue(t.image) ; }
    +  | t = < DECIMAL > { number = doubleValue(t.image) ; }
    --- End diff --
    
    Couldn't reply to the number point - I think the rebase has moved things 
around - it now looks right.  Tests will tell!


---

Reply via email to