本文整理汇总了Python中formatter.Formatter.addLine方法的典型用法代码示例。如果您正苦于以下问题:Python Formatter.addLine方法的具体用法?Python Formatter.addLine怎么用?Python Formatter.addLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类formatter.Formatter
的用法示例。
在下文中一共展示了Formatter.addLine方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: formatProperties
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def formatProperties(namespace):
formatter = Formatter(METHOD_INDENTATION)
for property in namespace['properties']:
formatter.add(generatePropertyJSDoc(property))
formatter.addLine(convertKey(property['name']), ':null,')
formatter.newLine()
return formatter.getResult()
示例2: formatMethods
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def formatMethods(namespace):
formatter = Formatter(METHOD_INDENTATION)
for method in namespace['methods']:
formatter.add(generateMethodJSDoc(method))
formatter.addLine('this.', convertIds(method['name']), ' = function(', formatParams(method['parameters']), ") {")
formatter.addLine('};')
formatter.newLine()
return formatter.getResult()
示例3: extendGlobal
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def extendGlobal(name, namespace):
formatter = Formatter(METHOD_INDENTATION)
for method in namespace['methods']:
formatter.add(generateMethodJSDoc(method))
formatter.addLine(name, '.prototype.', convertKey(method['name']), ' = function(', formatParams(method['parameters']), ") {")
formatter.addLine('};')
formatter.newLine()
return formatter.getResult()
示例4: formatGlobal
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def formatGlobal(namespace):
formatter = Formatter(METHOD_INDENTATION)
for method in namespace['methods']:
formatter.add(generateMethodJSDoc(method))
formatter.addLine('function ', convertKey(method['name']), '(', formatParams(method['parameters']), ") {")
formatter.addLine('}')
formatter.newLine()
return formatter.getResult()
示例5: formatMethods
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def formatMethods(namespace):
formatter = Formatter(METHOD_INDENTATION)
key = 'methods' if 'methods' in namespace else 'method'
for method in namespace[key]:
formatter.add(generateMethodJSDoc(method))
formatter.addLine(convertKey(method['name']), ':function(', formatParams(method['parameters']), ") {")
formatter.addLine('},')
formatter.newLine()
return formatter.getResult()
示例6: formatNamespace
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def formatNamespace(namespace):
namespaceName = convertIds(namespace[0])
namespaceContent = namespace[1]
formatter = Formatter()
formatter.add(generateNamespaceJSDoc(namespaceContent))
formatter.addLine(namespaceName, ' = (function() {').newLine()
formatter.addLine(formatProperties(namespaceContent))
formatter.addLine(formatMethods(namespaceContent))
formatter.addLine('}());').newLine()
return formatter.getResult()
示例7: generatePropertyJSDoc
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def generatePropertyJSDoc(property):
formatter = Formatter(METHOD_INDENTATION)
formatter.addLine('/**')
prefix = ' * '
if KEYS['value'] in property:
formatter.addLine(prefix, property[KEYS['value']])
if 'since' in property:
formatter.addLine(prefix, 'platforms: ', ', '.join(getPlatforms(property['platforms'])))
formatter.addLine(prefix, '@type ', formatType(property['type']))
sinceVer = formatSince(property)
if sinceVer:
formatter.addLine(prefix, '@since ', sinceVer)
formatter.addLine(' */')
return convertLinks(formatter.getResult())
示例8: formatNamespace
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def formatNamespace(namespace):
namespaceName = convertIds(namespace[0])
namespaceContent = namespace[1]
formatter = Formatter()
formatter.add(generateNamespaceJSDoc(namespaceContent))
if namespaceName.find('.') < 0:
if namespaceName == 'Global': # ie. Global.alert -> alert()
formatter.add(formatGlobal(namespaceContent))
return formatter.getResult();
formatter.add('var ')
if namespaceName == 'Titanium':
namespaceName = 'Ti'
elif namespaceName.startswith('Global.'): # ie. Global.String prototype extension
formatter.add(extendGlobal(namespaceName[7:], namespaceContent))
return formatter.getResult();
if 'subtype' in namespaceContent and namespaceContent['subtype'] == 'proxy':
formatter.addLine(namespaceName, ' = function() {').addLine('};')
formatter.addLine(namespaceName, '.prototype = {').newLine()
else:
formatter.addLine(namespaceName, ' = {').newLine()
formatter.addLine(formatProperties(namespaceContent))
formatter.addLine(formatMethods(namespaceContent))
formatter.addLine('};').newLine()
return formatter.getResult()
示例9: generateNamespaceJSDoc
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def generateNamespaceJSDoc(namespace):
formatter = Formatter()
formatter.addLine('/**')
prefix = ' * '
if 'notes' in namespace and namespace['notes']:
formatter.addLine(prefix, 'Notes: ', namespace['notes'])
if 'platforms' in namespace:
formatter.addLine(prefix, 'platforms: ', ', '.join(getPlatforms(namespace['platforms'])))
if namespace['description']:
formatter.addLine(prefix, '@namespace ', namespace['description'])
if 'since' in namespace:
formatter.addLine(prefix, '@since ', namespace['since'])
if 'examples' in namespace:
for example in namespace['examples']:
formatter.addLine(prefix)
formatter.addLine(prefix, '@example ', example['description'])
formatter.addLine(prefix, example['code'])
formatter.addLine(' */')
return convertLinks(formatter.getResult())
示例10: generateMethodJSDoc
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def generateMethodJSDoc(method):
formatter = Formatter(METHOD_INDENTATION)
formatter.addLine('/**')
prefix = ' * '
if KEYS['value'] in method:
formatter.addLine(prefix, method[KEYS['value']])
if 'platforms' in method and 'since' in method:
formatter.addLine(prefix, 'platforms: ', ', '.join(getPlatforms(method['platforms'])))
for param in method['parameters']:
formatter.addLine(prefix, '@param {', formatType(param['type']), '} ',
convertIds(param['name']), ' ', (param[KEYS['description']] if KEYS['description'] in param else param['description'] ) or '')
if 'returntype' in method and method['returntype'] == 'void':
formatter.addLine(prefix, '@returns ', method['returntype'])
elif 'returns' in method:
returns = method['returns']
if type(returns) is list:
for ret in returns:
if ret['type'] != 'void':
formatter.addLine(prefix, '@returns ', formatReturn(ret))
elif returns['type'] != 'void':
formatter.addLine(prefix, '@returns ', formatReturn(returns))
sinceVer = formatSince(method)
if sinceVer:
formatter.addLine(prefix, '@since ', sinceVer)
formatter.addLine(' */')
return convertLinks(formatter.getResult())
示例11: generateMethodJSDoc
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def generateMethodJSDoc(method):
formatter = Formatter(METHOD_INDENTATION)
formatter.addLine('/**')
prefix = ' * '
formatter.addLine(prefix, method['value'])
formatter.addLine(prefix, 'platforms:', ', '.join(method['platforms']))
for param in method['parameters']:
formatter.addLine(prefix, '@param {', param['type'], '} ', convertIds(param['name']), ' ', param['description'])
if method['returntype'] != 'void':
formatter.addLine(prefix, '@returns {', method['returntype'] + '}')
formatter.addLine(' * ', '@since ', method['since'])
formatter.addLine(' */')
return convertLinks(formatter.getResult())
示例12: generatePropertyJSDoc
# 需要导入模块: from formatter import Formatter [as 别名]
# 或者: from formatter.Formatter import addLine [as 别名]
def generatePropertyJSDoc(property):
formatter = Formatter(METHOD_INDENTATION)
formatter.addLine('/**')
prefix = ' * '
formatter.addLine(prefix, property['value'])
formatter.addLine(prefix, 'platforms:', ', '.join(property['platforms']))
formatter.addLine(prefix, '@type ', property['type'])
formatter.addLine(prefix, '@since ', property['since'])
formatter.addLine(' */')
return convertLinks(formatter.getResult())