| 96 | } ; |
| 97 | |
| 98 | const_Binding operator[]( const std::string& name) const { |
| 99 | return const_Binding( static_cast<const EnvironmentClass&>(*this), name ) ; |
| 100 | } |
| 101 | Binding operator[](const std::string& name){ |
| 102 | return Binding( static_cast<EnvironmentClass&>(*this), name ) ; |
| 103 | } |
nothing calls this directly
no test coverage detected