aboutsummaryrefslogtreecommitdiff
path: root/source/primitives/core.d
diff options
context:
space:
mode:
authorAdrian Kummerlaender2017-04-15 18:16:39 +0200
committerAdrian Kummerlaender2017-04-15 18:16:39 +0200
commit568e457d5f879633adc8a33d8c2979d563556868 (patch)
tree1c5ec482edb0c6643b32278a2eb2e31a37dfa734 /source/primitives/core.d
parentbce4d934a47023096e74ac39ed4d3a2cd99bc8e4 (diff)
downloadslang-568e457d5f879633adc8a33d8c2979d563556868.tar
slang-568e457d5f879633adc8a33d8c2979d563556868.tar.gz
slang-568e457d5f879633adc8a33d8c2979d563556868.tar.bz2
slang-568e457d5f879633adc8a33d8c2979d563556868.tar.lz
slang-568e457d5f879633adc8a33d8c2979d563556868.tar.xz
slang-568e457d5f879633adc8a33d8c2979d563556868.tar.zst
slang-568e457d5f879633adc8a33d8c2979d563556868.zip
Handle definition, conditional primitive words in respective modules
Diffstat (limited to 'source/primitives/core.d')
-rw-r--r--source/primitives/core.d5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/primitives/core.d b/source/primitives/core.d
index 45bbeac..07ed0c7 100644
--- a/source/primitives/core.d
+++ b/source/primitives/core.d
@@ -3,14 +3,9 @@ module primitives.core;
import std.stdio;
import base.stack;
-import definition = base.definition;
Token[string] variables;
-void definition_start() {
- definition.start;
-}
-
void binary_op_variable_bind() {
string name = stack.pop.get!string;
Token value = stack.pop;