(c *Const)
| 10 | ) |
| 11 | |
| 12 | func (g *pyGen) genConst(c *Const) { |
| 13 | if isPyCompatVar(c.sym) != nil { |
| 14 | return |
| 15 | } |
| 16 | if c.sym.isSignature() { |
| 17 | return |
| 18 | } |
| 19 | g.genConstValue(c) |
| 20 | } |
| 21 | |
| 22 | func (g *pyGen) genVar(v *Var) { |
| 23 | if isPyCompatVar(v.sym) != nil { |
no test coverage detected