當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript code-frame.codeFrameColumns函數代碼示例

本文整理匯總了TypeScript中@babel/code-frame.codeFrameColumns函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript codeFrameColumns函數的具體用法?TypeScript codeFrameColumns怎麽用?TypeScript codeFrameColumns使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了codeFrameColumns函數的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: codeFrameError

export function codeFrameError (node, msg: string) {
  let errMsg = ''
  try {
    errMsg = codeFrameColumns(setting.sourceCode, node && node.type && node.loc ? node.loc : node)
  } catch (error) {
    errMsg = 'failed to locate source'
  }
  return new Error(`${msg}
  -----
  ${errMsg}`)
}
開發者ID:topud,項目名稱:taro,代碼行數:11,代碼來源:utils.ts

示例2: printCodeFrame

export function printCodeFrame(
  output: PrintFunc,
  filename: string | undefined,
  line: number | undefined
) {
  if (!filename || line == null) {
    return
  }

  const fileContent = fs.readFileSync(filename, 'utf8')
  output(
    codeFrameColumns(fileContent, { start: { line } }, { forceColor: true })
  )
}
開發者ID:Originate,項目名稱:tutorial-runner,代碼行數:14,代碼來源:print-code-frame.ts

示例3: codeFrameColumns

const getRenderedCallsite = (
  fileContent: string,
  line: number,
  column?: number,
) => {
  let renderedCallsite = codeFrameColumns(
    fileContent,
    {start: {column, line}},
    {highlightCode: true},
  );

  renderedCallsite = indentAllLines(renderedCallsite, MESSAGE_INDENT);

  renderedCallsite = `\n${renderedCallsite}\n`;
  return renderedCallsite;
};
開發者ID:elliottsj,項目名稱:jest,代碼行數:16,代碼來源:index.ts

示例4: print

import codeFrame, { codeFrameColumns } from "@babel/code-frame";

const code = `
    const number = 1;
    var string = 'foo';

    function print(name: string) {
        console.log(string + name);
    }
`;

codeFrame(code, 5, 22);
codeFrame(code, 5, 22, { forceColor: true });
codeFrame(code, 2, 2, { highlightCode: true });

codeFrameColumns(code, { start: { line: 5, column: 22 } });
codeFrameColumns(
    code,
    { start: { line: 5, column: 22 } },
    { forceColor: true }
);
codeFrameColumns(
    code,
    { start: { line: 2, column: 2 } },
    { highlightCode: true }
);
開發者ID:AlexGalays,項目名稱:DefinitelyTyped,代碼行數:26,代碼來源:babel__code-frame-tests.ts

示例5: return

 return (loc: t.SourceLocation) => codeFrameColumns(code, loc) as string
開發者ID:topud,項目名稱:taro,代碼行數:1,代碼來源:utils.ts

示例6: codeFrameError

export function codeFrameError (loc: t.SourceLocation, msg: string) {
  return new Error(`${msg}
-----
${codeFrameColumns(setting.sourceCode, loc)}`)
}
開發者ID:ApolloRobot,項目名稱:taro,代碼行數:5,代碼來源:utils.ts


注:本文中的@babel/code-frame.codeFrameColumns函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。