UNPKG
ifc-expressions
Version:
beta (2.3.0-beta.1)
latest (2.3.0)
2.3.0
2.3.0-beta.1
2.3.0-beta.0
2.2.0-beta.0
2.1.1
2.1.0
2.0.1
2.0.1-beta.8
2.0.1-beta.7
2.0.1-beta.6
2.0.1-beta.5
2.0.1-beta.4
2.0.1-beta.3
2.0.1-beta.2
2.0.1-beta.1
2.0.1-beta.0
2.0.0-beta.0
1.0.0-beta.0
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
Parsing and evaluation of IFC expressions
ifc-expressions
/
dist
/
compiler
/
ExprManager.d.ts
9 lines
(8 loc)
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
ParserRuleContext
}
from
"antlr4"
;
import
{
Expr
}
from
"../expression/Expr.js"
;
export
declare
class
ExprManager
{
private
readonly
contextToExpr;
constructor
(
);
registerExprWithContext
(
expr
:
Expr
<
any
>,
ctx
:
any
):
void
;
getContext
(
expr
:
Expr
<
any
>):
ParserRuleContext
; }