afs commented on code in PR #2726:
URL: https://github.com/apache/jena/pull/2726#discussion_r1774067461


##########
jena-arq/src/main/java/org/apache/jena/riot/tokens/TokenizerText.java:
##########
@@ -384,7 +378,31 @@ private Token parseToken() {
             case CH_RBRACE:     reader.readChar(); 
token.setType(TokenType.RBRACE);    /*token.setImage(CH_RBRACE);*/ return token;
 
             case CH_LPAREN:     reader.readChar(); 
token.setType(TokenType.LPAREN);    /*token.setImage(CH_LPAREN);*/ return token;
-            case CH_RPAREN:     reader.readChar(); 
token.setType(TokenType.RPAREN);    /*token.setImage(CH_RPAREN);*/ return token;
+
+            // Can be ')' or ')>>'

Review Comment:
   `<<(`, `)>>` are RDF 1.2 and not in RDF-star CG (community group). RDF 1.2 
has `<<`,`>>` - very long story.  
   https://www.w3.org/TR/rdf12-turtle/
   
   I hope that sometime this will settle down enough to 
   
   These tokens L_TRIPLE and R_TRIPLE tokens, are not used in any parser in 
this PR. 
   This is part of the overlap with RDF 1.2. work.
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: pr-unsubscr...@jena.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscr...@jena.apache.org
For additional commands, e-mail: pr-h...@jena.apache.org

Reply via email to