()
| 1261 | } |
| 1262 | |
| 1263 | func (c *compiler) endScope() { |
| 1264 | c.scopes = c.scopes[:len(c.scopes)-1] |
| 1265 | } |
| 1266 | |
| 1267 | func (c *compiler) lookupVariable(name string) (int, bool) { |
| 1268 | for i := len(c.scopes) - 1; i >= 0; i-- { |
no outgoing calls
no test coverage detected