当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript js.default方法代码示例

本文整理汇总了TypeScript中lazy.js.default方法的典型用法代码示例。如果您正苦于以下问题:TypeScript js.default方法的具体用法?TypeScript js.default怎么用?TypeScript js.default使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在lazy.js的用法示例。


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

示例1: Promise

			return new Promise((resolve) => {
				// map out files linked to changes
				// - queue holds files touched by a change
				// - pre-fill with actually changed files
				// - loop queue, if current not seen:
				//    - add to result
				//    - from refMap queue all files referring to current

				var result: FileDict = Object.create(null);
				var queue = Lazy<File>(this.changed).values().toArray();

				while (queue.length > 0) {
					var next = queue.shift();
					var fp = next.fullPath;
					if (result[fp]) {
						continue;
					}
					result[fp] = next;
					if (fp in this.refMap) {
						var arr = this.refMap[fp];
						for (var i = 0, ii = arr.length; i < ii; i++) {
							// just add it and skip expensive checks
							queue.push(arr[i]);
						}
					}
				}
				resolve(Lazy<File>(result).values().toArray());
			});
开发者ID:Airblader,项目名称:DefinitelyTyped,代码行数:28,代码来源:index.ts

示例2:

			return Promise.attempt(() => {
				this.missing = Object.create(null);
				Lazy(this.removed).keys().each((removed) => {
					if (removed in this.refMap) {
						this.missing[removed] = this.refMap[removed];
					}
				});
			});
开发者ID:Airblader,项目名称:DefinitelyTyped,代码行数:8,代码来源:index.ts

示例3: Lazy

			}).then((filesNames: string[]) => {
				this.files = Lazy(filesNames).filter((fileName) => {
					return this.runner.checkAcceptFile(fileName);
				}).map((fileName: string) => {
					var file = new File(this.runner.dtPath, fileName);
					this.fileMap[file.fullPath] = file;
					return file;
				}).toArray();
			});
开发者ID:Airblader,项目名称:DefinitelyTyped,代码行数:9,代码来源:index.ts

示例4: save

  save() {
    let args = ['firstname',
      'birthDay',
      'nationalIdentificationNumber',
      'spareEmail',
      'city',
      'fax',
      'address',
      'companyNationalIdentificationNumber',
      'birthCity',
      'language',
      'name',
      'phone',
      'sex',
      'zip',
      'corporationType',
      'legalform'
    ];

    this.analytics.trackEvent('Account', 'save', 'Launch', 'Action is launched');
    this.loading = true;
    console.log(_(this.accountInfos).pick(args).value());
    this.accountService.save(_(this.accountInfos).pick(args).value());
  }
开发者ID:SCORE42,项目名称:my-infra,代码行数:24,代码来源:account.ts


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