diff options
| author | Andrew Gallant (Ocelot) <[email protected]> | 2012-04-30 02:44:31 -0400 |
|---|---|---|
| committer | Andrew Gallant (Ocelot) <[email protected]> | 2012-04-30 02:44:31 -0400 |
| commit | f7be3db65e559e77355537a11a88c8657ec4c059 (patch) | |
| tree | 98a3a415d15b6a2c03b0ae7206cbb9a8df66c601 /xgbgen/expression.go | |
| parent | 91ec0c014823a869775575879de1f5585523fc39 (diff) | |
gofmt
Diffstat (limited to 'xgbgen/expression.go')
| -rw-r--r-- | xgbgen/expression.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/xgbgen/expression.go b/xgbgen/expression.go index a163692..7099c25 100644 --- a/xgbgen/expression.go +++ b/xgbgen/expression.go @@ -14,7 +14,7 @@ type Expression interface { } type BinaryOp struct { - Op string + Op string Expr1 Expression Expr2 Expression } @@ -23,7 +23,7 @@ func newBinaryOp(op string, expr1, expr2 Expression) Expression { switch { case expr1 != nil && expr2 != nil: return &BinaryOp{ - Op: op, + Op: op, Expr1: expr1, Expr2: expr2, } @@ -79,7 +79,7 @@ func (e *BinaryOp) Initialize(p *Protocol) { } type UnaryOp struct { - Op string + Op string Expr Expression } @@ -159,7 +159,7 @@ func (e *Value) String() string { return e.Reduce("", "") } -func (e *Value) Initialize(p *Protocol) { } +func (e *Value) Initialize(p *Protocol) {} type Bit struct { b uint @@ -181,7 +181,7 @@ func (e *Bit) String() string { return e.Reduce("", "") } -func (e *Bit) Initialize(p *Protocol) { } +func (e *Bit) Initialize(p *Protocol) {} type FieldRef struct { Name string @@ -273,4 +273,3 @@ func (e *SumOf) String() string { func (e *SumOf) Initialize(p *Protocol) { e.Name = SrcName(e.Name) } - |
