comparison src/compiler.sml @ 1966:b15a4c2cb542

neverInline
author Adam Chlipala <adam@chlipala.net>
date Sun, 09 Feb 2014 19:29:36 -0500
parents 0652f295e0fa
children 403f0cc65b9c 606af2c9b828
comparison
equal deleted inserted replaced
1963:fec7beec96c7 1966:b15a4c2cb542
867 | "monoInline" => 867 | "monoInline" =>
868 (case Int.fromString arg of 868 (case Int.fromString arg of
869 NONE => ErrorMsg.error ("invalid mono inline level '" ^ arg ^ "'") 869 NONE => ErrorMsg.error ("invalid mono inline level '" ^ arg ^ "'")
870 | SOME n => Settings.setMonoInline n) 870 | SOME n => Settings.setMonoInline n)
871 | "alwaysInline" => Settings.addAlwaysInline arg 871 | "alwaysInline" => Settings.addAlwaysInline arg
872 | "neverInline" => Settings.addNeverInline arg
872 | "noXsrfProtection" => Settings.addNoXsrfProtection arg 873 | "noXsrfProtection" => Settings.addNoXsrfProtection arg
873 | "timeFormat" => Settings.setTimeFormat arg 874 | "timeFormat" => Settings.setTimeFormat arg
874 | "noMangleSql" => Settings.setMangleSql false 875 | "noMangleSql" => Settings.setMangleSql false
875 | "html5" => Settings.setIsHtml5 true 876 | "html5" => Settings.setIsHtml5 true
876 877