From 7eef42c72cc172a1ed8087e842905f42e737131d Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 5 Feb 2010 11:58:41 -0500 Subject: "Support" the #version directive. --- dimension/lexer.l | 1 + 1 file changed, 1 insertion(+) (limited to 'dimension/lexer.l') diff --git a/dimension/lexer.l b/dimension/lexer.l index 953ef9b..90c4807 100644 --- a/dimension/lexer.l +++ b/dimension/lexer.l @@ -216,6 +216,7 @@ unsigned long wchar; "#include" RETURN_TOKEN(DMNSN_T_INCLUDE); "#local" RETURN_TOKEN(DMNSN_T_LOCAL); "#undef" RETURN_TOKEN(DMNSN_T_UNDEF); +"#version" RETURN_TOKEN(DMNSN_T_VERSION); "#while" RETURN_TOKEN(DMNSN_T_WHILE); (?# Identifiers) -- cgit v1.2.3