feat: add MAX_VARIABLE_NAME limit and improve field overflow error message

Add a 64-character maximum identifier length with compile-time error reporting, and enhance the runtime field overflow error to include the class name and remove the TODO comment. Update test expectations for both limit scenarios.
This commit is contained in:
Bob Nystrom
2014-04-22 14:06:26 +00:00
parent 74ca0d8aad
commit 8abbc4197c
8 changed files with 37 additions and 23 deletions
+2 -2
View File
@@ -158,13 +158,13 @@ nav {
}
h2 {
font: normal 24px $header;
font: normal 30px $header;
margin: 24px 0 0 0;
color: $blue;
}
h3 {
font: normal 20px $header;
font: normal 24px $header;
margin: 24px 0 0 0;
color: $blue;
}