Forráskód Böngészése

Remove string literals

DricomDragon 5 éve
szülő
commit
e8fa0e8ab0
1 módosított fájl, 0 hozzáadás és 21 törlés
  1. 0 21
      logoPlayer/galgas-sources/logoPlayer-lexique.galgas

+ 0 - 21
logoPlayer/galgas-sources/logoPlayer-lexique.galgas

@@ -54,27 +54,6 @@ rule '0'->'9' {
   send $integer$
 }
 
-# Literal character strings
-
-style stringStyle -> "String Constants"
-$"string"$ ! tokenString style stringStyle %nonAtomicSelection error message "a character string constant \"...\""
-
-
-message incorrectStringEnd : "string does not end with '\"'"
-
-rule '"' {
-  repeat
-   while ' ' | '!' | '#'-> '\uFFFD' :
-    enterCharacterIntoString (!?tokenString !*)
-  end
-  select
-  case '"' :
-    send $"string"$
-  default
-    error incorrectStringEnd
-  end
-}
-
 # Delimiters
 
 style delimitersStyle -> "Delimiters"