summaryrefslogtreecommitdiff
path: root/ste.php
blob: 72d6ecaf2cc004de48685f3b68d9ae362b9eb811 (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php

namespace ste;

/* This file is for backwards compatibility only. Use an autoloader and the \kch42\ste namespace in new applications instead! */

require_once(__DIR__ . "/src/ste/Misc.php");

require_once(__DIR__ . "/src/ste/ASTNode.php");
require_once(__DIR__ . "/src/ste/TagNode.php");
require_once(__DIR__ . "/src/ste/TextNode.php");
require_once(__DIR__ . "/src/ste/VariableNode.php");

require_once(__DIR__ . "/src/ste/ParseCompileError.php");
require_once(__DIR__ . "/src/ste/RuntimeError.php");
require_once(__DIR__ . "/src/ste/FatalRuntimeError.php");

require_once(__DIR__ . "/src/ste/BreakException.php");
require_once(__DIR__ . "/src/ste/ContinueException.php");

require_once(__DIR__ . "/src/ste/StorageAccessFailure.php");
require_once(__DIR__ . "/src/ste/CantLoadTemplate.php");
require_once(__DIR__ . "/src/ste/CantSaveTemplate.php");

require_once(__DIR__ . "/src/ste/StorageAccess.php");
require_once(__DIR__ . "/src/ste/FilesystemStorageAccess.php");

require_once(__DIR__ . "/src/ste/Calc.php");

require_once(__DIR__ . "/src/ste/Parser.php");
require_once(__DIR__ . "/src/ste/Transcompiler.php");

require_once(__DIR__ . "/src/ste/VarNotInScope.php");
require_once(__DIR__ . "/src/ste/Scope.php");

require_once(__DIR__ . "/src/ste/STEStandardLibrary.php");
require_once(__DIR__ . "/src/ste/STECore.php");

/* Providing "proxy classes", so old applications can continue using the ste namespace */

class ASTNode extends \kch42\ste\ASTNode
{
}
class TagNode extends \kch42\ste\TagNode
{
}
class TextNode extends \kch42\ste\TextNode
{
}
class VariableNode extends \kch42\ste\VariableNode
{
}
class ParseCompileError extends \kch42\ste\ParseCompileError
{
}
class RuntimeError extends \kch42\ste\RuntimeError
{
}
class FatalRuntimeError extends \kch42\ste\FatalRuntimeError
{
}
class StorageAccessFailure extends \kch42\ste\StorageAccessFailure
{
}
class CantLoadTemplate extends \kch42\ste\CantLoadTemplate
{
}
class CantSaveTemplate extends \kch42\ste\CantSaveTemplate
{
}
class FilesystemStorageAccess extends \kch42\ste\FilesystemStorageAccess
{
}
class Parser extends \kch42\ste\Parser
{
}
class Transcompiler extends \kch42\ste\Transcompiler
{
}
class STECore extends \kch42\ste\STECore
{
}

interface StorageAccess extends \kch42\ste\StorageAccess
{
}

/* We also put the storage mode constants here (they were outside of the interface before for some reason I can't remember...) */

const MODE_SOURCE = \kch42\ste\StorageAccess::MODE_SOURCE;
const MODE_TRANSCOMPILED = \kch42\ste\StorageAccess::MODE_TRANSCOMPILED;