summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorGuillermo Ramos2012-05-05 14:36:56 +0200
committerGuillermo Ramos2012-05-05 14:36:56 +0200
commit201bbad350345a63520338e74da96d4d31c8ebbc (patch)
tree920415d27331361591ae67a0ae43e881cc65b202 /io
parentf2995fef020183e0abfcafdcf726e413cdab56c8 (diff)
download7l-201bbad350345a63520338e74da96d4d31c8ebbc.tar.gz
[Io] Eliminado builder (xmlGen)
Diffstat (limited to 'io')
-rw-r--r--io/builder.io15
1 files changed, 0 insertions, 15 deletions
diff --git a/io/builder.io b/io/builder.io
deleted file mode 100644
index 482c005..0000000
--- a/io/builder.io
+++ /dev/null
@@ -1,15 +0,0 @@
-Builder := Object clone
-Builder forward := method(
- writeln("<", call message name, ">")
- call message arguments foreach(arg,
- content := self doMessage(arg)
- if (content type == "Sequence", writeln(content))
- )
- writeln("</", call message name, ">")
-)
-
-Builder ul(
- li("IO"),
- li("Lua"),
- li("Javascript")
-)