You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to implement a Befunge-Interpreter. Hence I defined a Map<String, TextStyle> BEFUNGE_SYNTAX for the relevant syntax-Highlighting.
The following code causes the FormatException:
void initState() {
super.initState();
_befungeGenerateController = TextEditingController(text: _currentGenerate);
_befungeInterpretCodeController = CodeController(
text: _currentInterpret,
stringMap: BEFUNGE_SYNTAX,
);
_inputController = TextEditingController(text: _currentInput);
_codeGenerateController = TextEditingController(text: _sourceCodeGenerated);
}
The text was updated successfully, but these errors were encountered:
I try to implement a Befunge-Interpreter. Hence I defined a Map<String, TextStyle> BEFUNGE_SYNTAX for the relevant syntax-Highlighting.
The following code causes the FormatException:
void initState() {
super.initState();
_befungeGenerateController = TextEditingController(text: _currentGenerate);
_befungeInterpretCodeController = CodeController(
text: _currentInterpret,
stringMap: BEFUNGE_SYNTAX,
);
_inputController = TextEditingController(text: _currentInput);
_codeGenerateController = TextEditingController(text: _sourceCodeGenerated);
}
The text was updated successfully, but these errors were encountered: