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 d638314 commit 4181c1aCopy full SHA for 4181c1a
packages/svelte/src/compiler/phases/scope.js
@@ -16,10 +16,10 @@ import { is_reserved, is_rune } from '../../utils.js';
16
import { determine_slot } from '../utils/slot.js';
17
import { validate_identifier_name } from './2-analyze/visitors/shared/utils.js';
18
19
-export const UNKNOWN = Symbol('unknown');
+const UNKNOWN = Symbol('unknown');
20
/** Includes `BigInt` */
21
-export const NUMBER = Symbol('number');
22
-export const STRING = Symbol('string');
+const NUMBER = Symbol('number');
+const STRING = Symbol('string');
23
24
export class Binding {
25
/** @type {Scope} */
0 commit comments