From e423a612ce4b93936f1b6c56782733bef6a425d7 Mon Sep 17 00:00:00 2001 From: suchmememanyskill Date: Sun, 25 Jul 2021 00:54:21 +0200 Subject: [PATCH] a --- source/script/arrayClass.c | 1 + source/script/standardLibrary.c | 1 + 2 files changed, 2 insertions(+) diff --git a/source/script/arrayClass.c b/source/script/arrayClass.c index 44c2dc3..fdc10c1 100644 --- a/source/script/arrayClass.c +++ b/source/script/arrayClass.c @@ -257,6 +257,7 @@ ClassFunctionTableEntry_t arrayFunctions[] = { {"copy", arrayCopy, 0, 0}, {"set", arraySet, 2, oneIntOneAny}, {"+", arrayAdd, 1, anotherAnotherOneVarArg}, + {"add", arrayAdd, 1, anotherAnotherOneVarArg}, {"-", arrayMinus, 1, anotherOneIntArg}, {"contains", arrayContains, 1, anotherAnotherOneVarArg}, {"bytestostr", bytesToStr, 0, 0}, diff --git a/source/script/standardLibrary.c b/source/script/standardLibrary.c index 80d2df2..c2d4c6b 100644 --- a/source/script/standardLibrary.c +++ b/source/script/standardLibrary.c @@ -399,6 +399,7 @@ STUBBED(stdGetMs) STUBBED(stdClear) STUBBED(stdRmDir) STUBBED(stdFileExists) +STUBBED(stdFileDel) #endif u8 oneIntoneFunction[] = { IntClass, FunctionClass };