| 858 | } |
| 859 | |
| 860 | type evalObj struct { |
| 861 | id int64 |
| 862 | typeName string |
| 863 | fields []string |
| 864 | vals []InterpretableV2 |
| 865 | optionals []bool |
| 866 | hasOptionals bool |
| 867 | provider types.Provider |
| 868 | } |
| 869 | |
| 870 | // ID implements the Interpretable interface method. |
| 871 | func (o *evalObj) ID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected