From aee527a637a4d6ad1b1501f14f64a8adbd6315df Mon Sep 17 00:00:00 2001 From: little-bobby-tables Date: Sat, 3 Jun 2017 16:12:45 +0700 Subject: [PATCH] remove an obsolete TODO in grammar --- src/slime_parser.peg.eex | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/slime_parser.peg.eex b/src/slime_parser.peg.eex index 5b6e0ea..ef764cf 100644 --- a/src/slime_parser.peg.eex +++ b/src/slime_parser.peg.eex @@ -60,8 +60,6 @@ attribute <- attribute_name '=' attribute_value; attribute_value <- simple:string / dynamic:(string_with_interpolation / attribute_code); string <- '"' ('\\' . / !('"' / '#') .)* '"'; - -% TODO: separate static and dynamic blocks string_with_interpolation <- '"' (interpolation / '\\' . / !'"' .)* '"'; attribute_code <- (parentheses / brackets / braces / !(space / eol / ')' / ']' / '}') .)+;