* Is variable local. * @return true if local, false if not */
| 373 | * @return true if local, false if not |
| 374 | */ |
| 375 | bool isLocal() const { |
| 376 | return (mAccess == AccessControl::Local) && !isExtern(); |
| 377 | } |
| 378 | |
| 379 | /** |
| 380 | * Is variable a member of a user-defined type. |
nothing calls this directly
no test coverage detected