You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Nodejs/Product/InteractiveWindow/Repl/Commands/CancelExecutionCommand.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1
+
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem.ComponentModel.Composition;
4
4
usingSystem.Reflection;
@@ -21,7 +21,7 @@ public Task<ExecutionResult> Execute(IReplWindow window, string arguments)
21
21
22
22
publicstringDescription
23
23
{
24
-
get{return"Stops execution of the current command.";}
Copy file name to clipboardExpand all lines: Nodejs/Product/InteractiveWindow/Repl/Commands/ClearScreenReplCommand.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1
+
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem.ComponentModel.Composition;
4
4
usingSystem.Reflection;
@@ -21,7 +21,7 @@ public Task<ExecutionResult> Execute(IReplWindow window, string arguments)
21
21
22
22
publicstringDescription
23
23
{
24
-
get{return"Clears the contents of the REPL editor window";}
Copy file name to clipboardExpand all lines: Nodejs/Product/InteractiveWindow/Repl/Commands/EchoReplCommand.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1
+
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem.ComponentModel.Composition;
4
4
usingSystem.Threading.Tasks;
@@ -15,7 +15,7 @@ public Task<ExecutionResult> Execute(IReplWindow window, string arguments)
Copy file name to clipboardExpand all lines: Nodejs/Product/InteractiveWindow/Repl/Commands/ResetReplCommand.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1
+
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem.ComponentModel.Composition;
4
4
usingSystem.Reflection;
@@ -21,7 +21,7 @@ public Task<ExecutionResult> Execute(IReplWindow window, string arguments)
21
21
22
22
publicstringDescription
23
23
{
24
-
get{return"Reset to an empty execution engine, but keep REPL history";}
Copy file name to clipboardExpand all lines: Nodejs/Product/InteractiveWindow/Repl/Commands/WaitReplCommand.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1
+
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem;
4
4
usingSystem.ComponentModel.Composition;
@@ -31,7 +31,7 @@ public Task<ExecutionResult> Execute(IReplWindow window, string arguments)
31
31
32
32
publicstringDescription
33
33
{
34
-
get{return"Wait for at least the specified number of milliseconds";}
Copy file name to clipboardExpand all lines: Nodejs/Product/InteractiveWindow/Repl/ReplOutputClassificationFormatDefinitions.cs
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1
+
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem.ComponentModel.Composition;
4
4
usingSystem.Windows.Media;
@@ -23,7 +23,7 @@ internal class InteractiveErrorFormatDefinition : ClassificationFormatDefinition
23
23
24
24
publicInteractiveErrorFormatDefinition()
25
25
{
26
-
DisplayName=Name;
26
+
DisplayName=Resources.ClassificationError;
27
27
ForegroundColor=Color.FromRgb(0xee,00,00);
28
28
}
29
29
}
@@ -43,7 +43,7 @@ internal class InteractiveBlackFormatDefinition : ClassificationFormatDefinition
43
43
44
44
publicInteractiveBlackFormatDefinition()
45
45
{
46
-
DisplayName=Name;
46
+
DisplayName=Resources.ClassificationBlack;
47
47
ForegroundColor=Colors.Black;
48
48
}
49
49
}
@@ -63,7 +63,7 @@ internal class InteractiveDarkRedFormatDefinition : ClassificationFormatDefiniti
63
63
64
64
publicInteractiveDarkRedFormatDefinition()
65
65
{
66
-
DisplayName=Name;
66
+
DisplayName=Resources.ClassificationDarkRed;
67
67
ForegroundColor=Color.FromRgb(0xd4,0,0);
68
68
}
69
69
}
@@ -83,7 +83,7 @@ internal class InteractiveDarkGreenFormatDefinition : ClassificationFormatDefini
83
83
84
84
publicInteractiveDarkGreenFormatDefinition()
85
85
{
86
-
DisplayName=Name;
86
+
DisplayName=Resources.ClassificationDarkGreen;
87
87
ForegroundColor=Color.FromRgb(0x00,0x8a,0);
88
88
}
89
89
}
@@ -103,7 +103,7 @@ internal class InteractiveDarkYellowFormatDefinition : ClassificationFormatDefin
103
103
104
104
publicInteractiveDarkYellowFormatDefinition()
105
105
{
106
-
DisplayName=Name;
106
+
DisplayName=Resources.ClassificationDarkYellow;
107
107
ForegroundColor=Color.FromRgb(0x98,0x70,0);
108
108
}
109
109
}
@@ -123,7 +123,7 @@ internal class InteractiveDarkBlueFormatDefinition : ClassificationFormatDefinit
123
123
124
124
publicInteractiveDarkBlueFormatDefinition()
125
125
{
126
-
DisplayName=Name;
126
+
DisplayName=Resources.ClassificationDarkBlue;
127
127
ForegroundColor=Color.FromRgb(0x00,0x57,0xff);
128
128
}
129
129
}
@@ -143,7 +143,7 @@ internal class InteractiveDarkMagentaFormatDefinition : ClassificationFormatDefi
143
143
144
144
publicInteractiveDarkMagentaFormatDefinition()
145
145
{
146
-
DisplayName=Name;
146
+
DisplayName=Resources.ClassificationDarkMagenta;
147
147
ForegroundColor=Color.FromRgb(0xbb,0x00,0xbb);
148
148
}
149
149
}
@@ -163,7 +163,7 @@ internal class InteractiveDarkCyanFormatDefinition : ClassificationFormatDefinit
163
163
164
164
publicInteractiveDarkCyanFormatDefinition()
165
165
{
166
-
DisplayName=Name;
166
+
DisplayName=Resources.ClassificationDarkCyan;
167
167
ForegroundColor=Color.FromRgb(0x00,0x7f,0x7f);
168
168
}
169
169
}
@@ -182,7 +182,7 @@ internal class InteractiveGrayFormatDefinition : ClassificationFormatDefinition
182
182
internalstaticClassificationTypeDefinitionDefinition=null;// Set via MEF
183
183
publicInteractiveGrayFormatDefinition()
184
184
{
185
-
DisplayName=Name;
185
+
DisplayName=Resources.ClassificationGray;
186
186
ForegroundColor=Color.FromRgb(0x76,0x76,0x76);
187
187
}
188
188
}
@@ -202,7 +202,7 @@ internal class InteractiveDarkGrayFormatDefinition : ClassificationFormatDefinit
202
202
203
203
publicInteractiveDarkGrayFormatDefinition()
204
204
{
205
-
DisplayName=Name;
205
+
DisplayName=Resources.ClassificationDarkGray;
206
206
ForegroundColor=Color.FromRgb(0x69,0x69,0x69);
207
207
}
208
208
}
@@ -222,7 +222,7 @@ internal class InteractiveRedFormatDefinition : ClassificationFormatDefinition
222
222
223
223
publicInteractiveRedFormatDefinition()
224
224
{
225
-
DisplayName=Name;
225
+
DisplayName=Resources.ClassificationRed;
226
226
ForegroundColor=Color.FromRgb(0xEE,0,0);
227
227
}
228
228
}
@@ -242,7 +242,7 @@ internal class InteractiveGreenFormatDefinition : ClassificationFormatDefinition
242
242
243
243
publicInteractiveGreenFormatDefinition()
244
244
{
245
-
DisplayName=Name;
245
+
DisplayName=Resources.ClassificationGreen;
246
246
ForegroundColor=Color.FromRgb(0x00,0x80,0);
247
247
}
248
248
}
@@ -262,7 +262,7 @@ internal class InteractiveYellowFormatDefinition : ClassificationFormatDefinitio
262
262
263
263
publicInteractiveYellowFormatDefinition()
264
264
{
265
-
DisplayName=Name;
265
+
DisplayName=Resources.ClassificationYellow;
266
266
ForegroundColor=Color.FromRgb(0xff,0xff,0);
267
267
}
268
268
}
@@ -283,7 +283,7 @@ internal class InteractiveBlueFormatDefinition : ClassificationFormatDefinition
283
283
284
284
publicInteractiveBlueFormatDefinition()
285
285
{
286
-
DisplayName=Name;
286
+
DisplayName=Resources.ClassificationBlue;
287
287
ForegroundColor=Color.FromRgb(0x00,0x00,0xff);
288
288
}
289
289
}
@@ -303,7 +303,7 @@ internal class InteractiveMagentaFormatDefinition : ClassificationFormatDefiniti
303
303
304
304
publicInteractiveMagentaFormatDefinition()
305
305
{
306
-
DisplayName=Name;
306
+
DisplayName=Resources.ClassificationMagenta;
307
307
ForegroundColor=Color.FromRgb(0xd1,0x00,0xd1);
308
308
}
309
309
}
@@ -323,7 +323,7 @@ internal class InteractiveCyanFormatDefinition : ClassificationFormatDefinition
323
323
324
324
publicInteractiveCyanFormatDefinition()
325
325
{
326
-
DisplayName=Name;
326
+
DisplayName=Resources.ClassificationCyan;
327
327
ForegroundColor=Color.FromRgb(0x00,0xff,0xff);
328
328
}
329
329
}
@@ -343,7 +343,7 @@ internal class InteractiveWhiteFormatDefinition : ClassificationFormatDefinition
Copy file name to clipboardExpand all lines: Nodejs/Product/InteractiveWindow/Repl/ReplWindow.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1
+
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
0 commit comments