first impl of builtin member methods (thus far, string.size implemented. more to...
[aqualang.git] / src / private.h
blob9f868e166401fcead5754393935010d989fb6b18
2 #include "jtc.h"
4 //! todo: create a wrapper method ...
5 //namespace Stdlib
6 //{
7 //namespace FileClass
8 //{
9 void rt_file_read(Interpreter& ip, std::vector<Interpreter::Value>& stack);
10 void rt_file_close(Interpreter& ip, std::vector<Interpreter::Value>& stack);
11 void rt_file_constructor(Interpreter& ip, std::vector<Interpreter::Value>& stack);
12 //}
14 void print(Interpreter&, std::vector<Interpreter::Value> &stack);
15 void readline(Interpreter&, std::vector<Interpreter::Value> &stack);
16 void children(Interpreter&, std::vector<Interpreter::Value> &stack);
17 void tokens(Interpreter&, std::vector<Interpreter::Value> &stack);
18 void expand_node(Interpreter&, std::vector<Interpreter::Value> &stack);
19 void tostring(Interpreter&, std::vector<Interpreter::Value> &stack);
20 void tonumber(Interpreter&, std::vector<Interpreter::Value> &stack);
21 //}