message-compiler.d.ts 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. import type { BaseError } from '@intlify/shared';
  2. import type { RawSourceMap } from 'source-map-js';
  3. export declare function baseCompile(source: string, options?: CompileOptions): CompilerResult;
  4. export declare type CacheKeyHandler = (source: string) => string;
  5. export declare interface CodeGenOptions {
  6. location?: boolean;
  7. mode?: 'normal' | 'arrow';
  8. breakLineCode?: '\n' | ';';
  9. needIndent?: boolean;
  10. onWarn?: CompileWarnHandler;
  11. onError?: CompileErrorHandler;
  12. sourceMap?: boolean;
  13. filename?: string;
  14. }
  15. declare interface CodeGenResult {
  16. code: string;
  17. ast: ResourceNode;
  18. map?: RawSourceMap;
  19. }
  20. export declare type CompileDomain = 'tokenizer' | 'parser' | 'generator' | 'transformer' | 'optimizer' | 'minifier';
  21. export declare interface CompileError extends BaseError, SyntaxError {
  22. domain?: CompileDomain;
  23. location?: SourceLocation;
  24. }
  25. export declare const CompileErrorCodes: {
  26. readonly EXPECTED_TOKEN: 1;
  27. readonly INVALID_TOKEN_IN_PLACEHOLDER: 2;
  28. readonly UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER: 3;
  29. readonly UNKNOWN_ESCAPE_SEQUENCE: 4;
  30. readonly INVALID_UNICODE_ESCAPE_SEQUENCE: 5;
  31. readonly UNBALANCED_CLOSING_BRACE: 6;
  32. readonly UNTERMINATED_CLOSING_BRACE: 7;
  33. readonly EMPTY_PLACEHOLDER: 8;
  34. readonly NOT_ALLOW_NEST_PLACEHOLDER: 9;
  35. readonly INVALID_LINKED_FORMAT: 10;
  36. readonly MUST_HAVE_MESSAGES_IN_PLURAL: 11;
  37. readonly UNEXPECTED_EMPTY_LINKED_MODIFIER: 12;
  38. readonly UNEXPECTED_EMPTY_LINKED_KEY: 13;
  39. readonly UNEXPECTED_LEXICAL_ANALYSIS: 14;
  40. readonly UNHANDLED_CODEGEN_NODE_TYPE: 15;
  41. readonly UNHANDLED_MINIFIER_NODE_TYPE: 16;
  42. readonly __EXTEND_POINT__: 17;
  43. };
  44. export declare type CompileErrorCodes = (typeof CompileErrorCodes)[keyof typeof CompileErrorCodes];
  45. export declare type CompileErrorHandler = (error: CompileError) => void;
  46. export declare interface CompileErrorOptions {
  47. domain?: CompileDomain;
  48. messages?: {
  49. [code: number]: string;
  50. };
  51. args?: unknown[];
  52. }
  53. export declare type CompileOptions = {
  54. optimize?: boolean;
  55. minify?: boolean;
  56. jit?: boolean;
  57. } & TransformOptions & CodeGenOptions & ParserOptions & TokenizeOptions;
  58. export declare type CompilerResult = CodeGenResult;
  59. export declare interface CompileWarn {
  60. message: string;
  61. code: number;
  62. location?: SourceLocation;
  63. }
  64. export declare const CompileWarnCodes: {
  65. readonly USE_MODULO_SYNTAX: 1;
  66. readonly __EXTEND_POINT__: 2;
  67. };
  68. export declare type CompileWarnCodes = (typeof CompileWarnCodes)[keyof typeof CompileWarnCodes];
  69. export declare type CompileWarnHandler = (warn: CompileWarn) => void;
  70. export declare function createCompileError<T extends number>(code: T, loc: SourceLocation | null, options?: CompileErrorOptions): CompileError;
  71. export declare function createCompileWarn<T extends number>(code: T, loc: SourceLocation | null, ...args: unknown[]): CompileWarn;
  72. export declare function createLocation(start: Position, end: Position, source?: string): SourceLocation;
  73. export declare function createParser(options?: ParserOptions): Parser;
  74. export declare function createPosition(line: number, column: number, offset: number): Position;
  75. /* Excluded from this release type: defaultOnError */
  76. export declare const detectHtmlTag: (source: string) => boolean;
  77. export declare const ERROR_DOMAIN = "parser";
  78. /* Excluded from this release type: errorMessages */
  79. export declare const enum HelperNameMap {
  80. LIST = "list",
  81. NAMED = "named",
  82. PLURAL = "plural",
  83. LINKED = "linked",
  84. MESSAGE = "message",
  85. TYPE = "type",
  86. INTERPOLATE = "interpolate",
  87. NORMALIZE = "normalize",
  88. VALUES = "values"
  89. }
  90. export declare type Identifier = string;
  91. export declare interface LinkedKeyNode extends Node_2 {
  92. type: NodeTypes.LinkedKey;
  93. value: string;
  94. /* Excluded from this release type: v */
  95. }
  96. export declare interface LinkedModifierNode extends Node_2 {
  97. type: NodeTypes.LinkedModifier;
  98. value: Identifier;
  99. /* Excluded from this release type: v */
  100. }
  101. export declare interface LinkedNode extends Node_2 {
  102. type: NodeTypes.Linked;
  103. modifier?: LinkedModifierNode;
  104. /* Excluded from this release type: m */
  105. key: LinkedKeyNode | NamedNode | ListNode | LiteralNode;
  106. /* Excluded from this release type: k */
  107. }
  108. export declare interface ListNode extends Node_2 {
  109. type: NodeTypes.List;
  110. index: number;
  111. /* Excluded from this release type: i */
  112. }
  113. export declare interface LiteralNode extends Node_2 {
  114. type: NodeTypes.Literal;
  115. value?: string;
  116. /* Excluded from this release type: v */
  117. }
  118. export declare const LOCATION_STUB: SourceLocation;
  119. declare type MessageElementNode = TextNode | NamedNode | ListNode | LiteralNode | LinkedNode;
  120. export declare interface MessageNode extends Node_2 {
  121. type: NodeTypes.Message;
  122. static?: string;
  123. /* Excluded from this release type: s */
  124. items: MessageElementNode[];
  125. /* Excluded from this release type: i */
  126. }
  127. export declare interface NamedNode extends Node_2 {
  128. type: NodeTypes.Named;
  129. key: Identifier;
  130. modulo?: boolean;
  131. /* Excluded from this release type: k */
  132. }
  133. declare interface Node_2 {
  134. type: NodeTypes;
  135. /* Excluded from this release type: t */
  136. start?: number;
  137. end?: number;
  138. loc?: SourceLocation;
  139. }
  140. export { Node_2 as Node }
  141. export declare const enum NodeTypes {
  142. Resource = 0,// 0
  143. Plural = 1,
  144. Message = 2,
  145. Text = 3,
  146. Named = 4,
  147. List = 5,// 5
  148. Linked = 6,
  149. LinkedKey = 7,
  150. LinkedModifier = 8,
  151. Literal = 9
  152. }
  153. export declare interface Parser {
  154. parse(source: string): ResourceNode;
  155. }
  156. export declare interface ParserOptions {
  157. location?: boolean;
  158. onCacheKey?: (source: string) => string;
  159. onWarn?: CompileWarnHandler;
  160. onError?: CompileErrorHandler;
  161. }
  162. export declare interface PluralNode extends Node_2 {
  163. type: NodeTypes.Plural;
  164. cases: MessageNode[];
  165. /* Excluded from this release type: c */
  166. }
  167. export declare interface Position {
  168. offset: number;
  169. line: number;
  170. column: number;
  171. }
  172. export declare interface ResourceNode extends Node_2 {
  173. type: NodeTypes.Resource;
  174. body: MessageNode | PluralNode;
  175. /* Excluded from this release type: b */
  176. cacheKey?: string;
  177. helpers?: string[];
  178. }
  179. export declare interface SourceLocation {
  180. start: Position;
  181. end: Position;
  182. source?: string;
  183. }
  184. export declare interface TextNode extends Node_2 {
  185. type: NodeTypes.Text;
  186. value?: string;
  187. /* Excluded from this release type: v */
  188. }
  189. export declare interface TokenizeOptions {
  190. location?: boolean;
  191. onError?: CompileErrorHandler;
  192. }
  193. export declare interface TransformOptions {
  194. onWarn?: CompileWarnHandler;
  195. onError?: CompileErrorHandler;
  196. }
  197. /* Excluded from this release type: warnMessages */
  198. export { }