Skip to content

Commit 4181c1a

Browse files
committed
more
1 parent d638314 commit 4181c1a

File tree

1 file changed

+3
-3
lines changed
  • packages/svelte/src/compiler/phases

1 file changed

+3
-3
lines changed

packages/svelte/src/compiler/phases/scope.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ import { is_reserved, is_rune } from '../../utils.js';
1616
import { determine_slot } from '../utils/slot.js';
1717
import { validate_identifier_name } from './2-analyze/visitors/shared/utils.js';
1818

19-
export const UNKNOWN = Symbol('unknown');
19+
const UNKNOWN = Symbol('unknown');
2020
/** Includes `BigInt` */
21-
export const NUMBER = Symbol('number');
22-
export const STRING = Symbol('string');
21+
const NUMBER = Symbol('number');
22+
const STRING = Symbol('string');
2323

2424
export class Binding {
2525
/** @type {Scope} */

0 commit comments

Comments
 (0)