/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/test/mjsunit/string-oom-concat.js
13 строк
302 B
Fedor Indutny
deps: update v8 to 3.29.93.1
10 окт 2014, 14:49
10 окт 2014, 14:49
6bcea4f
Код
Авторство
О чём код?
// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. function concat() { var a = " "; for (var i = 0; i < 100; i++) { a += a; } return a; } assertThrows(concat, RangeError);