@@ -54,25 +54,30 @@ def _boxed_string(string: str, **options):
54
54
return StyleBox (String (string ), ** options )
55
55
56
56
57
- def eval_fullform_makeboxes (self , expr , evaluation , form = SymbolStandardForm ):
57
+ def eval_fullform_makeboxes (
58
+ self , expr , evaluation : Evaluation , form = SymbolStandardForm
59
+ ) -> Expression :
58
60
"""
59
61
This function takes the definitions provided by the evaluation
60
62
object, and produces a boxed form for expr.
63
+
64
+ Basically: MakeBoxes[expr // FullForm]
61
65
"""
62
66
# This is going to be reimplemented.
63
67
expr = Expression (SymbolFullForm , expr )
64
68
return Expression (SymbolMakeBoxes , expr , form ).evaluate (evaluation )
65
69
66
70
67
- def eval_makeboxes (self , expr , evaluation , form = SymbolStandardForm ):
71
+ def eval_makeboxes (
72
+ self , expr , evaluation : Evaluation , form = SymbolStandardForm
73
+ ) -> Expression :
68
74
"""
69
75
This function takes the definitions provided by the evaluation
70
- object, and produces a boxed form for expr.
76
+ object, and produces a boxed fullform for expr.
71
77
72
- Basically: MakeBoxes[expr // FullForm ]
78
+ Basically: MakeBoxes[expr // form ]
73
79
"""
74
80
# This is going to be reimplemented.
75
- expr = Expression (SymbolFullForm , expr )
76
81
return Expression (SymbolMakeBoxes , expr , form ).evaluate (evaluation )
77
82
78
83
0 commit comments