forked from simpleclub/flutter_math
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast.dart
37 lines (35 loc) · 1.22 KB
/
ast.dart
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
/// Utilities to manipulate Flutter Math's ASTs
///
/// See also:
///
/// * [GreenNode]
/// * [SyntaxNode]
/// * [SyntaxTree]
library ast;
import 'src/ast/syntax_tree.dart';
export 'src/ast/nodes/accent.dart';
export 'src/ast/nodes/accent_under.dart';
export 'src/ast/nodes/enclosure.dart' show EnclosureNode;
export 'src/ast/nodes/equation_array.dart';
export 'src/ast/nodes/frac.dart' show FracNode;
export 'src/ast/nodes/function.dart';
export 'src/ast/nodes/left_right.dart' show LeftRightNode;
export 'src/ast/nodes/matrix.dart';
export 'src/ast/nodes/multiscripts.dart';
export 'src/ast/nodes/nary_op.dart';
export 'src/ast/nodes/over.dart';
export 'src/ast/nodes/phantom.dart';
export 'src/ast/nodes/raise_box.dart';
export 'src/ast/nodes/space.dart';
export 'src/ast/nodes/sqrt.dart' show SqrtNode;
export 'src/ast/nodes/stretchy_op.dart' show StretchyOpNode;
export 'src/ast/nodes/style.dart';
export 'src/ast/nodes/symbol.dart' show SymbolNode;
export 'src/ast/nodes/under.dart';
export 'src/ast/options.dart';
export 'src/ast/size.dart';
export 'src/ast/style.dart';
export 'src/ast/syntax_tree.dart'
hide TemporaryNode, BuildResult, PositionDependentMixin;
export 'src/ast/tex_break.dart' hide BreakResult;
export 'src/ast/types.dart';