Renaming of files

This commit is contained in:
Yura Dupyn 2026-04-25 16:40:11 +02:00
parent a824e2d9e8
commit 8bca6e1f20
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
import { createSignal, Switch, Match } from 'solid-js'; import { createSignal, Switch, Match } from 'solid-js';
import { LispApp } from './languages/lisp/LispApp'; import { App as LispApp } from './languages/lisp/App';
type LanguageId = "lisp"; type LanguageId = "lisp";

View file

@ -16,7 +16,7 @@ import { PaneHeader, PaneSplitter } from '../../Pane';
import { SourceGrid } from '../../SourceGrid'; import { SourceGrid } from '../../SourceGrid';
import type { HoverTarget } from '../../types'; import type { HoverTarget } from '../../types';
import { clamp } from '../../utils'; import { clamp } from '../../utils';
import { StructureTree } from './LispStructurePane'; import { StructureTree } from './StructurePane';
type ParsedDocument = { type ParsedDocument = {
source: SourceText; source: SourceText;
@ -37,7 +37,7 @@ foo ) @@@ (bar 1)
[a, b c, d] [a, b c, d]
123fasd`; 123fasd`;
export function LispApp() { export function App() {
const [input, setInput] = createSignal(SAMPLE_INPUT); const [input, setInput] = createSignal(SAMPLE_INPUT);
const [hovered, setHovered] = createSignal<HoverTarget | undefined>(); const [hovered, setHovered] = createSignal<HoverTarget | undefined>();
const [leftWidth, setLeftWidth] = createSignal(420); const [leftWidth, setLeftWidth] = createSignal(420);