Parse single instruction in neutral text

This commit is contained in:
2025-09-07 21:20:32 -06:00
parent 5ba25d4270
commit 925e486e65
15 changed files with 482 additions and 18 deletions

View File

@@ -1,20 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup><Compile Include="LDText.fs" />
<ItemGroup>
<Compile Include="LDText.fs" />
<FsLex Include="Lexer.fsl">
<OtherFlags>--module Lexer</OtherFlags>
</FsLex>
<FsYacc Include="Parser.fsy">
<OtherFlags>--module Parser</OtherFlags>
</FsYacc>
<Compile Include="Parser.fs">
<OtherFlags>--strict-indentation-</OtherFlags>
</Compile>
<Compile Include="Lexer.fs">
<OtherFlags>--strict-indentation-</OtherFlags>
</Compile>
<Compile Include="Library.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FsLexYacc" Version="11.3.0" />
</ItemGroup>
</Project>
<Import Project=".paket\Paket.Restore.targets" />
</Project>