aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/global_objects/string/tosource/index.html
blob: bd32fe72db76ba68519a2e8ae83421f897c8d50c (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
---
title: String.prototype.toSource()
slug: Web/JavaScript/Reference/Global_Objects/String/toSource
tags:
- JavaScript
- Method
- Non-standard
- Obsolete
- Prototype
- Reference
- String
translation_of: Web/JavaScript/Reference/Global_Objects/String/toSource
---
<div>{{JSRef}} {{deprecated_header}}</div>

<p><strong><code>toSource()</code></strong> はそのオブジェクトのソースコードを表す文字列を返します。</p>

<h2 id="Syntax">構文</h2>

<pre class="brush: js"><code>String.toSource()
<var>str</var>.toSource()
</code></pre>

<h3 id="Return_value">返値</h3>

<p>呼び出し元のオブジェクトのソースコードを表す文字列です。</p>

<h2 id="Examples"></h2>

<h3 id="Native_function">ネイティブ関数</h3>

<p>組み込み {{jsxref("String")}} オブジェクトにおいては、<code>toSource()</code> はソースコードが利用不可能なことを示す以下の文字列を返します。</p>

<pre class="brush: js">function String() {
    [native code]
}
</pre>

<p>{{jsxref("String")}} オブジェクトのインスタンスや、文字列リテラルでは、<code>toSource()</code> はそのソースコードを表す文字列を返します。</p>

<p>このメソッドは、通常、JavaScript によって内部的に呼び出され、コード中で明示的に呼び出されることはありません。</p>

<h2 id="Specifications">仕様書</h2>

<p>どの標準にも含まれていません。 JavaScript 1.3 で実装されました。</p>

<h2 id="Browser_compatibility">ブラウザーの互換性</h2>

<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("javascript.builtins.String.toSource")}}</p>

<h2 id="See_also">関連情報</h2>

<ul>
  <li>{{jsxref("Object.prototype.toSource()")}}</li>
</ul>