NewIdent creates a new identifier expression. Examples: - simple_var_name - qualified.subpackage.var_name
(name string)
| 381 | // - simple_var_name |
| 382 | // - qualified.subpackage.var_name |
| 383 | func (opt *optimizerExprFactory) NewIdent(name string) ast.Expr { |
| 384 | return opt.fac.NewIdent(opt.nextID(), name) |
| 385 | } |
| 386 | |
| 387 | // NewLiteral creates a new literal expression value. |
| 388 | // |