Mercurial > urweb
diff src/settings.sml @ 1966:b15a4c2cb542
neverInline
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sun, 09 Feb 2014 19:29:36 -0500 |
parents | 3cc14f1e47d1 |
children | b2254554542f |
line wrap: on
line diff
--- a/src/settings.sml Sun Jan 19 14:31:55 2014 -0500 +++ b/src/settings.sml Sun Feb 09 19:29:36 2014 -0500 @@ -688,6 +688,10 @@ fun addAlwaysInline s = alwaysInline := SS.add (!alwaysInline, s) fun checkAlwaysInline s = SS.member (!alwaysInline, s) +val neverInline = ref SS.empty +fun addNeverInline s = neverInline := SS.add (!neverInline, s) +fun checkNeverInline s = SS.member (!neverInline, s) + val noXsrfProtection = ref SS.empty fun addNoXsrfProtection s = noXsrfProtection := SS.add (!noXsrfProtection, s) fun checkNoXsrfProtection s = SS.member (!noXsrfProtection, s)