From d412f87845f0075458084e26d44bf43ddcf04e9a Mon Sep 17 00:00:00 2001 From: KevinRansom Date: Mon, 25 Jan 2021 13:39:10 -0800 Subject: [PATCH 1/2] Update sdk version --- global.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index ed90209bf1a..0ca138f99e5 100644 --- a/global.json +++ b/global.json @@ -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": [ From d138574225ffe2d1b17440d640d2230dbe1d4748 Mon Sep 17 00:00:00 2001 From: KevinRansom Date: Mon, 25 Jan 2021 13:52:21 -0800 Subject: [PATCH 2/2] sig --- src/buildtools/fslex/Parsing.fsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buildtools/fslex/Parsing.fsi b/src/buildtools/fslex/Parsing.fsi index 2fef45975a8..f4d12606462 100644 --- a/src/buildtools/fslex/Parsing.fsi +++ b/src/buildtools/fslex/Parsing.fsi @@ -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