Skip to content

Commit b574a84

Browse files
Merge pull request #4 from obluda3/master
Fix variable names in function arguments
2 parents c71ae11 + 1146bca commit b574a84

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

XtractQuery/Parsers/Models/Argument.cs

+15-9
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Argument
1111
{
1212
private static readonly Regex ParseCheck = new Regex("\"?.*\"?<\\d+>");
1313
private static readonly Regex StringValue = new Regex("\"(.*)\"");
14-
private static readonly Regex IsParameter = new Regex("\\$p(\\d+)");
14+
private static readonly Regex IsParameter = new Regex("^\\$[pvxy](\\d+)$");
1515

1616
public int Type { get; }
1717

@@ -62,13 +62,15 @@ public string GetString(int subType, IStringReader stringReader)
6262
// Values 3000+ are input parameters to the method
6363
// 2000+ ?
6464
// Values 1000+ are stack values
65+
value = "$";
66+
if (Value >= 1000 && Value <= 1999)
67+
value += $"v{Value - 1000}";
68+
if (Value >= 2000 && Value <= 2999)
69+
value += $"x{Value - 2000}";
6570
if (Value >= 3000 && Value <= 3999)
66-
{
67-
value = $"$p{Value - 3000}";
68-
break;
69-
}
70-
71-
value = $"{Value}";
71+
value += $"p{Value - 3000}";
72+
if (Value >= 4000 && Value <= 4999)
73+
value += $"y{Value - 4000}";
7274
break;
7375

7476
// String
@@ -122,8 +124,12 @@ public static Argument Parse(int subType, string input, IStringWriter stringWrit
122124
if (!IsParameter.IsMatch(value))
123125
return new Argument(type, long.Parse(value));
124126

125-
var parameter = IsParameter.Match(value).Groups.Values.Skip(1).First().Value;
126-
return new Argument(type, long.Parse(parameter) + 3000);
127+
var argumentValue = IsParameter.Match(value).Groups.Values.Skip(1).First().Value;
128+
var argType = value[0];
129+
var offset = argType == 'v' ? 1000 :
130+
argType == 'x' ? 2000 :
131+
argType == 'p' ? 3000 : 4000;
132+
return new Argument(type, long.Parse(argumentValue) + offset);
127133

128134
case 24:
129135
var stringValue1 = StringValue.Match(value).Groups.Values.Skip(1).First().Value;

0 commit comments

Comments
 (0)