Blame view

bower_components/l20n/dist/compat/web/l20n-common.js 40.3 KB
0e9aeacd   root   localization l20n
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
  'use strict';
  
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
  
  function L10nError(message, id, lang) {
    this.name = 'L10nError';
    this.message = message;
    this.id = id;
    this.lang = lang;
  }
  L10nError.prototype = Object.create(Error.prototype);
  L10nError.prototype.constructor = L10nError;
  
  function load(type, url) {
    return new Promise(function (resolve, reject) {
      var xhr = new XMLHttpRequest();
  
      if (xhr.overrideMimeType) {
        xhr.overrideMimeType(type);
      }
  
      xhr.open('GET', url, true);
  
      if (type === 'application/json') {
        xhr.responseType = 'json';
      }
  
      xhr.addEventListener('load', function io_onload(e) {
        if (e.target.status === 200 || e.target.status === 0) {
          resolve(e.target.response || e.target.responseText);
        } else {
          reject(new L10nError('Not found: ' + url));
        }
      });
      xhr.addEventListener('error', reject);
      xhr.addEventListener('timeout', reject);
  
      try {
        xhr.send(null);
      } catch (e) {
        if (e.name === 'NS_ERROR_FILE_NOT_FOUND') {
          reject(new L10nError('Not found: ' + url));
        } else {
          throw e;
        }
      }
    });
  }
  
  var io = {
    extra: function (code, ver, path, type) {
      return navigator.mozApps.getLocalizationResource(code, ver, path, type);
    },
    app: function (code, ver, path, type) {
      switch (type) {
        case 'text':
          return load('text/plain', path);
        case 'json':
          return load('application/json', path);
        default:
          throw new L10nError('Unknown file type: ' + type);
      }
    }
  };
  
c5169e0e   Renato De Donato   a new hope
66
67
  function fetchResource$1(ver, res, lang) {
    var url = res.replace('{locale}', lang.code);
0e9aeacd   root   localization l20n
68
    var type = res.endsWith('.json') ? 'json' : 'text';
c5169e0e   Renato De Donato   a new hope
69
    return io[lang.src](lang.code, ver, url, type);
0e9aeacd   root   localization l20n
70
71
  }
  
c5169e0e   Renato De Donato   a new hope
72
  var MAX_PLACEABLES$1 = 100;
0e9aeacd   root   localization l20n
73
  
c5169e0e   Renato De Donato   a new hope
74
75
76
77
78
79
80
  var L20nParser = {
    parse: function (emit, string) {
      this._source = string;
      this._index = 0;
      this._length = string.length;
      this.entries = Object.create(null);
      this.emit = emit;
0e9aeacd   root   localization l20n
81
  
c5169e0e   Renato De Donato   a new hope
82
83
      return this.getResource();
    },
0e9aeacd   root   localization l20n
84
  
c5169e0e   Renato De Donato   a new hope
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
    getResource: function () {
      this.getWS();
      while (this._index < this._length) {
        try {
          this.getEntry();
        } catch (e) {
          if (e instanceof L10nError) {
            this.getJunkEntry();
            if (!this.emit) {
              throw e;
            }
          } else {
            throw e;
          }
        }
0e9aeacd   root   localization l20n
100
  
c5169e0e   Renato De Donato   a new hope
101
102
103
104
        if (this._index < this._length) {
          this.getWS();
        }
      }
0e9aeacd   root   localization l20n
105
  
c5169e0e   Renato De Donato   a new hope
106
107
      return this.entries;
    },
0e9aeacd   root   localization l20n
108
  
c5169e0e   Renato De Donato   a new hope
109
110
111
112
113
114
115
116
117
    getEntry: function () {
      if (this._source[this._index] === '<') {
        ++this._index;
        var id = this.getIdentifier();
        if (this._source[this._index] === '[') {
          ++this._index;
          return this.getEntity(id, this.getItemList(this.getExpression, ']'));
        }
        return this.getEntity(id);
0e9aeacd   root   localization l20n
118
      }
0e9aeacd   root   localization l20n
119
  
c5169e0e   Renato De Donato   a new hope
120
121
122
      if (this._source.startsWith('/*', this._index)) {
        return this.getComment();
      }
0e9aeacd   root   localization l20n
123
  
c5169e0e   Renato De Donato   a new hope
124
125
      throw this.error('Invalid entry');
    },
0e9aeacd   root   localization l20n
126
  
c5169e0e   Renato De Donato   a new hope
127
128
129
130
    getEntity: function (id, index) {
      if (!this.getRequiredWS()) {
        throw this.error('Expected white space');
      }
0e9aeacd   root   localization l20n
131
  
c5169e0e   Renato De Donato   a new hope
132
133
134
      var ch = this._source[this._index];
      var value = this.getValue(ch, index === undefined);
      var attrs = undefined;
0e9aeacd   root   localization l20n
135
  
c5169e0e   Renato De Donato   a new hope
136
137
138
139
140
141
142
143
144
145
146
147
148
149
      if (value === undefined) {
        if (ch === '>') {
          throw this.error('Expected ">"');
        }
        attrs = this.getAttributes();
      } else {
        var ws1 = this.getRequiredWS();
        if (this._source[this._index] !== '>') {
          if (!ws1) {
            throw this.error('Expected ">"');
          }
          attrs = this.getAttributes();
        }
      }
0e9aeacd   root   localization l20n
150
  
c5169e0e   Renato De Donato   a new hope
151
      ++this._index;
0e9aeacd   root   localization l20n
152
  
c5169e0e   Renato De Donato   a new hope
153
154
155
156
157
158
159
160
161
162
163
164
165
      if (id in this.entries) {
        throw this.error('Duplicate entry ID "' + id, 'duplicateerror');
      }
      if (!attrs && !index && typeof value === 'string') {
        this.entries[id] = value;
      } else {
        this.entries[id] = {
          value: value,
          attrs: attrs,
          index: index
        };
      }
    },
0e9aeacd   root   localization l20n
166
  
c5169e0e   Renato De Donato   a new hope
167
168
169
    getValue: function () {
      var ch = arguments.length <= 0 || arguments[0] === undefined ? this._source[this._index] : arguments[0];
      var optional = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1];
0e9aeacd   root   localization l20n
170
  
c5169e0e   Renato De Donato   a new hope
171
172
173
174
175
176
      switch (ch) {
        case '\'':
        case '"':
          return this.getString(ch, 1);
        case '{':
          return this.getHash();
0e9aeacd   root   localization l20n
177
      }
0e9aeacd   root   localization l20n
178
  
c5169e0e   Renato De Donato   a new hope
179
180
181
      if (!optional) {
        throw this.error('Unknown value type');
      }
a1a3bc73   Luigi Serra   graphs updates
182
  
c5169e0e   Renato De Donato   a new hope
183
184
      return;
    },
0e9aeacd   root   localization l20n
185
  
c5169e0e   Renato De Donato   a new hope
186
187
    getWS: function () {
      var cc = this._source.charCodeAt(this._index);
a1a3bc73   Luigi Serra   graphs updates
188
  
c5169e0e   Renato De Donato   a new hope
189
190
      while (cc === 32 || cc === 10 || cc === 9 || cc === 13) {
        cc = this._source.charCodeAt(++this._index);
0e9aeacd   root   localization l20n
191
      }
c5169e0e   Renato De Donato   a new hope
192
    },
0e9aeacd   root   localization l20n
193
  
c5169e0e   Renato De Donato   a new hope
194
195
196
    getRequiredWS: function () {
      var pos = this._index;
      var cc = this._source.charCodeAt(pos);
0e9aeacd   root   localization l20n
197
  
c5169e0e   Renato De Donato   a new hope
198
199
200
201
202
      while (cc === 32 || cc === 10 || cc === 9 || cc === 13) {
        cc = this._source.charCodeAt(++this._index);
      }
      return this._index !== pos;
    },
0e9aeacd   root   localization l20n
203
  
c5169e0e   Renato De Donato   a new hope
204
205
206
    getIdentifier: function () {
      var start = this._index;
      var cc = this._source.charCodeAt(this._index);
0e9aeacd   root   localization l20n
207
  
c5169e0e   Renato De Donato   a new hope
208
209
210
211
      if (cc >= 97 && cc <= 122 || cc >= 65 && cc <= 90 || cc === 95) {
        cc = this._source.charCodeAt(++this._index);
      } else {
        throw this.error('Identifier has to start with [a-zA-Z_]');
a1a3bc73   Luigi Serra   graphs updates
212
      }
c5169e0e   Renato De Donato   a new hope
213
214
215
  
      while (cc >= 97 && cc <= 122 || cc >= 65 && cc <= 90 || cc >= 48 && cc <= 57 || cc === 95) {
        cc = this._source.charCodeAt(++this._index);
a1a3bc73   Luigi Serra   graphs updates
216
      }
0e9aeacd   root   localization l20n
217
  
c5169e0e   Renato De Donato   a new hope
218
219
      return this._source.slice(start, this._index);
    },
0e9aeacd   root   localization l20n
220
  
c5169e0e   Renato De Donato   a new hope
221
222
223
224
225
226
227
228
229
230
231
    getUnicodeChar: function () {
      for (var i = 0; i < 4; i++) {
        var cc = this._source.charCodeAt(++this._index);
        if (cc > 96 && cc < 103 || cc > 64 && cc < 71 || cc > 47 && cc < 58) {
          continue;
        }
        throw this.error('Illegal unicode escape sequence');
      }
      this._index++;
      return String.fromCharCode(parseInt(this._source.slice(this._index - 4, this._index), 16));
    },
0e9aeacd   root   localization l20n
232
  
c5169e0e   Renato De Donato   a new hope
233
234
235
236
    stringRe: /"|'|{{|\\/g,
    getString: function (opchar, opcharLen) {
      var body = [];
      var placeables = 0;
0e9aeacd   root   localization l20n
237
  
c5169e0e   Renato De Donato   a new hope
238
239
      this._index += opcharLen;
      var start = this._index;
0e9aeacd   root   localization l20n
240
  
c5169e0e   Renato De Donato   a new hope
241
242
      var bufStart = start;
      var buf = '';
0e9aeacd   root   localization l20n
243
  
c5169e0e   Renato De Donato   a new hope
244
245
246
      while (true) {
        this.stringRe.lastIndex = this._index;
        var match = this.stringRe.exec(this._source);
0e9aeacd   root   localization l20n
247
  
c5169e0e   Renato De Donato   a new hope
248
249
250
        if (!match) {
          throw this.error('Unclosed string literal');
        }
0e9aeacd   root   localization l20n
251
  
c5169e0e   Renato De Donato   a new hope
252
253
254
255
256
257
258
259
        if (match[0] === '"' || match[0] === '\'') {
          if (match[0] !== opchar) {
            this._index += opcharLen;
            continue;
          }
          this._index = match.index + opcharLen;
          break;
        }
0e9aeacd   root   localization l20n
260
  
c5169e0e   Renato De Donato   a new hope
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
        if (match[0] === '{{') {
          if (placeables > MAX_PLACEABLES$1 - 1) {
            throw this.error('Too many placeables, maximum allowed is ' + MAX_PLACEABLES$1);
          }
          placeables++;
          if (match.index > bufStart || buf.length > 0) {
            body.push(buf + this._source.slice(bufStart, match.index));
            buf = '';
          }
          this._index = match.index + 2;
          this.getWS();
          body.push(this.getExpression());
          this.getWS();
          this._index += 2;
          bufStart = this._index;
          continue;
        }
0e9aeacd   root   localization l20n
278
  
c5169e0e   Renato De Donato   a new hope
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
        if (match[0] === '\\') {
          this._index = match.index + 1;
          var ch2 = this._source[this._index];
          if (ch2 === 'u') {
            buf += this._source.slice(bufStart, match.index) + this.getUnicodeChar();
          } else if (ch2 === opchar || ch2 === '\\') {
            buf += this._source.slice(bufStart, match.index) + ch2;
            this._index++;
          } else if (this._source.startsWith('{{', this._index)) {
            buf += this._source.slice(bufStart, match.index) + '{{';
            this._index += 2;
          } else {
            throw this.error('Illegal escape sequence');
          }
          bufStart = this._index;
        }
0e9aeacd   root   localization l20n
295
      }
c5169e0e   Renato De Donato   a new hope
296
297
298
  
      if (body.length === 0) {
        return buf + this._source.slice(bufStart, this._index - opcharLen);
0e9aeacd   root   localization l20n
299
      }
c5169e0e   Renato De Donato   a new hope
300
301
302
  
      if (this._index - opcharLen > bufStart || buf.length > 0) {
        body.push(buf + this._source.slice(bufStart, this._index - opcharLen));
0e9aeacd   root   localization l20n
303
      }
c5169e0e   Renato De Donato   a new hope
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
  
      return body;
    },
  
    getAttributes: function () {
      var attrs = Object.create(null);
  
      while (true) {
        this.getAttribute(attrs);
        var ws1 = this.getRequiredWS();
        var ch = this._source.charAt(this._index);
        if (ch === '>') {
          break;
        } else if (!ws1) {
          throw this.error('Expected ">"');
        }
0e9aeacd   root   localization l20n
320
      }
c5169e0e   Renato De Donato   a new hope
321
      return attrs;
0e9aeacd   root   localization l20n
322
    },
c5169e0e   Renato De Donato   a new hope
323
324
325
326
327
328
329
330
331
  
    getAttribute: function (attrs) {
      var key = this.getIdentifier();
      var index = undefined;
  
      if (this._source[this._index] === '[') {
        ++this._index;
        this.getWS();
        index = this.getItemList(this.getExpression, ']');
0e9aeacd   root   localization l20n
332
      }
c5169e0e   Renato De Donato   a new hope
333
334
335
      this.getWS();
      if (this._source[this._index] !== ':') {
        throw this.error('Expected ":"');
0e9aeacd   root   localization l20n
336
      }
c5169e0e   Renato De Donato   a new hope
337
338
339
340
341
342
      ++this._index;
      this.getWS();
      var value = this.getValue();
  
      if (key in attrs) {
        throw this.error('Duplicate attribute "' + key, 'duplicateerror');
0e9aeacd   root   localization l20n
343
      }
c5169e0e   Renato De Donato   a new hope
344
345
346
347
348
349
350
351
  
      if (!index && typeof value === 'string') {
        attrs[key] = value;
      } else {
        attrs[key] = {
          value: value,
          index: index
        };
0e9aeacd   root   localization l20n
352
      }
0e9aeacd   root   localization l20n
353
    },
c5169e0e   Renato De Donato   a new hope
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
  
    getHash: function () {
      var items = Object.create(null);
  
      ++this._index;
      this.getWS();
  
      var defKey = undefined;
  
      while (true) {
        var _getHashItem = this.getHashItem();
  
        var key = _getHashItem[0];
        var value = _getHashItem[1];
        var def = _getHashItem[2];
  
        items[key] = value;
  
        if (def) {
          if (defKey) {
            throw this.error('Default item redefinition forbidden');
          }
          defKey = key;
        }
        this.getWS();
  
        var comma = this._source[this._index] === ',';
        if (comma) {
          ++this._index;
          this.getWS();
        }
        if (this._source[this._index] === '}') {
          ++this._index;
          break;
        }
        if (!comma) {
          throw this.error('Expected "}"');
        }
0e9aeacd   root   localization l20n
392
      }
c5169e0e   Renato De Donato   a new hope
393
394
395
  
      if (defKey) {
        items.__default = defKey;
a1a3bc73   Luigi Serra   graphs updates
396
      }
c5169e0e   Renato De Donato   a new hope
397
398
  
      return items;
a1a3bc73   Luigi Serra   graphs updates
399
    },
c5169e0e   Renato De Donato   a new hope
400
401
402
403
404
405
  
    getHashItem: function () {
      var defItem = false;
      if (this._source[this._index] === '*') {
        ++this._index;
        defItem = true;
a1a3bc73   Luigi Serra   graphs updates
406
      }
c5169e0e   Renato De Donato   a new hope
407
408
409
410
411
  
      var key = this.getIdentifier();
      this.getWS();
      if (this._source[this._index] !== ':') {
        throw this.error('Expected ":"');
0e9aeacd   root   localization l20n
412
      }
c5169e0e   Renato De Donato   a new hope
413
414
415
416
      ++this._index;
      this.getWS();
  
      return [key, this.getValue(), defItem];
0e9aeacd   root   localization l20n
417
    },
c5169e0e   Renato De Donato   a new hope
418
419
420
421
422
423
424
425
  
    getComment: function () {
      this._index += 2;
      var start = this._index;
      var end = this._source.indexOf('*/', start);
  
      if (end === -1) {
        throw this.error('Comment without a closing tag');
0e9aeacd   root   localization l20n
426
      }
c5169e0e   Renato De Donato   a new hope
427
428
  
      this._index = end + 2;
0e9aeacd   root   localization l20n
429
    },
c5169e0e   Renato De Donato   a new hope
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
  
    getExpression: function () {
      var exp = this.getPrimaryExpression();
  
      while (true) {
        var ch = this._source[this._index];
        if (ch === '.' || ch === '[') {
          ++this._index;
          exp = this.getPropertyExpression(exp, ch === '[');
        } else if (ch === '(') {
          ++this._index;
          exp = this.getCallExpression(exp);
        } else {
          break;
        }
a1a3bc73   Luigi Serra   graphs updates
445
      }
c5169e0e   Renato De Donato   a new hope
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
  
      return exp;
    },
  
    getPropertyExpression: function (idref, computed) {
      var exp = undefined;
  
      if (computed) {
        this.getWS();
        exp = this.getExpression();
        this.getWS();
        if (this._source[this._index] !== ']') {
          throw this.error('Expected "]"');
        }
        ++this._index;
      } else {
        exp = this.getIdentifier();
a1a3bc73   Luigi Serra   graphs updates
463
      }
c5169e0e   Renato De Donato   a new hope
464
465
466
467
468
469
470
  
      return {
        type: 'prop',
        expr: idref,
        prop: exp,
        cmpt: computed
      };
0e9aeacd   root   localization l20n
471
    },
c5169e0e   Renato De Donato   a new hope
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
  
    getCallExpression: function (callee) {
      this.getWS();
  
      return {
        type: 'call',
        expr: callee,
        args: this.getItemList(this.getExpression, ')')
      };
    },
  
    getPrimaryExpression: function () {
      var ch = this._source[this._index];
  
      switch (ch) {
        case '$':
          ++this._index;
          return {
            type: 'var',
            name: this.getIdentifier()
          };
        case '@':
          ++this._index;
          return {
            type: 'glob',
            name: this.getIdentifier()
          };
        default:
          return {
            type: 'id',
            name: this.getIdentifier()
          };
a1a3bc73   Luigi Serra   graphs updates
504
      }
0e9aeacd   root   localization l20n
505
    },
c5169e0e   Renato De Donato   a new hope
506
507
508
509
510
511
512
513
514
515
  
    getItemList: function (callback, closeChar) {
      var items = [];
      var closed = false;
  
      this.getWS();
  
      if (this._source[this._index] === closeChar) {
        ++this._index;
        closed = true;
0e9aeacd   root   localization l20n
516
      }
c5169e0e   Renato De Donato   a new hope
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
  
      while (!closed) {
        items.push(callback.call(this));
        this.getWS();
        var ch = this._source.charAt(this._index);
        switch (ch) {
          case ',':
            ++this._index;
            this.getWS();
            break;
          case closeChar:
            ++this._index;
            closed = true;
            break;
          default:
            throw this.error('Expected "," or "' + closeChar + '"');
        }
0e9aeacd   root   localization l20n
534
      }
c5169e0e   Renato De Donato   a new hope
535
536
  
      return items;
a1a3bc73   Luigi Serra   graphs updates
537
    },
c5169e0e   Renato De Donato   a new hope
538
539
540
541
542
543
544
545
  
    getJunkEntry: function () {
      var pos = this._index;
      var nextEntity = this._source.indexOf('<', pos);
      var nextComment = this._source.indexOf('/*', pos);
  
      if (nextEntity === -1) {
        nextEntity = this._length;
a1a3bc73   Luigi Serra   graphs updates
546
      }
c5169e0e   Renato De Donato   a new hope
547
548
      if (nextComment === -1) {
        nextComment = this._length;
a1a3bc73   Luigi Serra   graphs updates
549
      }
c5169e0e   Renato De Donato   a new hope
550
551
552
553
  
      var nextEntry = Math.min(nextEntity, nextComment);
  
      this._index = nextEntry;
0e9aeacd   root   localization l20n
554
    },
c5169e0e   Renato De Donato   a new hope
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
  
    error: function (message) {
      var type = arguments.length <= 1 || arguments[1] === undefined ? 'parsererror' : arguments[1];
  
      var pos = this._index;
  
      var start = this._source.lastIndexOf('<', pos - 1);
      var lastClose = this._source.lastIndexOf('>', pos - 1);
      start = lastClose > start ? lastClose + 1 : start;
      var context = this._source.slice(start, pos + 10);
  
      var msg = message + ' at pos ' + pos + ': `' + context + '`';
      var err = new L10nError(msg);
      if (this.emit) {
        this.emit(type, err);
0e9aeacd   root   localization l20n
570
      }
c5169e0e   Renato De Donato   a new hope
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
      return err;
    }
  };
  
  var MAX_PLACEABLES = 100;
  
  var PropertiesParser = {
    patterns: null,
    entryIds: null,
    emit: null,
  
    init: function () {
      this.patterns = {
        comment: /^\s*#|^\s*$/,
        entity: /^([^=\s]+)\s*=\s*(.*)$/,
        multiline: /[^\\]\\$/,
        index: /\{\[\s*(\w+)(?:\(([^\)]*)\))?\s*\]\}/i,
        unicode: /\\u([0-9a-fA-F]{1,4})/g,
        entries: /[^\r\n]+/g,
        controlChars: /\\([\\\n\r\t\b\f\{\}\"\'])/g,
        placeables: /\{\{\s*([^\s]*?)\s*\}\}/
      };
a1a3bc73   Luigi Serra   graphs updates
593
    },
c5169e0e   Renato De Donato   a new hope
594
595
596
597
  
    parse: function (emit, source) {
      if (!this.patterns) {
        this.init();
0e9aeacd   root   localization l20n
598
      }
c5169e0e   Renato De Donato   a new hope
599
600
601
602
603
604
605
      this.emit = emit;
  
      var entries = {};
  
      var lines = source.match(this.patterns.entries);
      if (!lines) {
        return entries;
a1a3bc73   Luigi Serra   graphs updates
606
      }
c5169e0e   Renato De Donato   a new hope
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
      for (var i = 0; i < lines.length; i++) {
        var line = lines[i];
  
        if (this.patterns.comment.test(line)) {
          continue;
        }
  
        while (this.patterns.multiline.test(line) && i < lines.length) {
          line = line.slice(0, -1) + lines[++i].trim();
        }
  
        var entityMatch = line.match(this.patterns.entity);
        if (entityMatch) {
          try {
            this.parseEntity(entityMatch[1], entityMatch[2], entries);
          } catch (e) {
            if (!this.emit) {
              throw e;
            }
          }
        }
a1a3bc73   Luigi Serra   graphs updates
628
      }
c5169e0e   Renato De Donato   a new hope
629
      return entries;
0e9aeacd   root   localization l20n
630
    },
c5169e0e   Renato De Donato   a new hope
631
632
633
634
635
636
637
638
639
640
641
  
    parseEntity: function (id, value, entries) {
      var name, key;
  
      var pos = id.indexOf('[');
      if (pos !== -1) {
        name = id.substr(0, pos);
        key = id.substring(pos + 1, id.length - 1);
      } else {
        name = id;
        key = null;
0e9aeacd   root   localization l20n
642
      }
c5169e0e   Renato De Donato   a new hope
643
644
645
646
647
  
      var nameElements = name.split('.');
  
      if (nameElements.length > 2) {
        throw this.error('Error in ID: "' + name + '".' + ' Nested attributes are not supported.');
0e9aeacd   root   localization l20n
648
      }
c5169e0e   Renato De Donato   a new hope
649
650
651
652
653
654
655
656
657
658
659
  
      var attr;
      if (nameElements.length > 1) {
        name = nameElements[0];
        attr = nameElements[1];
  
        if (attr[0] === '$') {
          throw this.error('Attribute can\'t start with "$"');
        }
      } else {
        attr = null;
0e9aeacd   root   localization l20n
660
      }
c5169e0e   Renato De Donato   a new hope
661
662
  
      this.setEntityValue(name, attr, key, this.unescapeString(value), entries);
a1a3bc73   Luigi Serra   graphs updates
663
    },
c5169e0e   Renato De Donato   a new hope
664
665
666
667
668
669
670
671
672
673
674
675
  
    setEntityValue: function (id, attr, key, rawValue, entries) {
      var value = rawValue.indexOf('{{') > -1 ? this.parseString(rawValue) : rawValue;
  
      var isSimpleValue = typeof value === 'string';
      var root = entries;
  
      var isSimpleNode = typeof entries[id] === 'string';
  
      if (!entries[id] && (attr || key || !isSimpleValue)) {
        entries[id] = Object.create(null);
        isSimpleNode = false;
a1a3bc73   Luigi Serra   graphs updates
676
      }
c5169e0e   Renato De Donato   a new hope
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
  
      if (attr) {
        if (isSimpleNode) {
          var val = entries[id];
          entries[id] = Object.create(null);
          entries[id].value = val;
        }
        if (!entries[id].attrs) {
          entries[id].attrs = Object.create(null);
        }
        if (!entries[id].attrs && !isSimpleValue) {
          entries[id].attrs[attr] = Object.create(null);
        }
        root = entries[id].attrs;
        id = attr;
a1a3bc73   Luigi Serra   graphs updates
692
      }
c5169e0e   Renato De Donato   a new hope
693
694
695
696
697
698
699
700
701
702
703
704
  
      if (key) {
        isSimpleNode = false;
        if (typeof root[id] === 'string') {
          var val = root[id];
          root[id] = Object.create(null);
          root[id].index = this.parseIndex(val);
          root[id].value = Object.create(null);
        }
        root = root[id].value;
        id = key;
        isSimpleValue = true;
0e9aeacd   root   localization l20n
705
      }
c5169e0e   Renato De Donato   a new hope
706
707
708
709
710
711
712
713
714
715
716
  
      if (isSimpleValue && (!entries[id] || isSimpleNode)) {
        if (id in root) {
          throw this.error();
        }
        root[id] = value;
      } else {
        if (!root[id]) {
          root[id] = Object.create(null);
        }
        root[id].value = value;
0e9aeacd   root   localization l20n
717
      }
a1a3bc73   Luigi Serra   graphs updates
718
    },
c5169e0e   Renato De Donato   a new hope
719
720
721
722
723
724
725
726
727
728
  
    parseString: function (str) {
      var chunks = str.split(this.patterns.placeables);
      var complexStr = [];
  
      var len = chunks.length;
      var placeablesCount = (len - 1) / 2;
  
      if (placeablesCount >= MAX_PLACEABLES) {
        throw this.error('Too many placeables (' + placeablesCount + ', max allowed is ' + MAX_PLACEABLES + ')');
a1a3bc73   Luigi Serra   graphs updates
729
      }
c5169e0e   Renato De Donato   a new hope
730
731
732
733
734
735
736
737
738
739
  
      for (var i = 0; i < chunks.length; i++) {
        if (chunks[i].length === 0) {
          continue;
        }
        if (i % 2 === 1) {
          complexStr.push({ type: 'idOrVar', name: chunks[i] });
        } else {
          complexStr.push(chunks[i]);
        }
a1a3bc73   Luigi Serra   graphs updates
740
      }
c5169e0e   Renato De Donato   a new hope
741
      return complexStr;
0e9aeacd   root   localization l20n
742
    },
c5169e0e   Renato De Donato   a new hope
743
744
745
746
  
    unescapeString: function (str) {
      if (str.lastIndexOf('\\') !== -1) {
        str = str.replace(this.patterns.controlChars, '$1');
a1a3bc73   Luigi Serra   graphs updates
747
      }
c5169e0e   Renato De Donato   a new hope
748
749
750
      return str.replace(this.patterns.unicode, function (match, token) {
        return String.fromCodePoint(parseInt(token, 16));
      });
0e9aeacd   root   localization l20n
751
    },
c5169e0e   Renato De Donato   a new hope
752
753
754
755
756
  
    parseIndex: function (str) {
      var match = str.match(this.patterns.index);
      if (!match) {
        throw new L10nError('Malformed index');
0e9aeacd   root   localization l20n
757
      }
c5169e0e   Renato De Donato   a new hope
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
      if (match[2]) {
        return [{
          type: 'call',
          expr: {
            type: 'prop',
            expr: {
              type: 'glob',
              name: 'cldr'
            },
            prop: 'plural',
            cmpt: false
          }, args: [{
            type: 'idOrVar',
            name: match[2]
          }]
        }];
      } else {
        return [{ type: 'idOrVar', name: match[1] }];
0e9aeacd   root   localization l20n
776
      }
0e9aeacd   root   localization l20n
777
    },
c5169e0e   Renato De Donato   a new hope
778
779
780
781
782
783
784
  
    error: function (msg) {
      var type = arguments.length <= 1 || arguments[1] === undefined ? 'parsererror' : arguments[1];
  
      var err = new L10nError(msg);
      if (this.emit) {
        this.emit(type, err);
0e9aeacd   root   localization l20n
785
      }
c5169e0e   Renato De Donato   a new hope
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
      return err;
    }
  };
  
  var KNOWN_MACROS = ['plural'];
  var MAX_PLACEABLE_LENGTH = 2500;
  
  var FSI = '⁨';
  var PDI = '⁩';
  
  var resolutionChain = new WeakSet();
  
  function format(ctx, lang, args, entity) {
    if (typeof entity === 'string') {
      return [{}, entity];
    }
  
    if (resolutionChain.has(entity)) {
      throw new L10nError('Cyclic reference detected');
    }
  
    resolutionChain.add(entity);
  
    var rv = undefined;
  
    try {
      rv = resolveValue({}, ctx, lang, args, entity.value, entity.index);
    } finally {
      resolutionChain.delete(entity);
    }
    return rv;
  }
  
  function resolveIdentifier(ctx, lang, args, id) {
    if (KNOWN_MACROS.indexOf(id) > -1) {
      return [{}, ctx._getMacro(lang, id)];
    }
  
    if (args && args.hasOwnProperty(id)) {
      if (typeof args[id] === 'string' || typeof args[id] === 'number' && !isNaN(args[id])) {
        return [{}, args[id]];
      } else {
        throw new L10nError('Arg must be a string or a number: ' + id);
0e9aeacd   root   localization l20n
829
      }
c5169e0e   Renato De Donato   a new hope
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
    }
  
    if (id === '__proto__') {
      throw new L10nError('Illegal id: ' + id);
    }
  
    var entity = ctx._getEntity(lang, id);
  
    if (entity) {
      return format(ctx, lang, args, entity);
    }
  
    throw new L10nError('Unknown reference: ' + id);
  }
  
  function subPlaceable(locals, ctx, lang, args, id) {
    var newLocals = undefined,
        value = undefined;
  
    try {
      var _resolveIdentifier = resolveIdentifier(ctx, lang, args, id);
  
      newLocals = _resolveIdentifier[0];
      value = _resolveIdentifier[1];
    } catch (err) {
      return [{ error: err }, FSI + '{{ ' + id + ' }}' + PDI];
    }
  
    if (typeof value === 'number') {
      var formatter = ctx._getNumberFormatter(lang);
      return [newLocals, formatter.format(value)];
    }
  
    if (typeof value === 'string') {
      if (value.length >= MAX_PLACEABLE_LENGTH) {
        throw new L10nError('Too many characters in placeable (' + value.length + ', max allowed is ' + MAX_PLACEABLE_LENGTH + ')');
0e9aeacd   root   localization l20n
866
      }
c5169e0e   Renato De Donato   a new hope
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
      return [newLocals, FSI + value + PDI];
    }
  
    return [{}, FSI + '{{ ' + id + ' }}' + PDI];
  }
  
  function interpolate(locals, ctx, lang, args, arr) {
    return arr.reduce(function (_ref, cur) {
      var localsSeq = _ref[0];
      var valueSeq = _ref[1];
  
      if (typeof cur === 'string') {
        return [localsSeq, valueSeq + cur];
      } else {
        var _subPlaceable = subPlaceable(locals, ctx, lang, args, cur.name);
  
        var value = _subPlaceable[1];
  
        return [localsSeq, valueSeq + value];
0e9aeacd   root   localization l20n
886
      }
c5169e0e   Renato De Donato   a new hope
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
    }, [locals, '']);
  }
  
  function resolveSelector(ctx, lang, args, expr, index) {
    var selectorName = undefined;
    if (index[0].type === 'call' && index[0].expr.type === 'prop' && index[0].expr.expr.name === 'cldr') {
      selectorName = 'plural';
    } else {
      selectorName = index[0].name;
    }
    var selector = resolveIdentifier(ctx, lang, args, selectorName)[1];
  
    if (typeof selector !== 'function') {
      return selector;
    }
  
    var argValue = index[0].args ? resolveIdentifier(ctx, lang, args, index[0].args[0].name)[1] : undefined;
  
    if (selectorName === 'plural') {
      if (argValue === 0 && 'zero' in expr) {
0e9aeacd   root   localization l20n
907
908
        return 'zero';
      }
c5169e0e   Renato De Donato   a new hope
909
      if (argValue === 1 && 'one' in expr) {
0e9aeacd   root   localization l20n
910
911
        return 'one';
      }
c5169e0e   Renato De Donato   a new hope
912
      if (argValue === 2 && 'two' in expr) {
0e9aeacd   root   localization l20n
913
914
        return 'two';
      }
0e9aeacd   root   localization l20n
915
    }
0e9aeacd   root   localization l20n
916
  
c5169e0e   Renato De Donato   a new hope
917
    return selector(argValue);
0e9aeacd   root   localization l20n
918
919
  }
  
c5169e0e   Renato De Donato   a new hope
920
921
922
  function resolveValue(locals, ctx, lang, args, expr, index) {
    if (!expr) {
      return [locals, expr];
0e9aeacd   root   localization l20n
923
    }
a1a3bc73   Luigi Serra   graphs updates
924
  
c5169e0e   Renato De Donato   a new hope
925
926
    if (typeof expr === 'string' || typeof expr === 'boolean' || typeof expr === 'number') {
      return [locals, expr];
0e9aeacd   root   localization l20n
927
928
    }
  
c5169e0e   Renato De Donato   a new hope
929
930
931
    if (Array.isArray(expr)) {
      return interpolate(locals, ctx, lang, args, expr);
    }
a1a3bc73   Luigi Serra   graphs updates
932
  
c5169e0e   Renato De Donato   a new hope
933
934
935
936
    if (index) {
      var selector = resolveSelector(ctx, lang, args, expr, index);
      if (selector in expr) {
        return resolveValue(locals, ctx, lang, args, expr[selector]);
a1a3bc73   Luigi Serra   graphs updates
937
      }
c5169e0e   Renato De Donato   a new hope
938
    }
a1a3bc73   Luigi Serra   graphs updates
939
  
c5169e0e   Renato De Donato   a new hope
940
941
942
943
    var defaultKey = expr.__default || 'other';
    if (defaultKey in expr) {
      return resolveValue(locals, ctx, lang, args, expr[defaultKey]);
    }
a1a3bc73   Luigi Serra   graphs updates
944
  
c5169e0e   Renato De Donato   a new hope
945
946
    throw new L10nError('Unresolvable value');
  }
a1a3bc73   Luigi Serra   graphs updates
947
  
c5169e0e   Renato De Donato   a new hope
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
  var locales2rules = {
    'af': 3,
    'ak': 4,
    'am': 4,
    'ar': 1,
    'asa': 3,
    'az': 0,
    'be': 11,
    'bem': 3,
    'bez': 3,
    'bg': 3,
    'bh': 4,
    'bm': 0,
    'bn': 3,
    'bo': 0,
    'br': 20,
    'brx': 3,
    'bs': 11,
    'ca': 3,
    'cgg': 3,
    'chr': 3,
    'cs': 12,
    'cy': 17,
    'da': 3,
    'de': 3,
    'dv': 3,
    'dz': 0,
    'ee': 3,
    'el': 3,
    'en': 3,
    'eo': 3,
    'es': 3,
    'et': 3,
    'eu': 3,
    'fa': 0,
    'ff': 5,
    'fi': 3,
    'fil': 4,
    'fo': 3,
    'fr': 5,
    'fur': 3,
    'fy': 3,
    'ga': 8,
    'gd': 24,
    'gl': 3,
    'gsw': 3,
    'gu': 3,
    'guw': 4,
    'gv': 23,
    'ha': 3,
    'haw': 3,
    'he': 2,
    'hi': 4,
    'hr': 11,
    'hu': 0,
    'id': 0,
    'ig': 0,
    'ii': 0,
    'is': 3,
    'it': 3,
    'iu': 7,
    'ja': 0,
    'jmc': 3,
    'jv': 0,
    'ka': 0,
    'kab': 5,
    'kaj': 3,
    'kcg': 3,
    'kde': 0,
    'kea': 0,
    'kk': 3,
    'kl': 3,
    'km': 0,
    'kn': 0,
    'ko': 0,
    'ksb': 3,
    'ksh': 21,
    'ku': 3,
    'kw': 7,
    'lag': 18,
    'lb': 3,
    'lg': 3,
    'ln': 4,
    'lo': 0,
    'lt': 10,
    'lv': 6,
    'mas': 3,
    'mg': 4,
    'mk': 16,
    'ml': 3,
    'mn': 3,
    'mo': 9,
    'mr': 3,
    'ms': 0,
    'mt': 15,
    'my': 0,
    'nah': 3,
    'naq': 7,
    'nb': 3,
    'nd': 3,
    'ne': 3,
    'nl': 3,
    'nn': 3,
    'no': 3,
    'nr': 3,
    'nso': 4,
    'ny': 3,
    'nyn': 3,
    'om': 3,
    'or': 3,
    'pa': 3,
    'pap': 3,
    'pl': 13,
    'ps': 3,
    'pt': 3,
    'rm': 3,
    'ro': 9,
    'rof': 3,
    'ru': 11,
    'rwk': 3,
    'sah': 0,
    'saq': 3,
    'se': 7,
    'seh': 3,
    'ses': 0,
    'sg': 0,
    'sh': 11,
    'shi': 19,
    'sk': 12,
    'sl': 14,
    'sma': 7,
    'smi': 7,
    'smj': 7,
    'smn': 7,
    'sms': 7,
    'sn': 3,
    'so': 3,
    'sq': 3,
    'sr': 11,
    'ss': 3,
    'ssy': 3,
    'st': 3,
    'sv': 3,
    'sw': 3,
    'syr': 3,
    'ta': 3,
    'te': 3,
    'teo': 3,
    'th': 0,
    'ti': 4,
    'tig': 3,
    'tk': 3,
    'tl': 4,
    'tn': 3,
    'to': 0,
    'tr': 0,
    'ts': 3,
    'tzm': 22,
    'uk': 11,
    'ur': 3,
    've': 3,
    'vi': 0,
    'vun': 3,
    'wa': 4,
    'wae': 3,
    'wo': 0,
    'xh': 3,
    'xog': 3,
    'yo': 0,
    'zh': 0,
    'zu': 3
  };
0e9aeacd   root   localization l20n
1120
  
c5169e0e   Renato De Donato   a new hope
1121
1122
1123
1124
1125
1126
  function isIn(n, list) {
    return list.indexOf(n) !== -1;
  }
  function isBetween(n, start, end) {
    return typeof n === typeof start && start <= n && n <= end;
  }
0e9aeacd   root   localization l20n
1127
  
c5169e0e   Renato De Donato   a new hope
1128
1129
1130
1131
1132
1133
1134
  var pluralRules = {
    '0': function () {
      return 'other';
    },
    '1': function (n) {
      if (isBetween(n % 100, 3, 10)) {
        return 'few';
0e9aeacd   root   localization l20n
1135
      }
c5169e0e   Renato De Donato   a new hope
1136
1137
      if (n === 0) {
        return 'zero';
0e9aeacd   root   localization l20n
1138
      }
c5169e0e   Renato De Donato   a new hope
1139
1140
      if (isBetween(n % 100, 11, 99)) {
        return 'many';
0e9aeacd   root   localization l20n
1141
      }
c5169e0e   Renato De Donato   a new hope
1142
1143
      if (n === 2) {
        return 'two';
0e9aeacd   root   localization l20n
1144
      }
c5169e0e   Renato De Donato   a new hope
1145
1146
      if (n === 1) {
        return 'one';
0e9aeacd   root   localization l20n
1147
      }
c5169e0e   Renato De Donato   a new hope
1148
1149
1150
1151
1152
      return 'other';
    },
    '2': function (n) {
      if (n !== 0 && n % 10 === 0) {
        return 'many';
0e9aeacd   root   localization l20n
1153
      }
c5169e0e   Renato De Donato   a new hope
1154
1155
      if (n === 2) {
        return 'two';
0e9aeacd   root   localization l20n
1156
      }
c5169e0e   Renato De Donato   a new hope
1157
1158
      if (n === 1) {
        return 'one';
0e9aeacd   root   localization l20n
1159
      }
c5169e0e   Renato De Donato   a new hope
1160
1161
1162
1163
1164
      return 'other';
    },
    '3': function (n) {
      if (n === 1) {
        return 'one';
0e9aeacd   root   localization l20n
1165
      }
c5169e0e   Renato De Donato   a new hope
1166
1167
1168
1169
1170
      return 'other';
    },
    '4': function (n) {
      if (isBetween(n, 0, 1)) {
        return 'one';
0e9aeacd   root   localization l20n
1171
      }
c5169e0e   Renato De Donato   a new hope
1172
      return 'other';
0e9aeacd   root   localization l20n
1173
    },
c5169e0e   Renato De Donato   a new hope
1174
1175
1176
    '5': function (n) {
      if (isBetween(n, 0, 2) && n !== 2) {
        return 'one';
0e9aeacd   root   localization l20n
1177
      }
c5169e0e   Renato De Donato   a new hope
1178
1179
1180
1181
1182
      return 'other';
    },
    '6': function (n) {
      if (n === 0) {
        return 'zero';
0e9aeacd   root   localization l20n
1183
      }
c5169e0e   Renato De Donato   a new hope
1184
1185
      if (n % 10 === 1 && n % 100 !== 11) {
        return 'one';
0e9aeacd   root   localization l20n
1186
      }
c5169e0e   Renato De Donato   a new hope
1187
      return 'other';
0e9aeacd   root   localization l20n
1188
    },
c5169e0e   Renato De Donato   a new hope
1189
1190
1191
    '7': function (n) {
      if (n === 2) {
        return 'two';
0e9aeacd   root   localization l20n
1192
      }
c5169e0e   Renato De Donato   a new hope
1193
1194
      if (n === 1) {
        return 'one';
0e9aeacd   root   localization l20n
1195
      }
c5169e0e   Renato De Donato   a new hope
1196
      return 'other';
0e9aeacd   root   localization l20n
1197
    },
c5169e0e   Renato De Donato   a new hope
1198
1199
1200
1201
1202
1203
1204
1205
1206
    '8': function (n) {
      if (isBetween(n, 3, 6)) {
        return 'few';
      }
      if (isBetween(n, 7, 10)) {
        return 'many';
      }
      if (n === 2) {
        return 'two';
0e9aeacd   root   localization l20n
1207
      }
c5169e0e   Renato De Donato   a new hope
1208
1209
      if (n === 1) {
        return 'one';
0e9aeacd   root   localization l20n
1210
      }
c5169e0e   Renato De Donato   a new hope
1211
1212
1213
1214
1215
      return 'other';
    },
    '9': function (n) {
      if (n === 0 || n !== 1 && isBetween(n % 100, 1, 19)) {
        return 'few';
0e9aeacd   root   localization l20n
1216
      }
c5169e0e   Renato De Donato   a new hope
1217
1218
      if (n === 1) {
        return 'one';
0e9aeacd   root   localization l20n
1219
      }
c5169e0e   Renato De Donato   a new hope
1220
      return 'other';
0e9aeacd   root   localization l20n
1221
    },
c5169e0e   Renato De Donato   a new hope
1222
1223
1224
    '10': function (n) {
      if (isBetween(n % 10, 2, 9) && !isBetween(n % 100, 11, 19)) {
        return 'few';
0e9aeacd   root   localization l20n
1225
      }
c5169e0e   Renato De Donato   a new hope
1226
1227
      if (n % 10 === 1 && !isBetween(n % 100, 11, 19)) {
        return 'one';
0e9aeacd   root   localization l20n
1228
      }
c5169e0e   Renato De Donato   a new hope
1229
      return 'other';
0e9aeacd   root   localization l20n
1230
    },
c5169e0e   Renato De Donato   a new hope
1231
1232
1233
    '11': function (n) {
      if (isBetween(n % 10, 2, 4) && !isBetween(n % 100, 12, 14)) {
        return 'few';
0e9aeacd   root   localization l20n
1234
      }
c5169e0e   Renato De Donato   a new hope
1235
1236
1237
1238
1239
1240
1241
      if (n % 10 === 0 || isBetween(n % 10, 5, 9) || isBetween(n % 100, 11, 14)) {
        return 'many';
      }
      if (n % 10 === 1 && n % 100 !== 11) {
        return 'one';
      }
      return 'other';
0e9aeacd   root   localization l20n
1242
    },
c5169e0e   Renato De Donato   a new hope
1243
1244
1245
    '12': function (n) {
      if (isBetween(n, 2, 4)) {
        return 'few';
0e9aeacd   root   localization l20n
1246
      }
c5169e0e   Renato De Donato   a new hope
1247
1248
      if (n === 1) {
        return 'one';
0e9aeacd   root   localization l20n
1249
      }
c5169e0e   Renato De Donato   a new hope
1250
      return 'other';
a1a3bc73   Luigi Serra   graphs updates
1251
    },
c5169e0e   Renato De Donato   a new hope
1252
1253
1254
    '13': function (n) {
      if (isBetween(n % 10, 2, 4) && !isBetween(n % 100, 12, 14)) {
        return 'few';
0e9aeacd   root   localization l20n
1255
      }
c5169e0e   Renato De Donato   a new hope
1256
1257
1258
1259
1260
1261
1262
      if (n !== 1 && isBetween(n % 10, 0, 1) || isBetween(n % 10, 5, 9) || isBetween(n % 100, 12, 14)) {
        return 'many';
      }
      if (n === 1) {
        return 'one';
      }
      return 'other';
0e9aeacd   root   localization l20n
1263
    },
c5169e0e   Renato De Donato   a new hope
1264
1265
1266
    '14': function (n) {
      if (isBetween(n % 100, 3, 4)) {
        return 'few';
0e9aeacd   root   localization l20n
1267
      }
c5169e0e   Renato De Donato   a new hope
1268
1269
1270
1271
1272
1273
1274
      if (n % 100 === 2) {
        return 'two';
      }
      if (n % 100 === 1) {
        return 'one';
      }
      return 'other';
0e9aeacd   root   localization l20n
1275
    },
c5169e0e   Renato De Donato   a new hope
1276
1277
1278
    '15': function (n) {
      if (n === 0 || isBetween(n % 100, 2, 10)) {
        return 'few';
0e9aeacd   root   localization l20n
1279
      }
c5169e0e   Renato De Donato   a new hope
1280
1281
      if (isBetween(n % 100, 11, 19)) {
        return 'many';
0e9aeacd   root   localization l20n
1282
      }
c5169e0e   Renato De Donato   a new hope
1283
1284
1285
1286
      if (n === 1) {
        return 'one';
      }
      return 'other';
a1a3bc73   Luigi Serra   graphs updates
1287
    },
c5169e0e   Renato De Donato   a new hope
1288
1289
1290
    '16': function (n) {
      if (n % 10 === 1 && n !== 11) {
        return 'one';
0e9aeacd   root   localization l20n
1291
      }
c5169e0e   Renato De Donato   a new hope
1292
1293
1294
1295
1296
      return 'other';
    },
    '17': function (n) {
      if (n === 3) {
        return 'few';
0e9aeacd   root   localization l20n
1297
      }
c5169e0e   Renato De Donato   a new hope
1298
1299
      if (n === 0) {
        return 'zero';
a1a3bc73   Luigi Serra   graphs updates
1300
      }
c5169e0e   Renato De Donato   a new hope
1301
1302
1303
1304
1305
      if (n === 6) {
        return 'many';
      }
      if (n === 2) {
        return 'two';
0e9aeacd   root   localization l20n
1306
      }
c5169e0e   Renato De Donato   a new hope
1307
1308
1309
1310
      if (n === 1) {
        return 'one';
      }
      return 'other';
0e9aeacd   root   localization l20n
1311
    },
c5169e0e   Renato De Donato   a new hope
1312
1313
1314
    '18': function (n) {
      if (n === 0) {
        return 'zero';
0e9aeacd   root   localization l20n
1315
      }
c5169e0e   Renato De Donato   a new hope
1316
1317
      if (isBetween(n, 0, 2) && n !== 0 && n !== 2) {
        return 'one';
0e9aeacd   root   localization l20n
1318
      }
c5169e0e   Renato De Donato   a new hope
1319
      return 'other';
0e9aeacd   root   localization l20n
1320
    },
c5169e0e   Renato De Donato   a new hope
1321
1322
1323
    '19': function (n) {
      if (isBetween(n, 2, 10)) {
        return 'few';
0e9aeacd   root   localization l20n
1324
      }
c5169e0e   Renato De Donato   a new hope
1325
1326
      if (isBetween(n, 0, 1)) {
        return 'one';
0e9aeacd   root   localization l20n
1327
      }
c5169e0e   Renato De Donato   a new hope
1328
      return 'other';
0e9aeacd   root   localization l20n
1329
    },
c5169e0e   Renato De Donato   a new hope
1330
1331
1332
    '20': function (n) {
      if ((isBetween(n % 10, 3, 4) || n % 10 === 9) && !(isBetween(n % 100, 10, 19) || isBetween(n % 100, 70, 79) || isBetween(n % 100, 90, 99))) {
        return 'few';
0e9aeacd   root   localization l20n
1333
      }
c5169e0e   Renato De Donato   a new hope
1334
1335
      if (n % 1000000 === 0 && n !== 0) {
        return 'many';
0e9aeacd   root   localization l20n
1336
      }
c5169e0e   Renato De Donato   a new hope
1337
1338
      if (n % 10 === 2 && !isIn(n % 100, [12, 72, 92])) {
        return 'two';
0e9aeacd   root   localization l20n
1339
      }
c5169e0e   Renato De Donato   a new hope
1340
1341
1342
1343
      if (n % 10 === 1 && !isIn(n % 100, [11, 71, 91])) {
        return 'one';
      }
      return 'other';
0e9aeacd   root   localization l20n
1344
    },
c5169e0e   Renato De Donato   a new hope
1345
1346
1347
    '21': function (n) {
      if (n === 0) {
        return 'zero';
0e9aeacd   root   localization l20n
1348
      }
c5169e0e   Renato De Donato   a new hope
1349
1350
      if (n === 1) {
        return 'one';
0e9aeacd   root   localization l20n
1351
      }
c5169e0e   Renato De Donato   a new hope
1352
1353
1354
1355
1356
      return 'other';
    },
    '22': function (n) {
      if (isBetween(n, 0, 1) || isBetween(n, 11, 99)) {
        return 'one';
0e9aeacd   root   localization l20n
1357
      }
c5169e0e   Renato De Donato   a new hope
1358
      return 'other';
a1a3bc73   Luigi Serra   graphs updates
1359
    },
c5169e0e   Renato De Donato   a new hope
1360
1361
1362
    '23': function (n) {
      if (isBetween(n % 10, 1, 2) || n % 20 === 0) {
        return 'one';
0e9aeacd   root   localization l20n
1363
      }
c5169e0e   Renato De Donato   a new hope
1364
      return 'other';
a1a3bc73   Luigi Serra   graphs updates
1365
    },
c5169e0e   Renato De Donato   a new hope
1366
1367
1368
    '24': function (n) {
      if (isBetween(n, 3, 10) || isBetween(n, 13, 19)) {
        return 'few';
a1a3bc73   Luigi Serra   graphs updates
1369
      }
c5169e0e   Renato De Donato   a new hope
1370
1371
      if (isIn(n, [2, 12])) {
        return 'two';
a1a3bc73   Luigi Serra   graphs updates
1372
      }
c5169e0e   Renato De Donato   a new hope
1373
1374
      if (isIn(n, [1, 11])) {
        return 'one';
a1a3bc73   Luigi Serra   graphs updates
1375
      }
c5169e0e   Renato De Donato   a new hope
1376
1377
1378
      return 'other';
    }
  };
0e9aeacd   root   localization l20n
1379
  
c5169e0e   Renato De Donato   a new hope
1380
1381
1382
1383
1384
1385
1386
1387
1388
  function getPluralRule(code) {
    var index = locales2rules[code.replace(/-.*$/, '')];
    if (!(index in pluralRules)) {
      return function () {
        return 'other';
      };
    }
    return pluralRules[index];
  }
0e9aeacd   root   localization l20n
1389
  
c5169e0e   Renato De Donato   a new hope
1390
1391
1392
  var Context = (function () {
    function Context(env) {
      _classCallCheck(this, Context);
0e9aeacd   root   localization l20n
1393
  
c5169e0e   Renato De Donato   a new hope
1394
1395
1396
      this._env = env;
      this._numberFormatters = null;
    }
0e9aeacd   root   localization l20n
1397
  
c5169e0e   Renato De Donato   a new hope
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
    Context.prototype._formatTuple = function _formatTuple(lang, args, entity, id, key) {
      try {
        return format(this, lang, args, entity);
      } catch (err) {
        err.id = key ? id + '::' + key : id;
        err.lang = lang;
        this._env.emit('resolveerror', err, this);
        return [{ error: err }, err.id];
      }
    };
0e9aeacd   root   localization l20n
1408
  
c5169e0e   Renato De Donato   a new hope
1409
1410
    Context.prototype._formatEntity = function _formatEntity(lang, args, entity, id) {
      var _formatTuple2 = this._formatTuple(lang, args, entity, id);
a1a3bc73   Luigi Serra   graphs updates
1411
  
c5169e0e   Renato De Donato   a new hope
1412
      var value = _formatTuple2[1];
0e9aeacd   root   localization l20n
1413
  
c5169e0e   Renato De Donato   a new hope
1414
1415
1416
1417
1418
1419
1420
1421
1422
      var formatted = {
        value: value,
        attrs: null
      };
  
      if (entity.attrs) {
        formatted.attrs = Object.create(null);
        for (var key in entity.attrs) {
          var _formatTuple3 = this._formatTuple(lang, args, entity.attrs[key], id, key);
0e9aeacd   root   localization l20n
1423
  
c5169e0e   Renato De Donato   a new hope
1424
          var attrValue = _formatTuple3[1];
a1a3bc73   Luigi Serra   graphs updates
1425
  
c5169e0e   Renato De Donato   a new hope
1426
          formatted.attrs[key] = attrValue;
0e9aeacd   root   localization l20n
1427
1428
1429
        }
      }
  
c5169e0e   Renato De Donato   a new hope
1430
1431
      return formatted;
    };
0e9aeacd   root   localization l20n
1432
  
c5169e0e   Renato De Donato   a new hope
1433
1434
1435
    Context.prototype._formatValue = function _formatValue(lang, args, entity, id) {
      return this._formatTuple(lang, args, entity, id)[1];
    };
0e9aeacd   root   localization l20n
1436
  
c5169e0e   Renato De Donato   a new hope
1437
1438
1439
    Context.prototype.fetch = function fetch(langs) {
      if (langs.length === 0) {
        return Promise.resolve(langs);
0e9aeacd   root   localization l20n
1440
1441
      }
  
c5169e0e   Renato De Donato   a new hope
1442
      var resIds = Array.from(this._env._resLists.get(this));
0e9aeacd   root   localization l20n
1443
  
c5169e0e   Renato De Donato   a new hope
1444
1445
1446
1447
      return Promise.all(resIds.map(this._env._getResource.bind(this._env, langs[0]))).then(function () {
        return langs;
      });
    };
0e9aeacd   root   localization l20n
1448
  
c5169e0e   Renato De Donato   a new hope
1449
1450
    Context.prototype._resolve = function _resolve(langs, keys, formatter, prevResolved) {
      var _this = this;
0e9aeacd   root   localization l20n
1451
  
c5169e0e   Renato De Donato   a new hope
1452
      var lang = langs[0];
0e9aeacd   root   localization l20n
1453
  
c5169e0e   Renato De Donato   a new hope
1454
1455
1456
      if (!lang) {
        return reportMissing.call(this, keys, formatter, prevResolved);
      }
0e9aeacd   root   localization l20n
1457
  
c5169e0e   Renato De Donato   a new hope
1458
      var hasUnresolved = false;
0e9aeacd   root   localization l20n
1459
  
c5169e0e   Renato De Donato   a new hope
1460
1461
1462
      var resolved = keys.map(function (key, i) {
        if (prevResolved && prevResolved[i] !== undefined) {
          return prevResolved[i];
a1a3bc73   Luigi Serra   graphs updates
1463
        }
0e9aeacd   root   localization l20n
1464
  
c5169e0e   Renato De Donato   a new hope
1465
        var _ref2 = Array.isArray(key) ? key : [key, undefined];
0e9aeacd   root   localization l20n
1466
  
c5169e0e   Renato De Donato   a new hope
1467
1468
        var id = _ref2[0];
        var args = _ref2[1];
0e9aeacd   root   localization l20n
1469
  
c5169e0e   Renato De Donato   a new hope
1470
1471
1472
1473
        var entity = _this._getEntity(lang, id);
  
        if (entity) {
          return formatter.call(_this, lang, args, entity, id);
0e9aeacd   root   localization l20n
1474
        }
0e9aeacd   root   localization l20n
1475
  
c5169e0e   Renato De Donato   a new hope
1476
1477
1478
        _this._env.emit('notfounderror', new L10nError('"' + id + '"' + ' not found in ' + lang.code, id, lang), _this);
        hasUnresolved = true;
      });
0e9aeacd   root   localization l20n
1479
  
c5169e0e   Renato De Donato   a new hope
1480
1481
1482
      if (!hasUnresolved) {
        return resolved;
      }
0e9aeacd   root   localization l20n
1483
  
c5169e0e   Renato De Donato   a new hope
1484
1485
1486
1487
      return this.fetch(langs.slice(1)).then(function (nextLangs) {
        return _this._resolve(nextLangs, keys, formatter, resolved);
      });
    };
0e9aeacd   root   localization l20n
1488
  
c5169e0e   Renato De Donato   a new hope
1489
1490
    Context.prototype.resolveEntities = function resolveEntities(langs, keys) {
      var _this2 = this;
0e9aeacd   root   localization l20n
1491
  
c5169e0e   Renato De Donato   a new hope
1492
1493
1494
1495
      return this.fetch(langs).then(function (langs) {
        return _this2._resolve(langs, keys, _this2._formatEntity);
      });
    };
0e9aeacd   root   localization l20n
1496
  
c5169e0e   Renato De Donato   a new hope
1497
1498
    Context.prototype.resolveValues = function resolveValues(langs, keys) {
      var _this3 = this;
0e9aeacd   root   localization l20n
1499
  
c5169e0e   Renato De Donato   a new hope
1500
1501
1502
1503
      return this.fetch(langs).then(function (langs) {
        return _this3._resolve(langs, keys, _this3._formatValue);
      });
    };
0e9aeacd   root   localization l20n
1504
  
c5169e0e   Renato De Donato   a new hope
1505
1506
1507
    Context.prototype._getEntity = function _getEntity(lang, id) {
      var cache = this._env._resCache;
      var resIds = Array.from(this._env._resLists.get(this));
0e9aeacd   root   localization l20n
1508
  
c5169e0e   Renato De Donato   a new hope
1509
1510
1511
1512
1513
1514
1515
      for (var i = 0, resId = undefined; resId = resIds[i]; i++) {
        var resource = cache.get(resId + lang.code + lang.src);
        if (resource instanceof L10nError) {
          continue;
        }
        if (id in resource) {
          return resource[id];
0e9aeacd   root   localization l20n
1516
1517
        }
      }
c5169e0e   Renato De Donato   a new hope
1518
1519
      return undefined;
    };
0e9aeacd   root   localization l20n
1520
  
c5169e0e   Renato De Donato   a new hope
1521
1522
1523
    Context.prototype._getNumberFormatter = function _getNumberFormatter(lang) {
      if (!this._numberFormatters) {
        this._numberFormatters = new Map();
a1a3bc73   Luigi Serra   graphs updates
1524
      }
c5169e0e   Renato De Donato   a new hope
1525
1526
1527
1528
1529
1530
      if (!this._numberFormatters.has(lang)) {
        var formatter = Intl.NumberFormat(lang, {
          useGrouping: false
        });
        this._numberFormatters.set(lang, formatter);
        return formatter;
0e9aeacd   root   localization l20n
1531
      }
c5169e0e   Renato De Donato   a new hope
1532
1533
      return this._numberFormatters.get(lang);
    };
0e9aeacd   root   localization l20n
1534
  
c5169e0e   Renato De Donato   a new hope
1535
1536
1537
1538
1539
1540
1541
1542
    Context.prototype._getMacro = function _getMacro(lang, id) {
      switch (id) {
        case 'plural':
          return getPluralRule(lang.code);
        default:
          return undefined;
      }
    };
0e9aeacd   root   localization l20n
1543
  
c5169e0e   Renato De Donato   a new hope
1544
1545
    return Context;
  })();
0e9aeacd   root   localization l20n
1546
  
c5169e0e   Renato De Donato   a new hope
1547
1548
  function reportMissing(keys, formatter, resolved) {
    var _this4 = this;
0e9aeacd   root   localization l20n
1549
  
c5169e0e   Renato De Donato   a new hope
1550
    var missingIds = new Set();
0e9aeacd   root   localization l20n
1551
  
c5169e0e   Renato De Donato   a new hope
1552
1553
1554
    keys.forEach(function (key, i) {
      if (resolved && resolved[i] !== undefined) {
        return;
a1a3bc73   Luigi Serra   graphs updates
1555
      }
c5169e0e   Renato De Donato   a new hope
1556
1557
1558
1559
1560
1561
1562
1563
1564
      var id = Array.isArray(key) ? key[0] : key;
      missingIds.add(id);
      resolved[i] = formatter === _this4._formatValue ? id : { value: id, attrs: null };
    });
  
    this._env.emit('notfounderror', new L10nError('"' + Array.from(missingIds).join(', ') + '"' + ' not found in any language', missingIds), this);
  
    return resolved;
  }
0e9aeacd   root   localization l20n
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
  
  function walkEntry(entry, fn) {
    if (typeof entry === 'string') {
      return fn(entry);
    }
  
    var newEntry = Object.create(null);
  
    if (entry.value) {
      newEntry.value = walkValue(entry.value, fn);
    }
  
    if (entry.index) {
      newEntry.index = entry.index;
    }
  
    if (entry.attrs) {
      newEntry.attrs = Object.create(null);
      for (var key in entry.attrs) {
        newEntry.attrs[key] = walkEntry(entry.attrs[key], fn);
      }
    }
  
    return newEntry;
  }
  
  function walkValue(value, fn) {
    if (typeof value === 'string') {
      return fn(value);
    }
  
    if (value.type) {
      return value;
    }
  
    var newValue = Array.isArray(value) ? [] : Object.create(null);
    var keys = Object.keys(value);
  
    for (var i = 0, key = undefined; key = keys[i]; i++) {
      newValue[key] = walkValue(value[key], fn);
    }
  
    return newValue;
  }
  
  function createGetter(id, name) {
    var _pseudo = null;
  
    return function getPseudo() {
      if (_pseudo) {
        return _pseudo;
      }
  
      var reAlphas = /[a-zA-Z]/g;
      var reVowels = /[aeiouAEIOU]/g;
      var reWords = /[^\W0-9_]+/g;
  
      var reExcluded = /(%[EO]?\w|\{\s*.+?\s*\}|&[#\w]+;|<\s*.+?\s*>)/;
  
      var charMaps = {
        'fr-x-psaccent': 'ȦƁƇḒḖƑƓĦĪĴĶĿḾȠǾƤɊŘŞŦŬṼẆẊẎẐ[\\]^_`ȧƀƈḓḗƒɠħīĵķŀḿƞǿƥɋřşŧŭṽẇẋẏẑ',
        'ar-x-psbidi': '∀ԐↃpƎɟפHIſӼ˥WNOԀÒᴚS⊥∩ɅMXʎZ[\\]ᵥ_,ɐqɔpǝɟƃɥıɾʞʅɯuodbɹsʇnʌʍxʎz'
      };
  
      var mods = {
        'fr-x-psaccent': function (val) {
          return val.replace(reVowels, function (match) {
            return match + match.toLowerCase();
          });
        },
  
        'ar-x-psbidi': function (val) {
          return val.replace(reWords, function (match) {
            return '‮' + match + '‬';
          });
        }
      };
  
      var replaceChars = function (map, val) {
        return val.replace(reAlphas, function (match) {
          return map.charAt(match.charCodeAt(0) - 65);
        });
      };
  
      var transform = function (val) {
        return replaceChars(charMaps[id], mods[id](val));
      };
  
      var apply = function (fn, val) {
        if (!val) {
          return val;
        }
  
        var parts = val.split(reExcluded);
        var modified = parts.map(function (part) {
          if (reExcluded.test(part)) {
            return part;
          }
          return fn(part);
        });
        return modified.join('');
      };
  
      return _pseudo = {
        name: transform(name),
        process: function (str) {
          return apply(transform, str);
        }
      };
    };
  }
  
  var pseudo = Object.defineProperties(Object.create(null), {
    'fr-x-psaccent': {
      enumerable: true,
      get: createGetter('fr-x-psaccent', 'Runtime Accented')
    },
    'ar-x-psbidi': {
      enumerable: true,
      get: createGetter('ar-x-psbidi', 'Runtime Bidi')
    }
  });
  
  function emit(listeners) {
c5169e0e   Renato De Donato   a new hope
1689
    var _this5 = this;
0e9aeacd   root   localization l20n
1690
  
c5169e0e   Renato De Donato   a new hope
1691
1692
    for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
      args[_key - 1] = arguments[_key];
0e9aeacd   root   localization l20n
1693
1694
1695
1696
1697
1698
    }
  
    var type = args.shift();
  
    if (listeners['*']) {
      listeners['*'].slice().forEach(function (listener) {
c5169e0e   Renato De Donato   a new hope
1699
        return listener.apply(_this5, args);
0e9aeacd   root   localization l20n
1700
1701
1702
1703
1704
      });
    }
  
    if (listeners[type]) {
      listeners[type].slice().forEach(function (listener) {
c5169e0e   Renato De Donato   a new hope
1705
        return listener.apply(_this5, args);
0e9aeacd   root   localization l20n
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
      });
    }
  }
  
  function addEventListener(listeners, type, listener) {
    if (!(type in listeners)) {
      listeners[type] = [];
    }
    listeners[type].push(listener);
  }
  
  function removeEventListener(listeners, type, listener) {
    var typeListeners = listeners[type];
    var pos = typeListeners.indexOf(listener);
    if (pos === -1) {
      return;
    }
  
    typeListeners.splice(pos, 1);
  }
  
c5169e0e   Renato De Donato   a new hope
1727
1728
1729
1730
1731
  var parsers = {
    properties: PropertiesParser,
    l20n: L20nParser
  };
  
0e9aeacd   root   localization l20n
1732
  var Env$1 = (function () {
c5169e0e   Renato De Donato   a new hope
1733
    function Env$1(defaultLang, fetchResource) {
0e9aeacd   root   localization l20n
1734
1735
      _classCallCheck(this, Env$1);
  
c5169e0e   Renato De Donato   a new hope
1736
      this.defaultLang = defaultLang;
0e9aeacd   root   localization l20n
1737
1738
      this.fetchResource = fetchResource;
  
c5169e0e   Renato De Donato   a new hope
1739
1740
      this._resLists = new Map();
      this._resCache = new Map();
0e9aeacd   root   localization l20n
1741
1742
1743
1744
1745
1746
1747
  
      var listeners = {};
      this.emit = emit.bind(this, listeners);
      this.addEventListener = addEventListener.bind(this, listeners);
      this.removeEventListener = removeEventListener.bind(this, listeners);
    }
  
c5169e0e   Renato De Donato   a new hope
1748
1749
1750
    Env$1.prototype.createContext = function createContext(resIds) {
      var ctx = new Context(this);
      this._resLists.set(ctx, new Set(resIds));
0e9aeacd   root   localization l20n
1751
1752
1753
1754
      return ctx;
    };
  
    Env$1.prototype.destroyContext = function destroyContext(ctx) {
c5169e0e   Renato De Donato   a new hope
1755
      var _this6 = this;
0e9aeacd   root   localization l20n
1756
  
c5169e0e   Renato De Donato   a new hope
1757
1758
      var lists = this._resLists;
      var resList = lists.get(ctx);
0e9aeacd   root   localization l20n
1759
  
c5169e0e   Renato De Donato   a new hope
1760
1761
1762
      lists.delete(ctx);
      resList.forEach(function (resId) {
        return deleteIfOrphan(_this6._resCache, lists, resId);
0e9aeacd   root   localization l20n
1763
1764
1765
1766
      });
    };
  
    Env$1.prototype._parse = function _parse(syntax, lang, data) {
c5169e0e   Renato De Donato   a new hope
1767
      var _this7 = this;
0e9aeacd   root   localization l20n
1768
  
c5169e0e   Renato De Donato   a new hope
1769
      var parser = parsers[syntax];
0e9aeacd   root   localization l20n
1770
1771
1772
1773
1774
      if (!parser) {
        return data;
      }
  
      var emit = function (type, err) {
c5169e0e   Renato De Donato   a new hope
1775
        return _this7.emit(type, amendError(lang, err));
0e9aeacd   root   localization l20n
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
      };
      return parser.parse.call(parser, emit, data);
    };
  
    Env$1.prototype._create = function _create(lang, entries) {
      if (lang.src !== 'pseudo') {
        return entries;
      }
  
      var pseudoentries = Object.create(null);
      for (var key in entries) {
        pseudoentries[key] = walkEntry(entries[key], pseudo[lang.code].process);
      }
      return pseudoentries;
    };
  
    Env$1.prototype._getResource = function _getResource(lang, res) {
c5169e0e   Renato De Donato   a new hope
1793
      var _this8 = this;
0e9aeacd   root   localization l20n
1794
  
c5169e0e   Renato De Donato   a new hope
1795
      var cache = this._resCache;
0e9aeacd   root   localization l20n
1796
1797
1798
1799
1800
1801
1802
1803
1804
      var id = res + lang.code + lang.src;
  
      if (cache.has(id)) {
        return cache.get(id);
      }
  
      var syntax = res.substr(res.lastIndexOf('.') + 1);
  
      var saveEntries = function (data) {
c5169e0e   Renato De Donato   a new hope
1805
1806
        var entries = _this8._parse(syntax, lang, data);
        cache.set(id, _this8._create(lang, entries));
0e9aeacd   root   localization l20n
1807
1808
1809
1810
      };
  
      var recover = function (err) {
        err.lang = lang;
c5169e0e   Renato De Donato   a new hope
1811
        _this8.emit('fetcherror', err);
0e9aeacd   root   localization l20n
1812
1813
1814
        cache.set(id, err);
      };
  
c5169e0e   Renato De Donato   a new hope
1815
      var langToFetch = lang.src === 'pseudo' ? { code: this.defaultLang, src: 'app' } : lang;
0e9aeacd   root   localization l20n
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
  
      var resource = this.fetchResource(res, langToFetch).then(saveEntries, recover);
  
      cache.set(id, resource);
  
      return resource;
    };
  
    return Env$1;
  })();
  
c5169e0e   Renato De Donato   a new hope
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
  function deleteIfOrphan(cache, lists, resId) {
    var isNeeded = Array.from(lists).some(function (_ref3) {
      var ctx = _ref3[0];
      var resIds = _ref3[1];
      return resIds.has(resId);
    });
  
    if (!isNeeded) {
      cache.forEach(function (val, key) {
        return key.startsWith(resId) ? cache.delete(key) : null;
      });
    }
  }
  
0e9aeacd   root   localization l20n
1841
1842
1843
1844
1845
1846
1847
  function amendError(lang, err) {
    err.lang = lang;
    return err;
  }
  
  exports.fetchResource = fetchResource$1;
  exports.Env = Env$1;