Searched refs:json_loc (Results 1 – 1 of 1) sorted by relevance
50 def __init__(self, json_loc): argument51 logging.debug('json: %s' % json_loc)52 self.line = json_loc['line']53 self.col = json_loc['column']54 self.filename = os.path.basename(json_loc['file']) \55 if 'file' in json_loc else '(main file)'56 self.spelling = SourceLocation(json_loc['spelling']) \57 if 'spelling' in json_loc else None