-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathString.cs
More file actions
350 lines (293 loc) · 11.1 KB
/
Copy pathString.cs
File metadata and controls
350 lines (293 loc) · 11.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
#pragma warning disable 0660
#pragma warning disable 0661
using System;
using System.Collections.Generic;
using JSIL.Meta;
using JSIL.Proxy;
namespace JSIL.Proxies {
[JSProxy(
typeof(String),
JSProxyMemberPolicy.ReplaceDeclared
)]
public abstract class StringProxy {
[JSExternal]
[JSRuntimeDispatch]
[JSIsPure]
public static string Format (params AnyType[] arguments) {
throw new InvalidOperationException();
}
[JSReplacement("JSIL.ConcatString.apply(null, $arguments)")]
[JSIsPure]
public static string Concat (params string[] arguments) {
throw new InvalidOperationException();
}
[JSReplacement("JSIL.ConcatString.apply(null, $arguments)")]
[JSIsPure]
public static string Concat (params object[] arguments) {
throw new InvalidOperationException();
}
[JSReplacement("String($value)")]
[JSIsPure]
public static string Concat (object value) {
throw new InvalidOperationException();
}
[JSReplacement("JSIL.ConcatString($a, $b)")]
[JSIsPure]
public static string Concat (object a, object b) {
throw new InvalidOperationException();
}
[JSReplacement("JSIL.ConcatString($a, $b)")]
[JSIsPure]
public static string Concat (string a, string b) {
throw new InvalidOperationException();
}
[JSReplacement("JSIL.ConcatString($a, $b, $c)")]
[JSIsPure]
public static string Concat (object a, object b, object c) {
throw new InvalidOperationException();
}
[JSReplacement("($a + $b + $c)")]
[JSIsPure]
public static string Concat (string a, string b, string c) {
throw new InvalidOperationException();
}
[JSReplacement("JSIL.ConcatString($a, $b, $c, $d)")]
[JSIsPure]
public static string Concat (object a, object b, object c, object d) {
throw new InvalidOperationException();
}
[JSReplacement("($a + $b + $c + $d)")]
[JSIsPure]
public static string Concat (string a, string b, string c, string d) {
throw new InvalidOperationException();
}
[JSReplacement("$lhs + $ch")]
[JSIsPure]
public static string Concat (string lhs, char ch) {
throw new InvalidOperationException();
}
[JSIsPure]
[JSReplacement("JSIL.SplitString($this, $dividers)")]
public abstract string[] Split (AnyType[] dividers);
[JSIsPure]
[JSReplacement("JSIL.SplitString($this, $dividers, $options)")]
public abstract string[] Split (AnyType[] dividers, StringSplitOptions options);
[JSIsPure]
[JSReplacement("JSIL.JoinEnumerable($separator, $values)")]
public static string Join<T> (string separator, IEnumerable<T> values) {
throw new NotImplementedException();
}
[JSIsPure]
[JSReplacement("JSIL.JoinStrings($separator, $values)")]
public static string Join (string separator, params string[] values) {
throw new NotImplementedException();
}
[JSChangeName("length")]
[JSAlwaysAccessAsProperty]
[JSNeverReplace]
abstract public int Length { get; }
[JSReplacement("$this[$index]")]
[JSIsPure]
abstract public char get_Chars (int index);
[JSReplacement("$lhs == $rhs")]
[JSIsPure]
public static bool operator == (StringProxy lhs, StringProxy rhs) {
throw new InvalidOperationException();
}
[JSReplacement("$lhs != $rhs")]
[JSIsPure]
public static bool operator != (StringProxy lhs, StringProxy rhs) {
throw new InvalidOperationException();
}
[JSReplacement("$this == $rhs")]
[JSIsPure]
public bool Equals (StringProxy rhs) {
throw new InvalidOperationException();
}
[JSReplacement("$this.toLowerCase()")]
[JSIsPure]
public string ToLower () {
throw new InvalidOperationException();
}
// FIXME: Are ECMAScript strings always normalized?
[JSReplacement("$this.toLowerCase()")]
[JSIsPure]
public string ToLowerInvariant() {
throw new InvalidOperationException();
}
[JSReplacement("$this.toUpperCase()")]
[JSIsPure]
public string ToUpper () {
throw new InvalidOperationException();
}
// FIXME: Are ECMAScript strings always normalized?
[JSReplacement("$this.toUpperCase()")]
[JSIsPure]
public string ToUpperInvariant() {
throw new InvalidOperationException();
}
// FIXME: Are ECMAScript strings always normalized?
[JSReplacement("$this")]
[JSIsPure]
public string Normalize () {
throw new InvalidOperationException();
}
[JSReplacement("System.String.StartsWith($this, $text)")]
[JSIsPure]
public bool StartsWith (string text) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.EndsWith($this, $text)")]
[JSIsPure]
public bool EndsWith (string text) {
throw new InvalidOperationException();
}
[JSReplacement("$this.trim()")]
[JSIsPure]
public string Trim () {
throw new InvalidOperationException();
}
[JSReplacement("System.String.Compare($this, $rhs)")]
[JSIsPure]
public int CompareTo (string rhs) {
throw new InvalidOperationException();
}
[JSReplacement("$this.indexOf($value)")]
[JSIsPure]
public int IndexOf (char value) {
throw new InvalidOperationException();
}
[JSReplacement("$this.indexOf($value, $startIndex)")]
[JSIsPure]
public int IndexOf (char value, int startIndex) {
throw new InvalidOperationException();
}
[JSReplacement("$this.indexOf($value)")]
[JSIsPure]
public int IndexOf (string value) {
throw new InvalidOperationException();
}
[JSReplacement("$this.indexOf($value, $startIndex)")]
[JSIsPure]
public int IndexOf (string value, int startIndex) {
throw new InvalidOperationException();
}
[JSReplacement("$this.lastIndexOf($value)")]
[JSIsPure]
public int LastIndexOf (char value) {
throw new InvalidOperationException();
}
[JSReplacement("$this.lastIndexOf($value)")]
[JSIsPure]
public int LastIndexOf (string value) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.IndexOfAny($this, $chars)")]
[JSIsPure]
public int IndexOfAny (char[] chars) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.IndexOfAny($this, $chars, $startIndex)")]
[JSIsPure]
public int IndexOfAny(char[] chars, int startIndex)
{
throw new InvalidOperationException();
}
[JSReplacement("System.String.LastIndexOfAny($this, $chars)")]
[JSIsPure]
public int LastIndexOfAny (char[] chars) {
throw new InvalidOperationException();
}
[JSReplacement("$this.substr($position)")]
[JSIsPure]
public string Substring (int position) {
throw new InvalidOperationException();
}
[JSReplacement("$this.substr($position, $length)")]
[JSIsPure]
public string Substring (int position, int length) {
throw new InvalidOperationException();
}
// FIXME
/*
[JSReplacement("$this.lastIndexOf($value, $startIndex)")]
[JSIsPure]
public int LastIndexOf (char value, int startIndex) {
throw new InvalidOperationException();
}
[JSReplacement("$this.lastIndexOf($value, $startIndex)")]
[JSIsPure]
public int LastIndexOf (string value, int startIndex) {
throw new InvalidOperationException();
}
*/
[JSReplacement("System.String.Replace($this, $oldText, $newText)")]
[JSIsPure]
public string Replace (string oldText, string newText) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.Replace($this, $oldChar, $newChar)")]
[JSIsPure]
public string Replace (char oldChar, char newChar) {
throw new InvalidOperationException();
}
[JSReplacement("JSIL.StringToCharArray($this)")]
[JSIsPure]
public char[] ToCharArray () {
throw new InvalidOperationException();
}
[JSReplacement("($this.indexOf($p) != -1)")]
public bool Contains (string p) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.PadLeft($this, $length, ' ')")]
[JSIsPure]
public string PadLeft (int length) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.PadRight($this, $length, ' ')")]
[JSIsPure]
public string PadRight (int length) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.PadLeft($this, $length, $ch)")]
[JSIsPure]
public string PadLeft (int length, char ch) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.PadRight($this, $length, $ch)")]
[JSIsPure]
public string PadRight (int length, char ch) {
throw new InvalidOperationException();
}
[JSReplacement("$this.substr(0, $startIndex)")]
[JSIsPure]
public string Remove (int startIndex) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.Remove($this, $startIndex, $count)")]
[JSIsPure]
public string Remove (int startIndex, int count) {
throw new InvalidOperationException();
}
[JSReplacement("System.String.CopyTo($this, $sourceIndex, $destination, $destinationIndex, $count)")]
public void CopyTo (int sourceIndex, char[] destination, int destinationIndex, int count) {
throw new InvalidOperationException();
}
[JSReplacement("(System.String.Compare($this, $rhs, $comparison) == 0)")]
[JSIsPure]
public bool Equals(string rhs, StringComparison comparison) {
throw new InvalidOperationException();
}
[JSReplacement("$lhs === $rhs")]
[JSIsPure]
public static bool Equals(string lhs, string rhs) {
throw new InvalidOperationException();
}
[JSReplacement("(System.String.Compare($lhs, $rhs, $comparison) === 0)")]
[JSIsPure]
public static bool Equals(string lhs, string rhs, StringComparison comparison) {
throw new InvalidOperationException();
}
}
}