Renaming of files
This commit is contained in:
parent
a824e2d9e8
commit
8bca6e1f20
3 changed files with 3 additions and 3 deletions
|
|
@ -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";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
Loading…
Add table
Add a link
Reference in a new issue