pep8analysis: add `no_warning` to generated files
authorJean Privat <jean@pryen.org>
Sat, 20 Dec 2014 13:51:58 +0000 (08:51 -0500)
committerJean Privat <jean@pryen.org>
Sat, 20 Dec 2014 19:15:21 +0000 (14:15 -0500)
Signed-off-by: Jean Privat <jean@pryen.org>

contrib/pep8analysis/src/parser/lexer.nit
contrib/pep8analysis/src/parser/parser.nit
contrib/pep8analysis/src/parser/parser_nodes.nit
contrib/pep8analysis/src/parser/parser_prod.nit

index f5b910a..96f5430 100644 (file)
@@ -1,6 +1,6 @@
 # Lexer and its tokens.
 # This file was generated by SableCC (http://www.sablecc.org/).
-module lexer
+module lexer is no_warning("missing-doc", "old-init")
 
 intrude import parser_nodes
 private import tables
index 2be9a9a..3fd9171 100644 (file)
@@ -1,6 +1,6 @@
 # Parser.
 # This file was generated by SableCC (http://www.sablecc.org/).
-module parser
+module parser is no_warning("missing-doc", "old-init")
 
 intrude import parser_prod
 import tables
index 97530a4..6aac4bc 100644 (file)
@@ -1,6 +1,6 @@
 # Raw AST node hierarchy.
 # This file was generated by SableCC (http://www.sablecc.org/).
-module parser_nodes
+module parser_nodes is no_warning("missing-doc", "old-init")
 
 import location
 
index f7fb2f7..533cdb0 100644 (file)
@@ -1,6 +1,6 @@
 # Production AST nodes full definition.
 # This file was generated by SableCC (http://www.sablecc.org/).
-module parser_prod
+module parser_prod is no_warning("missing-doc")
 
 import lexer
 intrude import parser_nodes