From 38507c697c6b5f277cabc5eb61afff14ea02da07 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 26 Apr 2009 09:02:17 -0400 Subject: Returning a blob as page result --- src/scriptcheck.sml | 1 + 1 file changed, 1 insertion(+) (limited to 'src/scriptcheck.sml') diff --git a/src/scriptcheck.sml b/src/scriptcheck.sml index 352ef46c..61676dc6 100644 --- a/src/scriptcheck.sml +++ b/src/scriptcheck.sml @@ -86,6 +86,7 @@ fun classify (ds, ps) = | EField (e, _) => hasClient e | ECase (e, pes, _) => hasClient e orelse List.exists (hasClient o #2) pes | EError (e, _) => hasClient e + | EReturnBlob {blob = e1, mimeType = e2, ...} => hasClient e1 orelse hasClient e2 | EWrite e => hasClient e | ESeq (e1, e2) => hasClient e1 orelse hasClient e2 | ELet (_, _, e1, e2) => hasClient e1 orelse hasClient e2 -- cgit v1.2.3