示例#1
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
     self.__installed_assets = set()
     self.default_license = None
     self.default_code_samples_license = None
     self.default_copyright_holders = []
     self.authors_hold_copyright = True
示例#2
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
     self.project = project
     self.flags = []
     if not CExtension.connected:
         inclusions.include_signal.connect(self.__include_file_cb)
         CExtension.connected = True
     self.scanner = ClangScanner(self.app, self.project, self)
示例#3
0
 def __init__(self, app, project):
     self.__local_repo = None
     self.__remote_branch = None
     self.__commit_message = None
     self.__copy_only = False
     self.__repository = None
     self.__activate = False
     Extension.__init__(self, app, project)
示例#4
0
    def __init__(self, app, project):
        Extension.__init__(self, app, project)

        self.languages = None

        self.__all_sources = None
        self.__current_output_filename = None
        self.__class_gtype_structs = {}
        self.__default_page = DEFAULT_PAGE
        self.created_symbols = set()
        self.__raw_comment_parser = GtkDocParser(self.project)
        self.__c_comment_extractor = CCommentExtractor(
            self, self.__raw_comment_parser)
示例#5
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
     self.__symbols_database = None
示例#6
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
     self.__ext_languages = defaultdict(set)
     self.__online = None
示例#7
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
     self.__ext_languages = defaultdict(set)
     self.__resolved_symbols_map = {}
示例#8
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
示例#9
0
 def __init__(self, app, project):
     self.__repo = None
     self.__repo_root = None
     self.__branch = None
     Extension.__init__(self, app, project)
示例#10
0
 def __init__(self, app, project):
     self.__repo = None
     Extension.__init__(self, app, project)
示例#11
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
     self.__all_paths = []
     self.script = os.path.abspath(os.path.join(HERE, 'trie.js'))
示例#12
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
     self.__asset_folders = set()
     self.activated = False
示例#13
0
 def __init__(self, app, project):
     Extension.__init__(self, app, project)
     if not SearchExtension.connected:
         app.formatted_signal.connect(self.__build_index)
         SearchExtension.connected = True
     self.script = os.path.abspath(os.path.join(HERE, 'trie.js'))