Support for GenericStreamingMessage

This commit is contained in:
Casper Warden
2023-11-09 18:08:56 +00:00
parent 53506ff2cb
commit b71b8d1ec9
12 changed files with 594 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
import { PythonToken } from './PythonToken';
export class PythonTokenContainer
{
tokens: PythonToken[] = [];
index = 0;
}