We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d71de9 commit 38d2174Copy full SHA for 38d2174
.editorconfig
@@ -6,7 +6,7 @@ indent_size = 4
6
end_of_line = lf
7
charset = utf-8
8
trim_trailing_whitespace = true
9
-insert_final_newline = false
+insert_final_newline = true
10
11
[{meson.build,meson_options.txt}]
12
indent_size = 2
src/frontend/interpreter.l
@@ -2,6 +2,7 @@
2
/* Copyright © 2021 Intel Corporation */
3
4
%option noyywrap
5
+%option nodefault
%{
%}
@@ -11,7 +12,6 @@
, { std::cout << "comma" << std::endl;}
13
[0-9]+ { std::cout << "number: " << yytext << std::endl; }
14
[a-zA-Z0-9_.+-]+ { std::cout << "string: " << yytext << std::endl; }
-. { }
15
16
%%
17
@@ -22,4 +22,4 @@ int main() {
22
;
23
}
24
return 0;
25
-}
+}
0 commit comments