compiler: add and use `MModule::c_name`
[nit.git] / src / nitlight.nit
index dd40996..e466f74 100644 (file)
@@ -19,6 +19,9 @@ import highlight
 
 var toolcontext = new ToolContext
 
+# Disable `cached` because it causes issues when printing transformed AST. FIXME
+toolcontext.cached_phase.disabled = true
+
 var opt_fragment = new OptionBool("Omit document header and footer", "-f", "--fragment")
 var opt_first_line = new OptionInt("Start the source file at this line (default: 1)", 0, "--first-line")
 var opt_last_line = new OptionInt("End the source file at this line (default: to the end)", 0, "--last-line")
@@ -69,9 +72,9 @@ for mm in mmodules do
                        </style>
                        """
                else
-                       page.add_raw_html v.head_content
+                       page.add_raw_html """<link rel="stylesheet" type="text/css" href="style.css" />"""
                end
-               page.add_raw_html """<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">\n"""
+               page.add_raw_html v.head_content
                page.add_raw_html "</head><body><pre class='nit_code'>"
        end
        v.enter_visit(m)