Fix accepting comments after table definitions
This commit is contained in:
parent
c777001598
commit
b9280519cc
|
@ -285,8 +285,7 @@ impl<'a> Parser<'a> {
|
||||||
};
|
};
|
||||||
if self.require_newline_after_table {
|
if self.require_newline_after_table {
|
||||||
self.ws();
|
self.ws();
|
||||||
self.comment();
|
if !self.comment() && !self.newline() {
|
||||||
if !self.newline() {
|
|
||||||
self.errors.push(ParserError {
|
self.errors.push(ParserError {
|
||||||
lo: start,
|
lo: start,
|
||||||
hi: start,
|
hi: start,
|
||||||
|
@ -1196,7 +1195,7 @@ trimmed in raw strings.
|
||||||
[foo.bar]
|
[foo.bar]
|
||||||
#…
|
#…
|
||||||
|
|
||||||
[[foo]]
|
[[foo]] # ...
|
||||||
#…
|
#…
|
||||||
[foo.bar]
|
[foo.bar]
|
||||||
#...
|
#...
|
||||||
|
|
Loading…
Reference in a new issue