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

TypeScript util.platformNormalizePath函数代码示例

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

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



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

示例1: test

  test('Check substitution within toolchain kits', async () => {
    // Configure
    expect(await cmt.configure()).to.be.eq(0, '[toolchain] configure failed');
    expect(testEnv.projectFolder.buildDirectory.isCMakeCachePresent).to.eql(true, 'expected cache not present');
    const cache = await CMakeCache.fromPath(await cmt.cachePath);

    const cacheEntry = cache.get('CMAKE_TOOLCHAIN_FILE') as api.CacheEntry;
    // tslint:disable-next-line:no-unused-expression
    expect(cacheEntry).to.not.be.null;
    expect(cacheEntry.key).to.eq('CMAKE_TOOLCHAIN_FILE', '[toolchain] unexpected cache entry key name');
    expect(platformNormalizePath(cacheEntry.as<string>()))
        .to.eq(platformNormalizePath(testEnv.projectFolder.location.concat('/test-toolchain.cmake')),
               '[toolchain] substitution incorrect');
  }).timeout(100000);
开发者ID:vector-of-bool,项目名称:vscode-cmake-tools,代码行数:14,代码来源:toolchain.test.ts


示例2: test

  test('Check substitution for "workspaceFolder"', async () => {
    // Set fake settings
    testEnv.config.updatePartial({configureSettings: {workspaceFolder: '${workspaceFolder}'}});

    // Configure
    expect(await cmt.configure()).to.be.eq(0, '[workspaceFolder] configure failed');
    expect(testEnv.projectFolder.buildDirectory.isCMakeCachePresent).to.eql(true, 'expected cache not present');
    const cache = await CMakeCache.fromPath(await cmt.cachePath);

    const cacheEntry = cache.get('workspaceFolder') as api.CacheEntry;
    expect(cacheEntry.type).to.eq(api.CacheEntryType.String, '[workspaceFolder] unexpected cache entry type');
    expect(cacheEntry.key).to.eq('workspaceFolder', '[workspaceFolder] unexpected cache entry key name');
    expect(platformNormalizePath(cacheEntry.as<string>()))
        .to.eq(platformNormalizePath(testEnv.projectFolder.location), '[workspaceFolder] substitution incorrect');
    expect(typeof cacheEntry.value).to.eq('string', '[workspaceFolder] unexpected cache entry value type');
  }).timeout(100000);
开发者ID:vector-of-bool,项目名称:vscode-cmake-tools,代码行数:16,代码来源:variable-substitution.test.ts


示例3:

 = await Promise.all(util.map(util.flatMap(cmake_inputs.buildFiles, entry => entry.sources), src => {
     // Map input file paths to files relative to the source directory
     if (!path.isAbsolute(src)) {
       src = util.platformNormalizePath(path.join(cmake_inputs.sourceDirectory, src));
     }
     return InputFile.create(src);
   }));
开发者ID:vector-of-bool,项目名称:vscode-cmake-tools,代码行数:7,代码来源:dirty.ts


示例4: test

 test('Input file set maps files correctly', async () => {
   const foo_subdir = path.join(here, 'foo');
   const dummy_file = util.platformNormalizePath(path.join(foo_subdir, 'dummy_file'));
   const fileset = await InputFileSet.create({
     buildFiles: [{
       isCMake: false,
       isTemporary: false,
       sources: [
         'dummy_file',
         foo_subdir,
       ],
     }],
     cmakeRootDirectory: '', // unused
     sourceDirectory: foo_subdir,
   });
   expect(fileset.inputFiles).to.have.lengthOf(2, 'Wrong file count');
   // The relative path 'dummy_file' should have mapped to the full path to the correct file
   expect(fileset.inputFiles[0].filePath).to.eq(dummy_file, 'Filepath mapped incorrectly');
   // The absolute path `foo_subdir` should be kept as-is
   expect(fileset.inputFiles[1].filePath).to.eq(foo_subdir, 'Filepath mapped incorrectly');
   // Since the file doesn't exist, the fileset should tell us it is dirty
   expect(await fileset.checkOutOfDate());
 });
开发者ID:vector-of-bool,项目名称:vscode-cmake-tools,代码行数:23,代码来源:dirty.test.ts



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
TypeScript events.Emitter类代码示例发布时间:2022-05-28
下一篇:
TypeScript pr.fs类代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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