Python pygments.token.Name.Class() Examples
The following are 3
code examples of pygments.token.Name.Class().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
pygments.token.Name
, or try the search function
.
Example #1
Source File: sourcewindow.py From dcc with Apache License 2.0 | 5 votes |
def actionGoto(self): cursor = self.textCursor() start = cursor.selectionStart() end = cursor.selectionEnd() selection = cursor.selectedText() log.debug("Goto asked for '%s' (%d, %d)" % (selection, start, end)) if start not in list(self.doc.binding.keys()): self.mainwin.showStatus("Goto not available. No info for: '%s'." % selection) return t = self.doc.binding[start] if t[0] == 'NAME_METHOD_INVOKE': class_, method_ = t[2].split(' -> ') if class_ == 'this': class_ = self.path else: class_ = classdot2class(class_) else: self.mainwin.showStatus( "Goto not available. Info ok: '%s' but object not supported." % selection) return log.debug( "Found corresponding method: %s -> %s in source file: %s" % (class_, method_, self.path)) if not self.mainwin.doesClassExist(class_): self.mainwin.showStatus( "Goto not available. Class: %s not in database." % class_) return self.mainwin.openSourceWindow(class_, method=method_)
Example #2
Source File: sourcewindow.py From MARA_Framework with GNU Lesser General Public License v3.0 | 5 votes |
def actionGoto(self): cursor = self.textCursor() start = cursor.selectionStart() end = cursor.selectionEnd() selection = cursor.selectedText() androconf.debug("Goto asked for '%s' (%d, %d)" % (selection, start, end)) if start not in self.doc.binding.keys(): self.mainwin.showStatus("Goto not available. No info for: '%s'." % selection) return t = self.doc.binding[start] if t[0] == 'NAME_METHOD_INVOKE': class_, method_ = t[2].split(' -> ') if class_ == 'this': class_ = self.path else: class_ = classdot2class(class_) else: self.mainwin.showStatus( "Goto not available. Info ok: '%s' but object not supported." % selection) return androconf.debug( "Found corresponding method: %s -> %s in source file: %s" % (class_, method_, self.path)) if not self.mainwin.doesClassExist(class_): self.mainwin.showStatus( "Goto not available. Class: %s not in database." % class_) return self.mainwin.openSourceWindow(class_, method=method_)
Example #3
Source File: test_kotlin.py From pygments with BSD 2-Clause "Simplified" License | 5 votes |
def test_can_cope_with_generics(lexer): fragment = u'inline fun <reified T : ContractState> VaultService.queryBy(): Vault.Page<T> {' tokens = [ (Keyword, u'inline fun'), (Text, u' '), (Punctuation, u'<'), (Keyword, u'reified'), (Text, u' '), (Name, u'T'), (Text, u' '), (Punctuation, u':'), (Text, u' '), (Name, u'ContractState'), (Punctuation, u'>'), (Text, u' '), (Name.Class, u'VaultService'), (Punctuation, u'.'), (Name.Function, u'queryBy'), (Punctuation, u'('), (Punctuation, u')'), (Punctuation, u':'), (Text, u' '), (Name, u'Vault'), (Punctuation, u'.'), (Name, u'Page'), (Punctuation, u'<'), (Name, u'T'), (Punctuation, u'>'), (Text, u' '), (Punctuation, u'{'), (Text, u'\n') ] assert list(lexer.get_tokens(fragment)) == tokens