about summary refs log tree commit diff
path: root/src/comp/front
diff options
context:
space:
mode:
authorBrian Anderson <andersrb@gmail.com>2011-03-01 19:50:27 -0500
committerGraydon Hoare <graydon@mozilla.com>2011-03-02 10:28:15 -0800
commitdbd90996ee1fd8eb996ac85f44fe17f0f3d834ca (patch)
tree944e3a014caded9460051b0eb832456e7f615629 /src/comp/front
parentc1e6f5328c3f46884ed7a7e29c780e307b02100a (diff)
downloadrust-dbd90996ee1fd8eb996ac85f44fe17f0f3d834ca.tar.gz
rust-dbd90996ee1fd8eb996ac85f44fe17f0f3d834ca.zip
Remove unused is_ext_expr
Diffstat (limited to 'src/comp/front')
-rw-r--r--src/comp/front/ast.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs
index 694a709da34..46f5716861a 100644
--- a/src/comp/front/ast.rs
+++ b/src/comp/front/ast.rs
@@ -363,17 +363,6 @@ fn is_call_expr(@expr e) -> bool {
     }
 }
 
-fn is_ext_expr(@expr e) -> bool {
-    alt (e.node) {
-        case (expr_ext(_, _, _, _, _)) {
-            ret true;
-        }
-        case (_) {
-            ret false;
-        }
-    }
-}
-
 //
 // Local Variables:
 // mode: rust