Imports of `svelte/internal/*` are forbidden. It contains private runtime code which is subject to change without notice. If you're importing from `svelte/internal/*` to work around a limitation of Svelte, please open an issue at https://github.com/sveltejs/svelte and explain your use case
```
### inspect_trace_invalid_placement
```
`$inspect.trace(...)` must be the first statement of a function body
```
### invalid_arguments_usage
```
@ -970,18 +976,6 @@ A `<textarea>` can have either a value attribute or (equivalently) child content
`<title>` can only contain text and {tags}
```
### trace_rune_invalid_argument
```
`$inspect.trace` requires a string argument for the trace name
```
### trace_rune_invalid_location
```
`$inspect.trace(...)` must be the first statement of a function body
> Imports of `svelte/internal/*` are forbidden. It contains private runtime code which is subject to change without notice. If you're importing from `svelte/internal/*` to work around a limitation of Svelte, please open an issue at https://github.com/sveltejs/svelte and explain your use case
## inspect_trace_invalid_placement
> `$inspect.trace(...)` must be the first statement of a function body
## invalid_arguments_usage
> The arguments keyword cannot be used within the template or at the top level of a component
@ -186,14 +190,6 @@ It's possible to export a snippet from a `<script module>` block, but only if it
Using a `$` prefix to refer to the value of a store is only possible inside `.svelte` files, where Svelte can automatically create subscriptions when a component is mounted and unsubscribe when the component is unmounted. Consider migrating to runes instead.
## trace_rune_invalid_argument
> `$inspect.trace` requires a string argument for the trace name
## trace_rune_invalid_location
> `$inspect.trace(...)` must be the first statement of a function body
## typescript_invalid_feature
> TypeScript language features like %feature% are not natively supported, and their use is generally discouraged. Outside of `<script>` tags, these features are not supported. For use within `<script>` tags, you will need to use a preprocessor to convert it to JavaScript before it gets passed to the Svelte compiler. If you are using `vitePreprocess`, make sure to specifically enable preprocessing script tags (`vitePreprocess({ script: true })`)
@ -469,22 +469,13 @@ export function store_invalid_subscription_module(node) {
e(node,"store_invalid_subscription_module",`Cannot reference store value outside a \`.svelte\` file\nhttps://svelte.dev/e/store_invalid_subscription_module`);
e(node,"trace_rune_invalid_argument",`\`$inspect.trace\` requires a string argument for the trace name\nhttps://svelte.dev/e/trace_rune_invalid_argument`);
e(node,"trace_rune_invalid_location",`\`$inspect.trace(...)\` must be the first statement of a function body\nhttps://svelte.dev/e/trace_rune_invalid_location`);
e(node,"inspect_trace_invalid_placement",`\`$inspect.trace(...)\` must be the first statement of a function body\nhttps://svelte.dev/e/inspect_trace_invalid_placement`);