summaryrefslogtreecommitdiff
path: root/mesonbuild/ast/interpreter.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/ast/interpreter.py')
-rw-r--r--mesonbuild/ast/interpreter.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/mesonbuild/ast/interpreter.py b/mesonbuild/ast/interpreter.py
index cd8156a3f..271ad7d6d 100644
--- a/mesonbuild/ast/interpreter.py
+++ b/mesonbuild/ast/interpreter.py
@@ -13,7 +13,6 @@ from .. import mparser, mesonlib
from .. import environment
from ..interpreterbase import (
- MesonInterpreterObject,
InterpreterBase,
InvalidArguments,
BreakRequest,
@@ -60,27 +59,6 @@ if T.TYPE_CHECKING:
UMinusNode,
)
-class DontCareObject(MesonInterpreterObject):
- pass
-
-class MockExecutable(MesonInterpreterObject):
- pass
-
-class MockStaticLibrary(MesonInterpreterObject):
- pass
-
-class MockSharedLibrary(MesonInterpreterObject):
- pass
-
-class MockCustomTarget(MesonInterpreterObject):
- pass
-
-class MockRunTarget(MesonInterpreterObject):
- pass
-
-ADD_SOURCE = 0
-REMOVE_SOURCE = 1
-
_T = T.TypeVar('_T')
_V = T.TypeVar('_V')
@@ -232,9 +210,6 @@ class AstInterpreter(InterpreterBase):
def evaluate_indexing(self, node: IndexNode) -> int:
return 0
- def unknown_function_called(self, func_name: str) -> None:
- pass
-
def reduce_arguments(
self,
args: mparser.ArgumentNode,