Skip to content
Merged
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
5 changes: 3 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"sdk": {
"version": "5.0.100"
"version": "5.0.200-preview.20614.14",
"rollForward": "minor"
},
"tools": {
"dotnet": "5.0.100",
"dotnet": "5.0.200-preview.20614.14",
"vs": {
"version": "16.8",
"components": [
Expand Down
2 changes: 1 addition & 1 deletion src/buildtools/fslex/Parsing.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ type Tables<'tok> =

/// Interpret the parser table taking input from the given lexer, using the given lex buffer, and the given start state.
/// Returns an object indicating the final synthesized value for the parse.
member Interpret : lexer:(LexBuffer<'char> -> 'tok) * lexbuf:LexBuffer<'char> * startState:int -> obj
member Interpret : lexer:(LexBuffer<'char> -> 'tok) * lexbuf:LexBuffer<'char> * initialState:int -> obj

#if INTERNALIZED_FSLEXYACC_RUNTIME
exception internal Accept of obj
Expand Down