aboutsummaryrefslogtreecommitdiffstats
path: root/modelica-parser-lalrpop/src/ast.rs
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-12-26 05:02:38 -0800
committerbnewbold <bnewbold@robocracy.org>2016-12-26 05:02:38 -0800
commitf97396ea89704ff2ccab28d7b27ceeeb3201ddd0 (patch)
tree366af1d133cdca89cfe1329194f2e9081f253272 /modelica-parser-lalrpop/src/ast.rs
parent3983ac71d8911234342386aed897d6d2f9fef13f (diff)
downloadmodelthing-f97396ea89704ff2ccab28d7b27ceeeb3201ddd0.tar.gz
modelthing-f97396ea89704ff2ccab28d7b27ceeeb3201ddd0.zip
parser: fix string_literals
Diffstat (limited to 'modelica-parser-lalrpop/src/ast.rs')
-rw-r--r--modelica-parser-lalrpop/src/ast.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/modelica-parser-lalrpop/src/ast.rs b/modelica-parser-lalrpop/src/ast.rs
index f31681e..f1e7d93 100644
--- a/modelica-parser-lalrpop/src/ast.rs
+++ b/modelica-parser-lalrpop/src/ast.rs
@@ -224,6 +224,9 @@ impl SimpleEquation {
impl Debug for ModelicaModel {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error> {
try!(write!(fmt, "model {}\n", self.name));
+ if let Some(ref desc) = self.description {
+ try!(write!(fmt, " \"{}\"\n", desc));
+ }
for v in self.components.iter() {
try!(write!(fmt, " {:?};\n", v));
}