Home
last modified time | relevance | path

Searched refs:CommandSplit (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Tokenizer/
DCommandSplit.cs12 public class CommandSplit : Token class
14 public CommandSplit(string value):base(value) in CommandSplit() method in Antmicro.Renode.UserInterface.Tokenizer.CommandSplit
DTokenizer.cs76 tokenizer.AddToken(new Regex(@"^\;"), x => new CommandSplit(x)); in CreateTokenizer()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitor.cs511 .GroupBy(x => { if(x is CommandSplit) groupNumber++; return groupNumber; }) in Parse()
512 .Select(x => x.Where(y => !(y is CommandSplit))) in Parse()