Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Yoakke parser rewrite #565

Draft
wants to merge 18 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/AngouriMath/AngouriMath/Convenience/MathS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ public static Entity FromString(string expr, bool useCache)
/// failure, which is a type union of multiple reasons
/// it may have failed.
/// </returns>
public static ParsingResult Parse(string source)
public static Either<Entity, Failure<string>, ParseException> Parse(string source)
=> Parser.ParseSilent(source);

/// <summary>Translates a <see cref="Number"/> in base 10 into base <paramref name="N"/></summary>
Expand Down
437 changes: 0 additions & 437 deletions Sources/AngouriMath/AngouriMath/Core/Antlr/AngouriMath.g

This file was deleted.

290 changes: 0 additions & 290 deletions Sources/AngouriMath/AngouriMath/Core/Antlr/AngouriMath.interp

This file was deleted.

247 changes: 0 additions & 247 deletions Sources/AngouriMath/AngouriMath/Core/Antlr/AngouriMath.tokens

This file was deleted.

Loading