@opensumi/ide-task 2.12.1-next-079c1930
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/browser/index.d.ts +6 -0
- package/lib/browser/index.d.ts.map +1 -0
- package/lib/browser/index.js +41 -0
- package/lib/browser/index.js.map +1 -0
- package/lib/browser/parser.d.ts +316 -0
- package/lib/browser/parser.d.ts.map +1 -0
- package/lib/browser/parser.js +481 -0
- package/lib/browser/parser.js.map +1 -0
- package/lib/browser/problem-collector.d.ts +27 -0
- package/lib/browser/problem-collector.d.ts.map +1 -0
- package/lib/browser/problem-collector.js +61 -0
- package/lib/browser/problem-collector.js.map +1 -0
- package/lib/browser/problem-line-matcher.d.ts +92 -0
- package/lib/browser/problem-line-matcher.d.ts.map +1 -0
- package/lib/browser/problem-line-matcher.js +378 -0
- package/lib/browser/problem-line-matcher.js.map +1 -0
- package/lib/browser/task-config.d.ts +385 -0
- package/lib/browser/task-config.d.ts.map +1 -0
- package/lib/browser/task-config.js +1427 -0
- package/lib/browser/task-config.js.map +1 -0
- package/lib/browser/task-preferences.contribution.d.ts +6 -0
- package/lib/browser/task-preferences.contribution.d.ts.map +1 -0
- package/lib/browser/task-preferences.contribution.js +17 -0
- package/lib/browser/task-preferences.contribution.js.map +1 -0
- package/lib/browser/task-preferences.d.ts +3 -0
- package/lib/browser/task-preferences.d.ts.map +1 -0
- package/lib/browser/task-preferences.js +15 -0
- package/lib/browser/task-preferences.js.map +1 -0
- package/lib/browser/task-preferences.provider.d.ts +6 -0
- package/lib/browser/task-preferences.provider.d.ts.map +1 -0
- package/lib/browser/task-preferences.provider.js +29 -0
- package/lib/browser/task-preferences.provider.js.map +1 -0
- package/lib/browser/task.contribution.d.ts +8 -0
- package/lib/browser/task.contribution.d.ts.map +1 -0
- package/lib/browser/task.contribution.js +35 -0
- package/lib/browser/task.contribution.js.map +1 -0
- package/lib/browser/task.schema.d.ts +4 -0
- package/lib/browser/task.schema.d.ts.map +1 -0
- package/lib/browser/task.schema.js +294 -0
- package/lib/browser/task.schema.js.map +1 -0
- package/lib/browser/task.service.d.ts +43 -0
- package/lib/browser/task.service.d.ts.map +1 -0
- package/lib/browser/task.service.js +354 -0
- package/lib/browser/task.service.js.map +1 -0
- package/lib/browser/terminal-task-system.d.ts +80 -0
- package/lib/browser/terminal-task-system.d.ts.map +1 -0
- package/lib/browser/terminal-task-system.js +391 -0
- package/lib/browser/terminal-task-system.js.map +1 -0
- package/lib/common/index.d.ts +130 -0
- package/lib/common/index.d.ts.map +1 -0
- package/lib/common/index.js +7 -0
- package/lib/common/index.js.map +1 -0
- package/lib/common/task.d.ts +572 -0
- package/lib/common/task.d.ts.map +1 -0
- package/lib/common/task.js +523 -0
- package/lib/common/task.js.map +1 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +6 -0
- package/lib/index.js.map +1 -0
- package/lib/node/index.d.ts +6 -0
- package/lib/node/index.d.ts.map +1 -0
- package/lib/node/index.js +17 -0
- package/lib/node/index.js.map +1 -0
- package/package.json +33 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/browser/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAc,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAS3D,qBACa,UAAW,SAAQ,aAAa;IAC3C,SAAS,EAAE,QAAQ,EAAE,CAiBnB;CACH"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TaskModule = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const di_1 = require("@opensumi/di");
|
|
6
|
+
const ide_core_browser_1 = require("@opensumi/ide-core-browser");
|
|
7
|
+
const task_contribution_1 = require("./task.contribution");
|
|
8
|
+
const common_1 = require("../common");
|
|
9
|
+
const task_service_1 = require("./task.service");
|
|
10
|
+
const task_preferences_contribution_1 = require("./task-preferences.contribution");
|
|
11
|
+
const folder_preference_provider_1 = require("@opensumi/ide-preferences/lib/browser/folder-preference-provider");
|
|
12
|
+
const task_preferences_provider_1 = require("./task-preferences.provider");
|
|
13
|
+
const terminal_task_system_1 = require("./terminal-task-system");
|
|
14
|
+
let TaskModule = class TaskModule extends ide_core_browser_1.BrowserModule {
|
|
15
|
+
constructor() {
|
|
16
|
+
super(...arguments);
|
|
17
|
+
this.providers = [
|
|
18
|
+
task_contribution_1.TaskContribution,
|
|
19
|
+
task_preferences_contribution_1.TaskPreferencesContribution,
|
|
20
|
+
{
|
|
21
|
+
token: folder_preference_provider_1.FolderPreferenceProvider,
|
|
22
|
+
useClass: task_preferences_provider_1.TaskFolderPreferenceProvider,
|
|
23
|
+
dropdownForTag: true,
|
|
24
|
+
tag: 'tasks',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
token: common_1.ITaskService,
|
|
28
|
+
useClass: task_service_1.TaskService,
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
token: common_1.ITaskSystem,
|
|
32
|
+
useClass: terminal_task_system_1.TerminalTaskSystem,
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
TaskModule = (0, tslib_1.__decorate)([
|
|
38
|
+
(0, di_1.Injectable)()
|
|
39
|
+
], TaskModule);
|
|
40
|
+
exports.TaskModule = TaskModule;
|
|
41
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/browser/index.ts"],"names":[],"mappings":";;;;AAAA,qCAAoD;AACpD,iEAA2D;AAC3D,2DAAuD;AACvD,sCAAqE;AACrE,iDAA6C;AAC7C,mFAA8E;AAC9E,iHAA4G;AAC5G,2EAA2E;AAC3E,iEAAkF;AAGlF,IAAa,UAAU,GAAvB,MAAa,UAAW,SAAQ,gCAAa;IAA7C;;QACE,cAAS,GAAe;YACtB,oCAAgB;YAChB,2DAA2B;YAC3B;gBACE,KAAK,EAAE,qDAAwB;gBAC/B,QAAQ,EAAE,wDAA4B;gBACtC,cAAc,EAAE,IAAI;gBACpB,GAAG,EAAE,OAAO;aACb;YACD;gBACE,KAAK,EAAE,qBAAY;gBACnB,QAAQ,EAAE,0BAAW;aACtB;YACD;gBACE,KAAK,EAAE,oBAAW;gBAClB,QAAQ,EAAE,yCAAkB;aAC7B;SACF,CAAC;IACJ,CAAC;CAAA,CAAA;AAnBY,UAAU;IADtB,IAAA,eAAU,GAAE;GACA,UAAU,CAmBtB;AAnBY,gCAAU"}
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
import { IProblemReporter, getProblemPatternFn, getProblemMatcherFn } from './task-config';
|
|
2
|
+
import { ProblemMatcher, Severity, ProblemPattern, MultiLineProblemPattern, NamedProblemPattern, NamedMultiLineProblemPattern } from '@opensumi/ide-core-common';
|
|
3
|
+
export declare const enum ValidationState {
|
|
4
|
+
OK = 0,
|
|
5
|
+
Info = 1,
|
|
6
|
+
Warning = 2,
|
|
7
|
+
Error = 3,
|
|
8
|
+
Fatal = 4
|
|
9
|
+
}
|
|
10
|
+
export declare class ValidationStatus {
|
|
11
|
+
private _state;
|
|
12
|
+
constructor();
|
|
13
|
+
get state(): ValidationState;
|
|
14
|
+
set state(value: ValidationState);
|
|
15
|
+
isOK(): boolean;
|
|
16
|
+
isFatal(): boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface IProblemReporterBase {
|
|
19
|
+
info(message: string): void;
|
|
20
|
+
warn(message: string): void;
|
|
21
|
+
error(message: string): void;
|
|
22
|
+
fatal(message: string): void;
|
|
23
|
+
status: ValidationStatus;
|
|
24
|
+
}
|
|
25
|
+
export declare abstract class Parser {
|
|
26
|
+
private _problemReporter;
|
|
27
|
+
constructor(problemReporter: IProblemReporterBase);
|
|
28
|
+
reset(): void;
|
|
29
|
+
get problemReporter(): IProblemReporterBase;
|
|
30
|
+
info(message: string): void;
|
|
31
|
+
warn(message: string): void;
|
|
32
|
+
error(message: string): void;
|
|
33
|
+
fatal(message: string): void;
|
|
34
|
+
}
|
|
35
|
+
export declare namespace Config {
|
|
36
|
+
interface ProblemPattern {
|
|
37
|
+
/**
|
|
38
|
+
* The regular expression to find a problem in the console output of an
|
|
39
|
+
* executed task.
|
|
40
|
+
*/
|
|
41
|
+
regexp?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Whether the pattern matches a whole file, or a location (file/line)
|
|
44
|
+
*
|
|
45
|
+
* The default is to match for a location. Only valid on the
|
|
46
|
+
* first problem pattern in a multi line problem matcher.
|
|
47
|
+
*/
|
|
48
|
+
kind?: string;
|
|
49
|
+
/**
|
|
50
|
+
* The match group index of the filename.
|
|
51
|
+
* If omitted 1 is used.
|
|
52
|
+
*/
|
|
53
|
+
file?: number;
|
|
54
|
+
/**
|
|
55
|
+
* The match group index of the problem's location. Valid location
|
|
56
|
+
* patterns are: (line), (line,column) and (startLine,startColumn,endLine,endColumn).
|
|
57
|
+
* If omitted the line and column properties are used.
|
|
58
|
+
*/
|
|
59
|
+
location?: number;
|
|
60
|
+
/**
|
|
61
|
+
* The match group index of the problem's line in the source file.
|
|
62
|
+
*
|
|
63
|
+
* Defaults to 2.
|
|
64
|
+
*/
|
|
65
|
+
line?: number;
|
|
66
|
+
/**
|
|
67
|
+
* The match group index of the problem's column in the source file.
|
|
68
|
+
*
|
|
69
|
+
* Defaults to 3.
|
|
70
|
+
*/
|
|
71
|
+
column?: number;
|
|
72
|
+
/**
|
|
73
|
+
* The match group index of the problem's end line in the source file.
|
|
74
|
+
*
|
|
75
|
+
* Defaults to undefined. No end line is captured.
|
|
76
|
+
*/
|
|
77
|
+
endLine?: number;
|
|
78
|
+
/**
|
|
79
|
+
* The match group index of the problem's end column in the source file.
|
|
80
|
+
*
|
|
81
|
+
* Defaults to undefined. No end column is captured.
|
|
82
|
+
*/
|
|
83
|
+
endColumn?: number;
|
|
84
|
+
/**
|
|
85
|
+
* The match group index of the problem's severity.
|
|
86
|
+
*
|
|
87
|
+
* Defaults to undefined. In this case the problem matcher's severity
|
|
88
|
+
* is used.
|
|
89
|
+
*/
|
|
90
|
+
severity?: number;
|
|
91
|
+
/**
|
|
92
|
+
* The match group index of the problem's code.
|
|
93
|
+
*
|
|
94
|
+
* Defaults to undefined. No code is captured.
|
|
95
|
+
*/
|
|
96
|
+
code?: number;
|
|
97
|
+
/**
|
|
98
|
+
* The match group index of the message. If omitted it defaults
|
|
99
|
+
* to 4 if location is specified. Otherwise it defaults to 5.
|
|
100
|
+
*/
|
|
101
|
+
message?: number;
|
|
102
|
+
/**
|
|
103
|
+
* Specifies if the last pattern in a multi line problem matcher should
|
|
104
|
+
* loop as long as it does match a line consequently. Only valid on the
|
|
105
|
+
* last problem pattern in a multi line problem matcher.
|
|
106
|
+
*/
|
|
107
|
+
loop?: boolean;
|
|
108
|
+
}
|
|
109
|
+
interface CheckedProblemPattern extends ProblemPattern {
|
|
110
|
+
/**
|
|
111
|
+
* The regular expression to find a problem in the console output of an
|
|
112
|
+
* executed task.
|
|
113
|
+
*/
|
|
114
|
+
regexp: string;
|
|
115
|
+
}
|
|
116
|
+
namespace CheckedProblemPattern {
|
|
117
|
+
function is(value: any): value is CheckedProblemPattern;
|
|
118
|
+
}
|
|
119
|
+
interface NamedProblemPattern extends ProblemPattern {
|
|
120
|
+
/**
|
|
121
|
+
* The name of the problem pattern.
|
|
122
|
+
*/
|
|
123
|
+
name: string;
|
|
124
|
+
/**
|
|
125
|
+
* A human readable label
|
|
126
|
+
*/
|
|
127
|
+
label?: string;
|
|
128
|
+
}
|
|
129
|
+
namespace NamedProblemPattern {
|
|
130
|
+
function is(value: any): value is NamedProblemPattern;
|
|
131
|
+
}
|
|
132
|
+
interface NamedCheckedProblemPattern extends NamedProblemPattern {
|
|
133
|
+
/**
|
|
134
|
+
* The regular expression to find a problem in the console output of an
|
|
135
|
+
* executed task.
|
|
136
|
+
*/
|
|
137
|
+
regexp: string;
|
|
138
|
+
}
|
|
139
|
+
namespace NamedCheckedProblemPattern {
|
|
140
|
+
function is(value: any): value is NamedCheckedProblemPattern;
|
|
141
|
+
}
|
|
142
|
+
type MultiLineProblemPattern = ProblemPattern[];
|
|
143
|
+
namespace MultiLineProblemPattern {
|
|
144
|
+
function is(value: any): value is MultiLineProblemPattern;
|
|
145
|
+
}
|
|
146
|
+
type MultiLineCheckedProblemPattern = CheckedProblemPattern[];
|
|
147
|
+
namespace MultiLineCheckedProblemPattern {
|
|
148
|
+
function is(value: any): value is MultiLineCheckedProblemPattern;
|
|
149
|
+
}
|
|
150
|
+
interface NamedMultiLineCheckedProblemPattern {
|
|
151
|
+
/**
|
|
152
|
+
* The name of the problem pattern.
|
|
153
|
+
*/
|
|
154
|
+
name: string;
|
|
155
|
+
/**
|
|
156
|
+
* A human readable label
|
|
157
|
+
*/
|
|
158
|
+
label?: string;
|
|
159
|
+
/**
|
|
160
|
+
* The actual patterns
|
|
161
|
+
*/
|
|
162
|
+
patterns: MultiLineCheckedProblemPattern;
|
|
163
|
+
}
|
|
164
|
+
namespace NamedMultiLineCheckedProblemPattern {
|
|
165
|
+
function is(value: any): value is NamedMultiLineCheckedProblemPattern;
|
|
166
|
+
}
|
|
167
|
+
type NamedProblemPatterns = (Config.NamedProblemPattern | Config.NamedMultiLineCheckedProblemPattern)[];
|
|
168
|
+
/**
|
|
169
|
+
* A watching pattern
|
|
170
|
+
*/
|
|
171
|
+
interface WatchingPattern {
|
|
172
|
+
/**
|
|
173
|
+
* The actual regular expression
|
|
174
|
+
*/
|
|
175
|
+
regexp?: string;
|
|
176
|
+
/**
|
|
177
|
+
* The match group index of the filename. If provided the expression
|
|
178
|
+
* is matched for that file only.
|
|
179
|
+
*/
|
|
180
|
+
file?: number;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* A description to track the start and end of a watching task.
|
|
184
|
+
*/
|
|
185
|
+
interface BackgroundMonitor {
|
|
186
|
+
/**
|
|
187
|
+
* If set to true the watcher is in active mode when the task
|
|
188
|
+
* starts. This is equals of issuing a line that matches the
|
|
189
|
+
* beginsPattern.
|
|
190
|
+
*/
|
|
191
|
+
activeOnStart?: boolean;
|
|
192
|
+
/**
|
|
193
|
+
* If matched in the output the start of a watching task is signaled.
|
|
194
|
+
*/
|
|
195
|
+
beginsPattern?: string | WatchingPattern;
|
|
196
|
+
/**
|
|
197
|
+
* If matched in the output the end of a watching task is signaled.
|
|
198
|
+
*/
|
|
199
|
+
endsPattern?: string | WatchingPattern;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* A description of a problem matcher that detects problems
|
|
203
|
+
* in build output.
|
|
204
|
+
*/
|
|
205
|
+
interface ProblemMatcher {
|
|
206
|
+
/**
|
|
207
|
+
* The name of a base problem matcher to use. If specified the
|
|
208
|
+
* base problem matcher will be used as a template and properties
|
|
209
|
+
* specified here will replace properties of the base problem
|
|
210
|
+
* matcher
|
|
211
|
+
*/
|
|
212
|
+
base?: string;
|
|
213
|
+
/**
|
|
214
|
+
* The owner of the produced VSCode problem. This is typically
|
|
215
|
+
* the identifier of a VSCode language service if the problems are
|
|
216
|
+
* to be merged with the one produced by the language service
|
|
217
|
+
* or a generated internal id. Defaults to the generated internal id.
|
|
218
|
+
*/
|
|
219
|
+
owner?: string;
|
|
220
|
+
/**
|
|
221
|
+
* A human-readable string describing the source of this problem.
|
|
222
|
+
* E.g. 'typescript' or 'super lint'.
|
|
223
|
+
*/
|
|
224
|
+
source?: string;
|
|
225
|
+
/**
|
|
226
|
+
* Specifies to which kind of documents the problems found by this
|
|
227
|
+
* matcher are applied. Valid values are:
|
|
228
|
+
*
|
|
229
|
+
* "allDocuments": problems found in all documents are applied.
|
|
230
|
+
* "openDocuments": problems found in documents that are open
|
|
231
|
+
* are applied.
|
|
232
|
+
* "closedDocuments": problems found in closed documents are
|
|
233
|
+
* applied.
|
|
234
|
+
*/
|
|
235
|
+
applyTo?: string | string[];
|
|
236
|
+
/**
|
|
237
|
+
* The severity of the VSCode problem produced by this problem matcher.
|
|
238
|
+
*
|
|
239
|
+
* Valid values are:
|
|
240
|
+
* "error": to produce errors.
|
|
241
|
+
* "warning": to produce warnings.
|
|
242
|
+
* "info": to produce infos.
|
|
243
|
+
*
|
|
244
|
+
* The value is used if a pattern doesn't specify a severity match group.
|
|
245
|
+
* Defaults to "error" if omitted.
|
|
246
|
+
*/
|
|
247
|
+
severity?: string | Severity;
|
|
248
|
+
/**
|
|
249
|
+
* Defines how filename reported in a problem pattern
|
|
250
|
+
* should be read. Valid values are:
|
|
251
|
+
* - "absolute": the filename is always treated absolute.
|
|
252
|
+
* - "relative": the filename is always treated relative to
|
|
253
|
+
* the current working directory. This is the default.
|
|
254
|
+
* - ["relative", "path value"]: the filename is always
|
|
255
|
+
* treated relative to the given path value.
|
|
256
|
+
*/
|
|
257
|
+
fileLocation?: string | string[];
|
|
258
|
+
/**
|
|
259
|
+
* The name of a predefined problem pattern, the inline definintion
|
|
260
|
+
* of a problem pattern or an array of problem patterns to match
|
|
261
|
+
* problems spread over multiple lines.
|
|
262
|
+
*/
|
|
263
|
+
pattern?: string | ProblemPattern | ProblemPattern[];
|
|
264
|
+
/**
|
|
265
|
+
* A regular expression signaling that a watched tasks begins executing
|
|
266
|
+
* triggered through file watching.
|
|
267
|
+
*/
|
|
268
|
+
watchedTaskBeginsRegExp?: string;
|
|
269
|
+
/**
|
|
270
|
+
* A regular expression signaling that a watched tasks ends executing.
|
|
271
|
+
*/
|
|
272
|
+
watchedTaskEndsRegExp?: string;
|
|
273
|
+
/**
|
|
274
|
+
* @deprecated Use background instead.
|
|
275
|
+
*/
|
|
276
|
+
watching?: BackgroundMonitor;
|
|
277
|
+
background?: BackgroundMonitor;
|
|
278
|
+
}
|
|
279
|
+
type ProblemMatcherType = string | ProblemMatcher | Array<string | ProblemMatcher>;
|
|
280
|
+
interface NamedProblemMatcher extends ProblemMatcher {
|
|
281
|
+
/**
|
|
282
|
+
* This name can be used to refer to the
|
|
283
|
+
* problem matcher from within a task.
|
|
284
|
+
*/
|
|
285
|
+
name: string;
|
|
286
|
+
/**
|
|
287
|
+
* A human readable label.
|
|
288
|
+
*/
|
|
289
|
+
label?: string;
|
|
290
|
+
}
|
|
291
|
+
function isNamedProblemMatcher(value?: ProblemMatcher): value is NamedProblemMatcher;
|
|
292
|
+
}
|
|
293
|
+
export declare class ProblemPatternParser extends Parser {
|
|
294
|
+
constructor(logger: IProblemReporter);
|
|
295
|
+
parse(value: Config.ProblemPattern): ProblemPattern;
|
|
296
|
+
parse(value: Config.MultiLineProblemPattern): MultiLineProblemPattern;
|
|
297
|
+
parse(value: Config.NamedProblemPattern): NamedProblemPattern;
|
|
298
|
+
parse(value: Config.NamedMultiLineCheckedProblemPattern): NamedMultiLineProblemPattern;
|
|
299
|
+
private createSingleProblemPattern;
|
|
300
|
+
private createNamedMultiLineProblemPattern;
|
|
301
|
+
private createMultiLineProblemPattern;
|
|
302
|
+
private doCreateSingleProblemPattern;
|
|
303
|
+
private validateProblemPattern;
|
|
304
|
+
private createRegularExpression;
|
|
305
|
+
}
|
|
306
|
+
export declare class ProblemMatcherParser extends Parser {
|
|
307
|
+
constructor(logger: IProblemReporter);
|
|
308
|
+
parse(json: Config.ProblemMatcher, getProblemPattern: getProblemPatternFn, getProblemMatcher: getProblemMatcherFn): ProblemMatcher | undefined;
|
|
309
|
+
private checkProblemMatcherValid;
|
|
310
|
+
private createProblemMatcher;
|
|
311
|
+
private createProblemPattern;
|
|
312
|
+
private addWatchingMatcher;
|
|
313
|
+
private createWatchingPattern;
|
|
314
|
+
private createRegularExpression;
|
|
315
|
+
}
|
|
316
|
+
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../src/browser/parser.ts"],"names":[],"mappings":"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"}
|