blob: fc9c4a389f7f1d7c844928166d0382d0dbe51467 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
---
title: InternalError
slug: Web/JavaScript/Reference/Global_Objects/InternalError
tags:
- InternalError
- 内部错误
translation_of: Web/JavaScript/Reference/Global_Objects/InternalError
---
<div>{{JSRef}} {{non-standard_header}}</div>
<p><strong><code>InternalError</code> 对象</strong>表示出现在JavaScript引擎内部的错误。 例如: <strong>"InternalError</strong>: too much recursion"(内部错误:递归过深)。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox"><code>new InternalError([<var>message</var>[, <var>fileName</var>[, <var>lineNumber</var>]]])</code></pre>
<h3 id="参数">参数</h3>
<dl>
<dt><code>message</code></dt>
<dd>可选。 人类可读的错误描述信息。</dd>
<dt><code>fileName</code> {{non-standard_inline}}</dt>
<dd>可选。触发该错误的代码所在文件的文件名。</dd>
<dt><code>lineNumber</code> {{non-standard_inline}}</dt>
<dd>可选。触发该错误的代码所在的代码行号。</dd>
</dl>
<h2 id="描述">描述</h2>
<p>当JavaScript引擎出现内部错误时将会抛出<code>InternalError。</code></p>
<p>示例场景通常为某些成分过大,例如:</p>
<ul>
<li>"too many switch cases"(过多<code>case</code>子句);</li>
<li>"too many parentheses in regular expression"(正则表达式中括号过多);</li>
<li>"array initializer too large"(数组初始化器过大);</li>
<li>"too much recursion"(递归过深)。</li>
</ul>
<h2 id="属性">属性</h2>
<dl>
<dt>{{jsxref("InternalError.prototype")}}</dt>
<dd>允许向<code>InternalError</code>对象添加属性。</dd>
</dl>
<h2 id="方法">方法</h2>
<p>全局 <code>InternalError</code> 对象自身不包含任何方法,但从原型链中继承了一些方法.</p>
<h2 id="InternalError_实例"><code>InternalError</code> 实例</h2>
<h3 id="属性_2">属性</h3>
<div>{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError/prototype', '属性')}}</div>
<h3 id="方法_2">方法</h3>
<div>{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError/prototype', '方法')}}</div>
<h2 id="规范">规范</h2>
<p>尚未成为任何规范的一部分。</p>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<h2 id="CompatibilityTable">{{CompatibilityTable}}</h2>
<div>
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>基本支持</td>
<td>{{CompatNo}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<div>
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Chrome for Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>基本支持</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<h2 id="相关链接">相关链接</h2>
<ul>
<li>{{jsxref("Error","错误")}}</li>
<li>{{jsxref("InternalError.prototype")}}</li>
</ul>
|