Mercurial > python-compiler.rs
comparison src/python_ast.rs @ 62:d255a932553f
Fix a few warnings.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Mon, 13 Jun 2016 00:42:58 +0100 |
parents | 9f0f457a67f6 |
children | 32550e12aedf |
comparison
equal
deleted
inserted
replaced
61:6b73843c5b4a | 62:d255a932553f |
---|---|
1 #![allow(non_camel_case_types)] | |
2 | |
1 #[derive(Clone, Debug)] | 3 #[derive(Clone, Debug)] |
2 pub struct Module { | 4 pub struct Module { |
3 pub name: String, | 5 pub name: String, |
4 pub statements: Vec<stmt>, | 6 pub statements: Vec<stmt>, |
5 } | 7 } |