123123
This commit is contained in:
@@ -2,11 +2,13 @@
|
||||
{
|
||||
public class ParsedFunctionCall
|
||||
{
|
||||
public string Prefix { get; set; } = string.Empty;
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public int EndIndex { get; set; }
|
||||
public List<string> RawArguments { get; set; } = new List<string>();
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="prefix"></param>
|
||||
/// <param name="name"></param>
|
||||
/// <param name="endIndex"></param>
|
||||
/// <param name="rawArguments"></param>
|
||||
public ParsedFunctionCall(string prefix, string name, int endIndex, List<string> rawArguments)
|
||||
{
|
||||
Prefix = prefix;
|
||||
@@ -14,5 +16,9 @@
|
||||
EndIndex = endIndex;
|
||||
RawArguments = rawArguments;
|
||||
}
|
||||
public string Prefix { get; set; }
|
||||
public string Name { get; set; }
|
||||
public int EndIndex { get; set; }
|
||||
public List<string> RawArguments { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user