| 679 | } |
| 680 | |
| 681 | TypeDeclPtr Module::findAlias ( const string & na ) const { |
| 682 | return aliasTypes.find(na); |
| 683 | } |
| 684 | |
| 685 | VariablePtr Module::findVariable ( const string & na ) const { |
| 686 | return globals.find(na); |
nothing calls this directly
no test coverage detected