class Dhall::Operator::ListConcatenate
Public Instance Methods
normalize()
click to toggle source
Calls superclass method
Dhall::Expression#normalize
# File lib/dhall/normalize.rb, line 229 def normalize normalized = super case normalized.rhs when EmptyList normalized.lhs else normalized.lhs.concat(normalized.rhs) end end