예제 #1
0
파일: testTNSDL.py 프로젝트: jannero/lizard
 def get_tnsdl_fileinfo(self, source_code):
     return analyze_file.analyze_source_code_with_parser("", source_code, SDLReader())
예제 #2
0
파일: testObjC.py 프로젝트: jannero/lizard
 def create_objc_lizard(self, source_code):
     return analyze_file.analyze_source_code_with_parser("", source_code, ObjCReader()).function_list
예제 #3
0
 def get_tnsdl_fileinfo(self, source_code):
     return analyze_file.analyze_source_code_with_parser(
         "", source_code, SDLReader())
예제 #4
0
def get_cpp_fileinfo(source_code):
    return analyze_file.analyze_source_code_with_parser("", source_code, CLikeReader())
예제 #5
0
 def create_objc_lizard(self, source_code):
     return analyze_file.analyze_source_code_with_parser(
         "", source_code, ObjCReader()).function_list