-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlox_function.h
44 lines (40 loc) · 1.78 KB
/
lox_function.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* lox_function.h
* This file defines the LoxFunction class, which represents a user-defined function in the Lox language.
* Each LoxFunction has a Function declaration, an Environment pointer (representing the lexical environment where the function was defined),
* and a boolean indicating whether it is an initializer of a class.
*
* The LoxFunction class provides methods for binding an instance (for methods), calling the function, getting the arity (number of parameters),
* and converting the function to a string.
*
* The Bind method is used for methods to bind the instance to the function's environment.
* The Call method executes the function with the given arguments.
* The Arity method returns the number of parameters the function expects.
* The ToString method returns a string representation of the function.
*/
#ifndef LOX_FUNCTION_H
#define LOX_FUNCTION_H
#include "visit_call_expr.h"
#include "environment.h"
#include "expr.h"
class Interpreter;
class LoxFunction : public LoxCallable
{
public:
LoxFunction() = default;
LoxFunction(Function declaration, Environment *closure, bool isInitializer);
~LoxFunction();
// used for methods to bind the instance to the function's environment.
LoxFunction *Bind(LoxInstance *instance);
// executes the function with the given arguments.
Object Call(Interpreter *interpreter, std::vector<Object> arguments);
// returns the number of parameters the function expects.
int Arity();
private:
Function declaration; // the function declaration
Environment *closure; // the lexical environment where the function was defined
bool is_initializer; // whether it is an initializer of a class
// returns a string representation of the function.
std::string ToString();
};
#endif // LOX_FUNCTION_H