Example #1
0
 def setUpClass(cls):
     cls.parsed = parsing.FrameworkParser(
         "fragments",
         start_header="basic_function.h",
         sdk=xcode.path_for_default_sdk(),
         cflags=["-isystem", str(FRAGMENTS)],
     )
     cls.parsed.parse()
Example #2
0
 def parse(self, fragment):
     self.parsed = parsing.FrameworkParser(
         "fragments",
         start_header=fragment,
         sdk=xcode.path_for_default_sdk(),
         cflags=["-isystem", str(FRAGMENTS)],
     )
     self.parsed.parse()