(conf_list,cfg,access,message)
| 336 | |
| 337 | # Naming check for Global, Private and Public member variables |
| 338 | def check_gpp_naming(conf_list,cfg,access,message): |
| 339 | for var in cfg.variables: |
| 340 | if var.access != access: |
| 341 | continue |
| 342 | mockToken = DataStruct(var.typeStartToken.file, var.typeStartToken.linenr, var.nameToken.str, var.nameToken.column) |
| 343 | for exp in conf_list: |
| 344 | evalExpr(conf_list, exp, mockToken, message) |
| 345 | |
| 346 | def check_function_naming(conf,cfg,debugprint): |
| 347 | for token in cfg.tokenlist: |
no test coverage detected