diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-05-27 15:10:52 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-05-27 15:10:52 -0400 |
commit | be9263be5864a7cc94cab5b971af9ff02c26cc70 (patch) | |
tree | c31b9042cedaabf6f1c471ed2595caefbed49543 /src/mono_shake.sml | |
parent | c3607e368bf1d79c5ebaae2e8f9d3dba599953a5 (diff) |
Consider view declarations while shaking
Diffstat (limited to 'src/mono_shake.sml')
-rw-r--r-- | src/mono_shake.sml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mono_shake.sml b/src/mono_shake.sml index b42c9535..50c4b387 100644 --- a/src/mono_shake.sml +++ b/src/mono_shake.sml @@ -58,6 +58,7 @@ fun shake file = | ((DDatabase {expunge = n1, initialize = n2, ...}, _), (page_cs, page_es)) => (page_cs, IS.addList (page_es, [n1, n2])) | ((DTask (e1, e2), _), st) => usedVars (usedVars st e2) e1 + | ((DView (_, _, e), _), st) => usedVars st e | ((DPolicy pol, _), st) => let val e1 = case pol of |