Simplified constant folding
This commit is contained in:
@ -17,31 +17,11 @@ func (f *Function) Fold(expr *expression.Expression) error {
|
||||
}
|
||||
|
||||
if expr.IsLeaf() {
|
||||
if expr.Token.IsNumeric() {
|
||||
value, err := f.ToNumber(expr.Token)
|
||||
expr.Value = value
|
||||
expr.IsFolded = true
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
return f.FoldLeaf(expr)
|
||||
}
|
||||
|
||||
if expr.Token.Kind == token.Period {
|
||||
left := expr.Children[0]
|
||||
leftText := left.Token.Text(f.File.Bytes)
|
||||
right := expr.Children[1]
|
||||
rightText := right.Token.Text(f.File.Bytes)
|
||||
constant, isConst := f.All.Constants[f.Package+"."+leftText+"."+rightText]
|
||||
|
||||
if !isConst {
|
||||
return nil
|
||||
}
|
||||
|
||||
value, err := ToNumber(constant.Token, constant.File)
|
||||
expr.Value = value
|
||||
expr.IsFolded = true
|
||||
return err
|
||||
return f.FoldConstant(expr)
|
||||
}
|
||||
|
||||
canFold := true
|
||||
|
23
src/core/FoldConstant.go
Normal file
23
src/core/FoldConstant.go
Normal file
@ -0,0 +1,23 @@
|
||||
package core
|
||||
|
||||
import (
|
||||
"git.urbach.dev/cli/q/src/expression"
|
||||
)
|
||||
|
||||
// FoldConstant tries to find a constant that can be folded.
|
||||
func (f *Function) FoldConstant(expr *expression.Expression) error {
|
||||
left := expr.Children[0]
|
||||
right := expr.Children[1]
|
||||
leftText := left.Token.Text(f.File.Bytes)
|
||||
rightText := right.Token.Text(f.File.Bytes)
|
||||
constant, exists := f.All.Constants[f.Package+"."+leftText+"."+rightText]
|
||||
|
||||
if !exists {
|
||||
return nil
|
||||
}
|
||||
|
||||
value, err := ToNumber(constant.Token, constant.File)
|
||||
expr.Value = value
|
||||
expr.IsFolded = true
|
||||
return err
|
||||
}
|
17
src/core/FoldLeaf.go
Normal file
17
src/core/FoldLeaf.go
Normal file
@ -0,0 +1,17 @@
|
||||
package core
|
||||
|
||||
import (
|
||||
"git.urbach.dev/cli/q/src/expression"
|
||||
)
|
||||
|
||||
// FoldLeaf tries to fold a leaf expression.
|
||||
func (f *Function) FoldLeaf(expr *expression.Expression) error {
|
||||
if !expr.Token.IsNumeric() {
|
||||
return nil
|
||||
}
|
||||
|
||||
value, err := f.ToNumber(expr.Token)
|
||||
expr.Value = value
|
||||
expr.IsFolded = true
|
||||
return err
|
||||
}
|
Reference in New Issue
Block a user