MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / Container

Class Container

addons/cppcheckdata.py:795–809  ·  view source on GitHub ↗

Container class -- information about containers Attributes: array-like-index-op true/false stdStringLike true/false

Source from the content-addressed store, hash-verified

793 self.scope = IdMap[self.scopeId]
794
795class Container:
796 """
797 Container class -- information about containers
798
799 Attributes:
800 array-like-index-op true/false
801 stdStringLike true/false
802 """
803 #tokenizer.cpp/tokenizer::dump
804 Id = None
805
806 def __init__(self, element):
807 self.Id = element.get('id')
808 self.arrayLikeIndexOp = element.get('array-like-index-op') == 'true'
809 self.stdStringLike = element.get('std-string-like') == 'true'
810
811class TypedefInfo:
812 """

Callers 1

iterconfigurationsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected