Moved things into core/
This commit is contained in:
parent
2daebbff27
commit
1cbf9f3e07
@ -10,3 +10,4 @@ export "core/math"
|
|||||||
export "core/id"
|
export "core/id"
|
||||||
export "core/io"
|
export "core/io"
|
||||||
export "core/text"
|
export "core/text"
|
||||||
|
export "core/things"
|
||||||
|
@ -2,17 +2,22 @@
|
|||||||
#
|
#
|
||||||
A library for simple object oriented programming.
|
A library for simple object oriented programming.
|
||||||
|
|
||||||
|
use "core/metaprogramming"
|
||||||
|
use "core/operators"
|
||||||
|
use "core/control_flow"
|
||||||
|
use "core/collections"
|
||||||
|
use "core/errors"
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
test:
|
test:
|
||||||
an (Empty) is a thing
|
an (Empty) is a thing
|
||||||
a (Buffer) is a thing:
|
a (Buffer) is a thing:
|
||||||
$its.is_a_buffer = (yes)
|
$its.is_a_buffer = (yes)
|
||||||
($its, set up) means:
|
($its, set up) means:
|
||||||
$its.bits or= []
|
$its.bits or= []
|
||||||
($it, as text) means
|
($it, as text) means ($it.bits, joined)
|
||||||
$it.bits, joined
|
[($its, add $bit), ($its, append $bit)] all mean: $its.bits, add $bit
|
||||||
[($its, add $bit), ($its, append $bit)] all mean:
|
|
||||||
$its.bits, add $bit
|
|
||||||
|
|
||||||
assume (Buffer).is_a_buffer
|
assume (Buffer).is_a_buffer
|
||||||
$b = (a Buffer)
|
$b = (a Buffer)
|
||||||
assume (type of $b) == "Buffer"
|
assume (type of $b) == "Buffer"
|
||||||
@ -26,11 +31,9 @@ test:
|
|||||||
assume "\$b" == "xyz"
|
assume "\$b" == "xyz"
|
||||||
assume $b == (a Buffer with {.bits = ["x", "y", "z"]})
|
assume $b == (a Buffer with {.bits = ["x", "y", "z"]})
|
||||||
assume $b != (a Buffer with {.bits = []})
|
assume $b != (a Buffer with {.bits = []})
|
||||||
|
|
||||||
a (Comma Buffer) is a (Buffer):
|
a (Comma Buffer) is a (Buffer):
|
||||||
($it, as text) means ($it.bits, joined with ",")
|
($it, as text) means ($it.bits, joined with ",")
|
||||||
($its, number of commas) means ((#$its.bits) - 1)
|
($its, number of commas) means ((#$its.bits) - 1)
|
||||||
|
|
||||||
$csv = (a Comma Buffer)
|
$csv = (a Comma Buffer)
|
||||||
assume $csv.is_a_buffer
|
assume $csv.is_a_buffer
|
||||||
assume "\$csv" == ""
|
assume "\$csv" == ""
|
||||||
@ -38,7 +41,6 @@ test:
|
|||||||
$csv, add "y"
|
$csv, add "y"
|
||||||
assume "\$csv" == "x,y"
|
assume "\$csv" == "x,y"
|
||||||
assume ($csv, number of commas) == 1
|
assume ($csv, number of commas) == 1
|
||||||
|
|
||||||
a (Vec) is a thing with {.x, .y}:
|
a (Vec) is a thing with {.x, .y}:
|
||||||
($its, + $other) means (Vec {.x = ($its.x + $other.x), .y = ($its.y + $other.y)})
|
($its, + $other) means (Vec {.x = ($its.x + $other.x), .y = ($its.y + $other.y)})
|
||||||
|
|
||||||
@ -79,8 +81,7 @@ external:
|
|||||||
fail "Cannot set \$key, it's not one of the allowed member fields."
|
fail "Cannot set \$key, it's not one of the allowed member fields."
|
||||||
|
|
||||||
set $class's metatable to {
|
set $class's metatable to {
|
||||||
.__index = $parent
|
.__index = $parent, .__tostring = ($class -> $class.__type)
|
||||||
.__tostring = ($class -> $class.__type)
|
|
||||||
.__call =
|
.__call =
|
||||||
for ($class with $initial_values):
|
for ($class with $initial_values):
|
||||||
if ($initial_values == (nil)): return $class
|
if ($initial_values == (nil)): return $class
|
||||||
@ -107,7 +108,8 @@ external:
|
|||||||
$class_id = ($classname.stub, as lua id)
|
$class_id = ($classname.stub, as lua id)
|
||||||
$lua =
|
$lua =
|
||||||
Lua ("
|
Lua ("
|
||||||
\$class_id = a_1_class_named_2_with(\($parent as lua), \(quote $classname.stub), \($members as lua)\(
|
\$class_id = a_1_class_named_2_with(\($parent as lua), \(quote $classname.stub), \
|
||||||
|
..\($members as lua)\(
|
||||||
(
|
(
|
||||||
Lua ("
|
Lua ("
|
||||||
, function(\$class_id)
|
, function(\$class_id)
|
||||||
@ -120,7 +122,6 @@ external:
|
|||||||
a_\$class_id = function(initial_values) return \$class_id(initial_values or {}) end
|
a_\$class_id = function(initial_values) return \$class_id(initial_values or {}) end
|
||||||
an_\$class_id, a_\($class_id)_with, an_\($class_id)_with = a_\$class_id, a_\$class_id, a_\$class_id
|
an_\$class_id, a_\($class_id)_with, an_\($class_id)_with = a_\$class_id, a_\$class_id, a_\$class_id
|
||||||
")
|
")
|
||||||
|
|
||||||
$lua, add free vars [$class_id, "a_\$class_id", "an_\$class_id"]
|
$lua, add free vars [$class_id, "a_\$class_id", "an_\$class_id"]
|
||||||
return $lua
|
return $lua
|
||||||
|
|
Loading…
Reference in New Issue
Block a user