• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript Op.nonNull函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中op/Op.nonNull函数的典型用法代码示例。如果您正苦于以下问题:TypeScript nonNull函数的具体用法?TypeScript nonNull怎么用?TypeScript nonNull使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了nonNull函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: renderModuleDeclaration

export function renderModuleDeclaration(_: ModuleDeclaration): void {
	setAst(_)

	if (_ instanceof ImportDeclaration)
		renderImportDeclarationNoLoc(_)

	else if (_ instanceof ExportNamedDeclaration) {
		const {declaration, specifiers, source} = _
		o('export ')
		if (nonNull(declaration))
			renderDeclaration(declaration)
		else {
			o('{')
			interleave(specifiers, renderExportSpecifier, ',')
			o('}')
			if (nonNull(source)) {
				o(' from ')
				renderLiteralString(source)
			}
		}

	} else if (_ instanceof ExportDefaultDeclaration) {
		o('export default ')
		renderDeclarationOrExpression(_.declaration)

	} else if (_ instanceof ExportAllDeclaration) {
		o('export * from ')
		renderLiteralString(_.source)

	} else
		throw badType(_)
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:32,代码来源:renderProgram.ts


示例2: renderContinueStatementNoLoc

export function renderContinueStatementNoLoc({label}: ContinueStatement): void {
	o('continue')
	if (nonNull(label)) {
		o(' ')
		renderIdentifier(label)
	}
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:7,代码来源:renderLoop.ts


示例3: renderBreakStatementNoLoc

export function renderBreakStatementNoLoc({label}: BreakStatement): void {
	o('break')
	if (nonNull(label)) {
		o(' ')
		renderIdentifier(label)
	}
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:7,代码来源:renderLoop.ts


示例4: parseName

/** Parse a [[Name]] or a [[Keyword]] usable as one. */
export default function parseName(token: Token): string {
	const name = tryParseName(token)
	if (nonNull(name))
		return name
	else
		throw unexpected(token)
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:8,代码来源:parseName.ts


示例5: maybeWrapInCheckInstance

export function maybeWrapInCheckInstance(
	ast: Expression,
	opType: Op<Val>,
	name: string)
	: Expression {
	return compileOptions.checks && nonNull(opType) ?
		msCall('checkInstance', transpileVal(opType), ast, new LiteralString(name)) :
		ast
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:9,代码来源:util.ts


示例6: renderVariableDeclarator

export function renderVariableDeclarator(_: VariableDeclarator): void {
	setAst(_)
	const {id, init} = _
	renderPattern(id)
	if (nonNull(init)) {
		o('=')
		renderExpression(init)
	}
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:9,代码来源:renderDeclaration.ts


示例7: renderLoopNoLoc

export function renderLoopNoLoc(_: Loop): void {
	if (_ instanceof WhileStatement) {
		const {test, body} = _
		o('while(')
		renderExpression(test)
		o(')')
		renderStatement(body)

	} else if (_ instanceof DoWhileStatement) {
		const {body, test} = _
		o('do ')
		renderStatement(body)
		if (!(body instanceof BlockStatement))
			o(';')
		o(' while(')
		renderExpression(test)
		o(')')

	} else if (_ instanceof ForStatement) {
		const {init, test, update, body} = _
		o('for(')
		if (nonNull(init))
			renderVariableDeclarationOrExpression(init)
		o(';')
		if (nonNull(test))
			renderExpression(test)
		o(';')
		if (nonNull(update))
			renderExpression(update)
		o(')')
		renderStatement(body)

	} else if (_ instanceof ForInOfStatement) {
		o('for(')
		renderVariableDeclarationOrIdentifier(_.left)
		o(_ instanceof ForOfStatement ? ' of ' : ' in ')
		renderExpression(_.right)
		o(')')
		renderStatement(_.body)

	} else
		throw badType(_)
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:43,代码来源:renderLoop.ts


示例8: parseMemberName

/** Parse a plain member (`a.b`) or computed member (`a."b"`). */
export default function parseMemberName(token: Token): MemberName {
	const name = tryParseName(token)
	if (nonNull(name)) // .foo
		return name
	else if (token instanceof GroupQuote) // ."foo"
		return parseQuote(Slice.of(token))
	else if (token instanceof GroupParenthesis) // .(foo)
		return parseExpr(Tokens.of(token))
	else
		throw unexpected(token)
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:12,代码来源:parseMemberName.ts


示例9: renderFunctionNoLoc

export function renderFunctionNoLoc(_: FunctionDeclaration | FunctionExpression): void {
	const {id, params, body, async, generator} = _
	if (async)
		o('async ')
	o('function')
	if (generator)
		o('*')
	if (nonNull(id)) {
		o(' ')
		renderIdentifier(id)
	}
	paren(params, renderPattern)
	renderBlockStatement(body)
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:14,代码来源:renderFunction.ts


示例10: mapStr

function mapStr(str: string): void {
	if (curAst !== lastMappedAst) {
		const {loc} = curAst
		if (nonNull(loc)) {
			sourceMap.addMapping({
				source: inFilePath,
				original: loc.start,
				generated: new Pos(outLine, outColumn)
			})
			lastMappedAst = curAst
		}
	}
	outColumn = outColumn + str.length
}
开发者ID:mason-lang,项目名称:mason-lang.github.io,代码行数:14,代码来源:context.ts



注:本文中的op/Op.nonNull函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript Op.opEach函数代码示例发布时间:2022-05-25
下一篇:
TypeScript Op.caseOp函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap