]> git.saurik.com Git - cycript.git/blobdiff - Replace.hpp
Updated copyright and licenses.
[cycript.git] / Replace.hpp
index 493ea30a2cf8df41e17d55d956be91b8770f90c1..3c4a6b799c15392696e4a9817b74f07dfe620d7e 100644 (file)
@@ -1,4 +1,4 @@
-/* Cycript - Error.hppution Server and Disassembler
+/* Cycript - Inlining/Optimizing JavaScript Compiler
  * Copyright (C) 2009  Jay Freeman (saurik)
 */
 
@@ -59,6 +59,8 @@
     ($ CYFunctionParameter(args))
 #define $S(args...) \
     ($ CYString(args))
+#define $U \
+    $V("undefined")
 #define $V(name) \
     ($ CYVariable($I(name)))
 
 #define $N5(func, args...) \
     $N(func, $C5_(args))
 
+#define $L(args...) \
+    $ CYDeclaration(args)
+#define $L1(arg0) \
+    $ CYDeclarations(arg0)
+#define $L2(arg0, args...) \
+    $ CYDeclarations(arg0, $L1(args))
+#define $L3(arg0, args...) \
+    $ CYDeclarations(arg0, $L2(args))
+#define $L4(arg0, args...) \
+    $ CYDeclarations(arg0, $L3(args))
+#define $L5(arg0, args...) \
+    $ CYDeclarations(arg0, $L4(args))
+
 #endif/*REPLACE_HPP*/