We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b1931c commit be8e372Copy full SHA for be8e372
packages/compiler-core/src/babelUtils.ts
@@ -29,10 +29,6 @@ export function walkIdentifiers(
29
parentStack: Node[] = [],
30
knownIds: Record<string, number> = Object.create(null),
31
): void {
32
- if (__BROWSER__) {
33
- return
34
- }
35
-
36
const rootExp =
37
root.type === 'Program'
38
? root.body[0].type === 'ExpressionStatement' && root.body[0].expression
@@ -109,10 +105,6 @@ export function isReferencedIdentifier(
109
105
parent: Node | null,
110
106
parentStack: Node[],
111
107
): boolean {
112
113
- return false
114
115
116
108
if (!parent) {
117
return true
118
}
0 commit comments