Implement f# pipeline in parser (#9450)

This commit is contained in:
James DiGioia
2019-05-14 16:12:17 -04:00
committed by Nicolò Ribaudo
parent 0a98814329
commit 6b8a37c413
54 changed files with 4295 additions and 19 deletions

View File

@@ -77,6 +77,10 @@ export default class State {
maxTopicIndex: null,
};
// For the F# plugin
soloAwait: boolean = false;
inFSharpPipelineDirectBody: boolean = false;
// Check whether we are in a (nested) class or not.
classLevel: number = 0;