@@ -11,7 +11,7 @@ class Argument
11
11
{
12
12
private static readonly Regex ParseCheck = new Regex ( "\" ?.*\" ?<\\ d+>" ) ;
13
13
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+)$ " ) ;
15
15
16
16
public int Type { get ; }
17
17
@@ -62,13 +62,15 @@ public string GetString(int subType, IStringReader stringReader)
62
62
// Values 3000+ are input parameters to the method
63
63
// 2000+ ?
64
64
// 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 } ";
65
70
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 } ";
72
74
break ;
73
75
74
76
// String
@@ -122,8 +124,12 @@ public static Argument Parse(int subType, string input, IStringWriter stringWrit
122
124
if ( ! IsParameter . IsMatch ( value ) )
123
125
return new Argument ( type , long . Parse ( value ) ) ;
124
126
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 ) ;
127
133
128
134
case 24 :
129
135
var stringValue1 = StringValue . Match ( value ) . Groups . Values . Skip ( 1 ) . First ( ) . Value ;
0 commit comments