mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
58 lines
1.4 KiB
C
58 lines
1.4 KiB
C
#include "ast_node.h"
|
|
|
|
#include "memory.h"
|
|
#include "console_colors.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
{
|
|
//test literals
|
|
char* str = "foobar";
|
|
|
|
Literal literal = TO_STRING_LITERAL(copyString(str, strlen(str)), strlen(str));
|
|
|
|
ASTNode* node;
|
|
emitASTNodeLiteral(&node, literal);
|
|
freeLiteral(literal);
|
|
freeNode(node);
|
|
}
|
|
|
|
{
|
|
//test compound (dictionary)
|
|
char* idn = "foobar";
|
|
char* str = "hello world";
|
|
|
|
ASTNode* dictionary;
|
|
ASTNode* left;
|
|
ASTNode* right;
|
|
|
|
Literal identifier = TO_IDENTIFIER_LITERAL(copyString(idn, strlen(idn)), strlen(idn));
|
|
Literal string = TO_STRING_LITERAL(copyString(str, strlen(str)), strlen(str));
|
|
|
|
emitASTNodeCompound(&dictionary, LITERAL_DICTIONARY);
|
|
emitASTNodeLiteral(&left, identifier);
|
|
emitASTNodeLiteral(&right, string);
|
|
|
|
//grow the node if needed
|
|
if (dictionary->compound.capacity < dictionary->compound.count + 1) {
|
|
int oldCapacity = dictionary->compound.capacity;
|
|
|
|
dictionary->compound.capacity = GROW_CAPACITY(oldCapacity);
|
|
dictionary->compound.nodes = GROW_ARRAY(ASTNode, dictionary->compound.nodes, oldCapacity, dictionary->compound.capacity);
|
|
}
|
|
|
|
//store the left and right in the node
|
|
setASTNodePair(&dictionary->compound.nodes[dictionary->compound.count++], left, right);
|
|
|
|
//the real test
|
|
freeNode(dictionary);
|
|
freeLiteral(identifier);
|
|
freeLiteral(string);
|
|
}
|
|
|
|
printf(NOTICE "All good\n" RESET);
|
|
return 0;
|
|
}
|
|
|