afs commented on issue #1882: URL: https://github.com/apache/jena/issues/1882#issuecomment-1567954508
@ZookieSwag For what purpose? The SKIP rule causes the tokenizer to ignore whitespace. The parser is already ignoring spaces and new lines between tokens. `#WS` is a token rule (`#` means not exposed to the parser rules only in the tokenizer) used later on. "ignore" means that anything matching those characters between tokens is not used to create the next token. Without space in that set, the space will be used to determine which token is next. How is space between the other tokens defined going to be handled? One or more spaces has to match something but there isn't a token rule to match with the changes shown, so the tokenizer will generate an error. If you want to preserve white space -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
