2023-12-01 22:12:19 +08:00
|
|
|
import {
|
2024-01-13 18:30:03 +08:00
|
|
|
type CodegenOptions as BaseCodegenOptions,
|
2024-01-27 21:42:52 +08:00
|
|
|
type BaseCodegenResult,
|
2023-12-29 22:05:33 +08:00
|
|
|
NewlineType,
|
2023-12-01 22:12:19 +08:00
|
|
|
type Position,
|
2023-12-02 00:49:13 +08:00
|
|
|
type SourceLocation,
|
2023-12-01 22:12:19 +08:00
|
|
|
advancePositionWithMutation,
|
2023-12-29 22:05:33 +08:00
|
|
|
locStub,
|
2023-12-01 22:12:19 +08:00
|
|
|
} from '@vue/compiler-dom'
|
2023-11-24 15:25:34 +08:00
|
|
|
import {
|
2024-01-28 01:31:20 +08:00
|
|
|
type BlockFunctionIRNode,
|
2023-12-01 23:30:21 +08:00
|
|
|
type IRDynamicChildren,
|
2023-12-29 22:05:33 +08:00
|
|
|
IRNodeTypes,
|
2023-12-05 17:13:25 +08:00
|
|
|
type OperationNode,
|
2023-12-29 22:05:33 +08:00
|
|
|
type RootIRNode,
|
|
|
|
type VaporHelper,
|
|
|
|
type WithDirectiveIRNode,
|
2023-11-24 15:25:34 +08:00
|
|
|
} from './ir'
|
2023-12-01 22:12:19 +08:00
|
|
|
import { SourceMapGenerator } from 'source-map-js'
|
2024-01-21 13:43:23 +08:00
|
|
|
import { isString } from '@vue/shared'
|
2024-01-13 18:30:03 +08:00
|
|
|
import type { ParserPlugin } from '@babel/parser'
|
2024-01-21 13:43:23 +08:00
|
|
|
import { genSetProp } from './generators/prop'
|
|
|
|
import { genCreateTextNode, genSetText } from './generators/text'
|
|
|
|
import { genSetEvent } from './generators/event'
|
|
|
|
import { genSetHtml } from './generators/html'
|
|
|
|
import { genSetRef } from './generators/ref'
|
|
|
|
import { genSetModelValue } from './generators/modelValue'
|
|
|
|
import { genAppendNode, genInsertNode, genPrependNode } from './generators/dom'
|
|
|
|
import { genWithDirective } from './generators/directive'
|
2024-01-28 01:31:20 +08:00
|
|
|
import { genIf } from './generators/if'
|
2024-01-13 18:30:03 +08:00
|
|
|
|
|
|
|
interface CodegenOptions extends BaseCodegenOptions {
|
|
|
|
expressionPlugins?: ParserPlugin[]
|
|
|
|
}
|
2023-11-17 03:01:19 +08:00
|
|
|
|
2023-11-24 14:44:57 +08:00
|
|
|
// remove when stable
|
2023-12-01 22:12:19 +08:00
|
|
|
// @ts-expect-error
|
|
|
|
function checkNever(x: never): never {}
|
|
|
|
|
2023-12-01 23:30:21 +08:00
|
|
|
export interface CodegenContext extends Required<CodegenOptions> {
|
2023-12-01 22:12:19 +08:00
|
|
|
source: string
|
|
|
|
code: string
|
|
|
|
line: number
|
|
|
|
column: number
|
|
|
|
offset: number
|
|
|
|
indentLevel: number
|
|
|
|
map?: SourceMapGenerator
|
|
|
|
|
2023-12-02 00:07:24 +08:00
|
|
|
push(
|
|
|
|
code: string,
|
|
|
|
newlineIndex?: number,
|
2023-12-02 00:49:13 +08:00
|
|
|
loc?: SourceLocation,
|
|
|
|
name?: string,
|
2023-12-02 00:07:24 +08:00
|
|
|
): void
|
2023-12-10 01:26:19 +08:00
|
|
|
pushNewline(
|
2023-12-02 00:07:24 +08:00
|
|
|
code: string,
|
|
|
|
newlineIndex?: number,
|
2023-12-02 00:49:13 +08:00
|
|
|
loc?: SourceLocation,
|
|
|
|
name?: string,
|
2023-12-02 00:07:24 +08:00
|
|
|
): void
|
2023-12-10 01:01:57 +08:00
|
|
|
pushMulti(
|
|
|
|
codes: [left: string, right: string, segment?: string],
|
2023-12-10 01:26:19 +08:00
|
|
|
...fn: Array<false | string | (() => void)>
|
2023-12-10 01:01:57 +08:00
|
|
|
): void
|
2023-12-10 01:26:19 +08:00
|
|
|
pushFnCall(name: string, ...args: Array<false | string | (() => void)>): void
|
2023-12-10 01:05:26 +08:00
|
|
|
withIndent(fn: () => void): void
|
2023-12-01 22:12:19 +08:00
|
|
|
newline(): void
|
2023-11-24 14:44:57 +08:00
|
|
|
|
2023-12-01 05:18:20 +08:00
|
|
|
helpers: Set<string>
|
|
|
|
vaporHelpers: Set<string>
|
|
|
|
helper(name: string): string
|
|
|
|
vaporHelper(name: string): string
|
|
|
|
}
|
|
|
|
|
2023-12-01 22:12:19 +08:00
|
|
|
function createCodegenContext(
|
|
|
|
ir: RootIRNode,
|
|
|
|
{
|
|
|
|
mode = 'function',
|
|
|
|
prefixIdentifiers = mode === 'module',
|
|
|
|
sourceMap = false,
|
|
|
|
filename = `template.vue.html`,
|
|
|
|
scopeId = null,
|
|
|
|
optimizeImports = false,
|
|
|
|
runtimeGlobalName = `Vue`,
|
|
|
|
runtimeModuleName = `vue`,
|
|
|
|
ssrRuntimeModuleName = 'vue/server-renderer',
|
|
|
|
ssr = false,
|
|
|
|
isTS = false,
|
|
|
|
inSSR = false,
|
2023-12-01 23:30:21 +08:00
|
|
|
inline = false,
|
|
|
|
bindingMetadata = {},
|
2024-01-13 18:30:03 +08:00
|
|
|
expressionPlugins = [],
|
2023-12-01 22:12:19 +08:00
|
|
|
}: CodegenOptions,
|
|
|
|
) {
|
2024-01-27 21:42:52 +08:00
|
|
|
const helpers = new Set<string>([])
|
|
|
|
const vaporHelpers = new Set<string>([])
|
2023-12-01 22:12:19 +08:00
|
|
|
const context: CodegenContext = {
|
|
|
|
mode,
|
|
|
|
prefixIdentifiers,
|
|
|
|
sourceMap,
|
|
|
|
filename,
|
|
|
|
scopeId,
|
|
|
|
optimizeImports,
|
|
|
|
runtimeGlobalName,
|
|
|
|
runtimeModuleName,
|
|
|
|
ssrRuntimeModuleName,
|
|
|
|
ssr,
|
|
|
|
isTS,
|
|
|
|
inSSR,
|
2023-12-01 23:30:21 +08:00
|
|
|
bindingMetadata,
|
2024-01-13 18:30:03 +08:00
|
|
|
expressionPlugins,
|
2023-12-01 23:30:21 +08:00
|
|
|
inline,
|
2023-12-01 22:12:19 +08:00
|
|
|
|
|
|
|
source: ir.source,
|
|
|
|
code: ``,
|
|
|
|
column: 1,
|
|
|
|
line: 1,
|
|
|
|
offset: 0,
|
|
|
|
indentLevel: 0,
|
|
|
|
|
2023-12-01 05:18:20 +08:00
|
|
|
helpers,
|
|
|
|
vaporHelpers,
|
|
|
|
helper(name: string) {
|
|
|
|
helpers.add(name)
|
2023-12-01 08:26:01 +08:00
|
|
|
return `_${name}`
|
2023-12-01 05:18:20 +08:00
|
|
|
},
|
|
|
|
vaporHelper(name: VaporHelper) {
|
|
|
|
vaporHelpers.add(name)
|
2023-12-01 08:26:01 +08:00
|
|
|
return `_${name}`
|
2023-12-01 05:18:20 +08:00
|
|
|
},
|
2023-12-02 00:49:13 +08:00
|
|
|
push(code, newlineIndex = NewlineType.None, loc, name) {
|
2023-12-01 22:12:19 +08:00
|
|
|
context.code += code
|
|
|
|
if (!__BROWSER__ && context.map) {
|
2023-12-02 00:49:13 +08:00
|
|
|
if (loc) addMapping(loc.start, name)
|
|
|
|
|
2023-12-01 22:12:19 +08:00
|
|
|
if (newlineIndex === NewlineType.Unknown) {
|
|
|
|
// multiple newlines, full iteration
|
|
|
|
advancePositionWithMutation(context, code)
|
|
|
|
} else {
|
|
|
|
// fast paths
|
|
|
|
context.offset += code.length
|
|
|
|
if (newlineIndex === NewlineType.None) {
|
|
|
|
// no newlines; fast path to avoid newline detection
|
|
|
|
if (__TEST__ && code.includes('\n')) {
|
|
|
|
throw new Error(
|
|
|
|
`CodegenContext.push() called newlineIndex: none, but contains` +
|
|
|
|
`newlines: ${code.replace(/\n/g, '\\n')}`,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
context.column += code.length
|
|
|
|
} else {
|
|
|
|
// single newline at known index
|
|
|
|
if (newlineIndex === NewlineType.End) {
|
|
|
|
newlineIndex = code.length - 1
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
__TEST__ &&
|
|
|
|
(code.charAt(newlineIndex) !== '\n' ||
|
|
|
|
code.slice(0, newlineIndex).includes('\n') ||
|
|
|
|
code.slice(newlineIndex + 1).includes('\n'))
|
|
|
|
) {
|
|
|
|
throw new Error(
|
|
|
|
`CodegenContext.push() called with newlineIndex: ${newlineIndex} ` +
|
|
|
|
`but does not conform: ${code.replace(/\n/g, '\\n')}`,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
context.line++
|
|
|
|
context.column = code.length - newlineIndex
|
|
|
|
}
|
|
|
|
}
|
2023-12-02 00:49:13 +08:00
|
|
|
if (loc && loc !== locStub) {
|
|
|
|
addMapping(loc.end)
|
2023-12-01 22:12:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-12-10 01:26:19 +08:00
|
|
|
pushNewline(code, newlineIndex, node) {
|
2023-12-01 22:45:08 +08:00
|
|
|
context.newline()
|
|
|
|
context.push(code, newlineIndex, node)
|
|
|
|
},
|
2023-12-10 01:01:57 +08:00
|
|
|
pushMulti([left, right, seg], ...fns) {
|
|
|
|
fns = fns.filter(Boolean)
|
|
|
|
context.push(left)
|
|
|
|
for (let i = 0; i < fns.length; i++) {
|
2023-12-10 01:26:19 +08:00
|
|
|
const fn = fns[i] as string | (() => void)
|
|
|
|
|
|
|
|
if (isString(fn)) context.push(fn)
|
|
|
|
else fn()
|
2023-12-10 01:01:57 +08:00
|
|
|
if (seg && i < fns.length - 1) context.push(seg)
|
|
|
|
}
|
|
|
|
context.push(right)
|
|
|
|
},
|
2023-12-10 01:26:19 +08:00
|
|
|
pushFnCall(name, ...args) {
|
|
|
|
context.push(name)
|
|
|
|
context.pushMulti(['(', ')', ', '], ...args)
|
|
|
|
},
|
2023-12-10 01:05:26 +08:00
|
|
|
withIndent(fn) {
|
2023-12-01 22:45:08 +08:00
|
|
|
++context.indentLevel
|
2023-12-10 01:05:26 +08:00
|
|
|
fn()
|
2023-12-01 22:45:08 +08:00
|
|
|
--context.indentLevel
|
2023-12-01 22:12:19 +08:00
|
|
|
},
|
|
|
|
newline() {
|
2023-12-10 01:26:19 +08:00
|
|
|
context.push(`\n${` `.repeat(context.indentLevel)}`, NewlineType.Start)
|
2023-12-01 22:12:19 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
function addMapping(loc: Position, name: string | null = null) {
|
|
|
|
// we use the private property to directly add the mapping
|
|
|
|
// because the addMapping() implementation in source-map-js has a bunch of
|
|
|
|
// unnecessary arg and validation checks that are pure overhead in our case.
|
|
|
|
const { _names, _mappings } = context.map!
|
|
|
|
if (name !== null && !_names.has(name)) _names.add(name)
|
|
|
|
_mappings.add({
|
|
|
|
originalLine: loc.line,
|
|
|
|
originalColumn: loc.column - 1, // source-map column is 0 based
|
|
|
|
generatedLine: context.line,
|
|
|
|
generatedColumn: context.column - 1,
|
|
|
|
source: filename,
|
2023-12-29 22:05:33 +08:00
|
|
|
// @ts-expect-error it is possible to be null
|
2023-12-01 22:12:19 +08:00
|
|
|
name,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!__BROWSER__ && sourceMap) {
|
|
|
|
// lazy require source-map implementation, only in non-browser builds
|
|
|
|
context.map = new SourceMapGenerator()
|
|
|
|
context.map.setSourceContent(filename, context.source)
|
|
|
|
context.map._sources.add(filename)
|
2023-12-01 05:18:20 +08:00
|
|
|
}
|
2023-12-01 22:12:19 +08:00
|
|
|
|
|
|
|
return context
|
2023-12-01 05:18:20 +08:00
|
|
|
}
|
|
|
|
|
2024-01-27 21:42:52 +08:00
|
|
|
export interface VaporCodegenResult extends BaseCodegenResult {
|
|
|
|
ast: RootIRNode
|
|
|
|
helpers: Set<string>
|
|
|
|
vaporHelpers: Set<string>
|
|
|
|
}
|
|
|
|
|
2023-11-17 03:01:19 +08:00
|
|
|
// IR -> JS codegen
|
|
|
|
export function generate(
|
2023-11-23 23:42:08 +08:00
|
|
|
ir: RootIRNode,
|
2023-11-24 11:15:33 +08:00
|
|
|
options: CodegenOptions = {},
|
2024-01-27 21:42:52 +08:00
|
|
|
): VaporCodegenResult {
|
2023-12-01 05:18:20 +08:00
|
|
|
const ctx = createCodegenContext(ir, options)
|
2023-12-10 01:05:26 +08:00
|
|
|
const {
|
|
|
|
push,
|
2023-12-10 01:26:19 +08:00
|
|
|
pushNewline,
|
2023-12-10 01:05:26 +08:00
|
|
|
withIndent,
|
|
|
|
newline,
|
|
|
|
helpers,
|
|
|
|
vaporHelper,
|
|
|
|
vaporHelpers,
|
|
|
|
} = ctx
|
2023-12-01 05:18:20 +08:00
|
|
|
|
2023-12-01 22:12:19 +08:00
|
|
|
const functionName = 'render'
|
|
|
|
const isSetupInlined = !!options.inline
|
|
|
|
if (isSetupInlined) {
|
2023-12-01 22:45:08 +08:00
|
|
|
push(`(() => {`)
|
2023-12-01 22:12:19 +08:00
|
|
|
} else {
|
2023-12-02 00:35:30 +08:00
|
|
|
// placeholder for preamble
|
|
|
|
newline()
|
2023-12-10 01:26:19 +08:00
|
|
|
pushNewline(`export function ${functionName}(_ctx) {`)
|
2023-12-01 22:12:19 +08:00
|
|
|
}
|
2023-11-17 03:01:19 +08:00
|
|
|
|
2023-12-10 01:05:26 +08:00
|
|
|
withIndent(() => {
|
|
|
|
ir.template.forEach((template, i) => {
|
|
|
|
if (template.type === IRNodeTypes.TEMPLATE_FACTORY) {
|
|
|
|
// TODO source map?
|
2023-12-10 01:26:19 +08:00
|
|
|
pushNewline(
|
2023-12-10 01:05:26 +08:00
|
|
|
`const t${i} = ${vaporHelper('template')}(${JSON.stringify(
|
|
|
|
template.template,
|
|
|
|
)})`,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
// fragment
|
2024-01-28 01:31:20 +08:00
|
|
|
pushNewline(`const t${i} = ${vaporHelper('fragment')}()`)
|
2023-12-10 01:05:26 +08:00
|
|
|
}
|
|
|
|
})
|
2023-12-01 22:45:08 +08:00
|
|
|
|
2024-01-28 01:31:20 +08:00
|
|
|
genBlockFunctionContent(ir, ctx)
|
2023-12-10 01:05:26 +08:00
|
|
|
})
|
2023-11-17 03:01:19 +08:00
|
|
|
|
2023-12-01 22:45:08 +08:00
|
|
|
newline()
|
2023-12-01 22:12:19 +08:00
|
|
|
if (isSetupInlined) {
|
2023-12-01 22:45:08 +08:00
|
|
|
push('})()')
|
2023-12-01 22:12:19 +08:00
|
|
|
} else {
|
2023-12-01 22:45:08 +08:00
|
|
|
push('}')
|
2023-12-01 22:12:19 +08:00
|
|
|
}
|
|
|
|
|
2023-12-02 00:35:30 +08:00
|
|
|
let preamble = ''
|
2023-11-24 11:07:31 +08:00
|
|
|
if (vaporHelpers.size)
|
2023-12-02 00:35:30 +08:00
|
|
|
// TODO: extract import codegen
|
|
|
|
preamble = `import { ${[...vaporHelpers]
|
2024-01-29 03:11:30 +08:00
|
|
|
.map(h => `${h} as _${h}`)
|
2023-12-02 00:35:30 +08:00
|
|
|
.join(', ')} } from 'vue/vapor';`
|
2023-11-24 11:07:31 +08:00
|
|
|
if (helpers.size)
|
2023-12-02 00:35:30 +08:00
|
|
|
preamble = `import { ${[...helpers]
|
2024-01-29 03:11:30 +08:00
|
|
|
.map(h => `${h} as _${h}`)
|
2023-12-02 00:35:30 +08:00
|
|
|
.join(', ')} } from 'vue';`
|
|
|
|
|
|
|
|
if (!isSetupInlined) {
|
|
|
|
ctx.code = preamble + ctx.code
|
|
|
|
}
|
2023-11-17 03:01:19 +08:00
|
|
|
|
|
|
|
return {
|
2023-12-01 22:12:19 +08:00
|
|
|
code: ctx.code,
|
2024-01-27 21:42:52 +08:00
|
|
|
ast: ir,
|
2023-12-02 00:35:30 +08:00
|
|
|
preamble,
|
2023-12-01 22:12:19 +08:00
|
|
|
map: ctx.map ? ctx.map.toJSON() : undefined,
|
2024-01-27 21:42:52 +08:00
|
|
|
helpers,
|
|
|
|
vaporHelpers,
|
2023-11-23 23:42:08 +08:00
|
|
|
}
|
2023-12-01 05:18:20 +08:00
|
|
|
}
|
2023-11-24 15:25:34 +08:00
|
|
|
|
2023-12-01 23:30:21 +08:00
|
|
|
function genChildren(children: IRDynamicChildren) {
|
2023-11-27 05:16:21 +08:00
|
|
|
let code = ''
|
|
|
|
let offset = 0
|
2023-11-23 23:42:08 +08:00
|
|
|
for (const [index, child] of Object.entries(children)) {
|
2023-11-27 05:16:21 +08:00
|
|
|
const childrenLength = Object.keys(child.children).length
|
2023-11-27 06:22:10 +08:00
|
|
|
if (child.ghost && child.placeholder === null && childrenLength === 0) {
|
|
|
|
offset--
|
2023-11-27 05:16:21 +08:00
|
|
|
continue
|
2023-11-27 06:22:10 +08:00
|
|
|
}
|
2023-11-27 05:16:21 +08:00
|
|
|
|
|
|
|
code += ` ${Number(index) + offset}: [`
|
|
|
|
|
|
|
|
const id = child.ghost ? child.placeholder : child.id
|
|
|
|
if (id !== null) code += `n${id}`
|
|
|
|
|
|
|
|
const childrenString = childrenLength && genChildren(child.children)
|
|
|
|
if (childrenString) code += `, ${childrenString}`
|
|
|
|
|
|
|
|
code += '],'
|
2023-11-17 03:01:19 +08:00
|
|
|
}
|
2023-11-27 05:16:21 +08:00
|
|
|
|
|
|
|
if (!code) return ''
|
|
|
|
return `{${code}}`
|
2023-11-17 03:01:19 +08:00
|
|
|
}
|
2023-11-30 05:11:59 +08:00
|
|
|
|
2023-12-05 17:13:25 +08:00
|
|
|
function genOperation(oper: OperationNode, context: CodegenContext) {
|
|
|
|
// TODO: cache old value
|
|
|
|
switch (oper.type) {
|
|
|
|
case IRNodeTypes.SET_PROP:
|
|
|
|
return genSetProp(oper, context)
|
|
|
|
case IRNodeTypes.SET_TEXT:
|
|
|
|
return genSetText(oper, context)
|
|
|
|
case IRNodeTypes.SET_EVENT:
|
|
|
|
return genSetEvent(oper, context)
|
|
|
|
case IRNodeTypes.SET_HTML:
|
|
|
|
return genSetHtml(oper, context)
|
2024-01-20 23:48:10 +08:00
|
|
|
case IRNodeTypes.SET_REF:
|
|
|
|
return genSetRef(oper, context)
|
2024-01-21 02:16:30 +08:00
|
|
|
case IRNodeTypes.SET_MODEL_VALUE:
|
|
|
|
return genSetModelValue(oper, context)
|
2023-12-05 17:13:25 +08:00
|
|
|
case IRNodeTypes.CREATE_TEXT_NODE:
|
|
|
|
return genCreateTextNode(oper, context)
|
|
|
|
case IRNodeTypes.INSERT_NODE:
|
|
|
|
return genInsertNode(oper, context)
|
|
|
|
case IRNodeTypes.PREPEND_NODE:
|
|
|
|
return genPrependNode(oper, context)
|
|
|
|
case IRNodeTypes.APPEND_NODE:
|
|
|
|
return genAppendNode(oper, context)
|
2024-01-28 01:31:20 +08:00
|
|
|
case IRNodeTypes.IF:
|
|
|
|
return genIf(oper, context)
|
2023-12-05 17:13:25 +08:00
|
|
|
case IRNodeTypes.WITH_DIRECTIVE:
|
|
|
|
// generated, skip
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
return checkNever(oper)
|
|
|
|
}
|
2023-11-30 05:11:59 +08:00
|
|
|
}
|
2024-01-27 20:49:43 +08:00
|
|
|
|
2024-01-28 01:31:20 +08:00
|
|
|
export function genBlockFunctionContent(
|
|
|
|
ir: BlockFunctionIRNode | RootIRNode,
|
|
|
|
ctx: CodegenContext,
|
|
|
|
) {
|
|
|
|
const { pushNewline, withIndent, vaporHelper } = ctx
|
|
|
|
pushNewline(`const n${ir.dynamic.id} = t${ir.templateIndex}()`)
|
|
|
|
|
|
|
|
const children = genChildren(ir.dynamic.children)
|
|
|
|
if (children) {
|
|
|
|
pushNewline(
|
|
|
|
`const ${children} = ${vaporHelper('children')}(n${ir.dynamic.id})`,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const directiveOps = ir.operation.filter(
|
|
|
|
(oper): oper is WithDirectiveIRNode =>
|
|
|
|
oper.type === IRNodeTypes.WITH_DIRECTIVE,
|
|
|
|
)
|
|
|
|
for (const directives of groupDirective(directiveOps)) {
|
|
|
|
genWithDirective(directives, ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const operation of ir.operation) {
|
|
|
|
genOperation(operation, ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const { operations } of ir.effect) {
|
|
|
|
pushNewline(`${vaporHelper('renderEffect')}(() => {`)
|
|
|
|
withIndent(() => {
|
|
|
|
for (const operation of operations) {
|
|
|
|
genOperation(operation, ctx)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
pushNewline('})')
|
|
|
|
}
|
|
|
|
|
|
|
|
pushNewline(`return n${ir.dynamic.id}`)
|
|
|
|
}
|
|
|
|
|
2024-01-27 20:49:43 +08:00
|
|
|
function groupDirective(ops: WithDirectiveIRNode[]): WithDirectiveIRNode[][] {
|
|
|
|
const directiveMap: Record<number, WithDirectiveIRNode[]> = {}
|
|
|
|
for (const oper of ops) {
|
|
|
|
if (!directiveMap[oper.element]) directiveMap[oper.element] = []
|
|
|
|
directiveMap[oper.element].push(oper)
|
|
|
|
}
|
|
|
|
return Object.values(directiveMap)
|
|
|
|
}
|