| Index: Source/devtools/front_end/UISourceCodeFrame.js
|
| diff --git a/Source/devtools/front_end/UISourceCodeFrame.js b/Source/devtools/front_end/UISourceCodeFrame.js
|
| index 2db48874786b23a24adea6fd77a13249d33145e3..caaffdd2239687ec34764fc4383cf9437042ed29 100644
|
| --- a/Source/devtools/front_end/UISourceCodeFrame.js
|
| +++ b/Source/devtools/front_end/UISourceCodeFrame.js
|
| @@ -45,6 +45,14 @@ WebInspector.UISourceCodeFrame = function(uiSourceCode)
|
| }
|
|
|
| WebInspector.UISourceCodeFrame.prototype = {
|
| + /**
|
| + * @return {!WebInspector.UISourceCode}
|
| + */
|
| + uiSourceCode: function()
|
| + {
|
| + return this._uiSourceCode;
|
| + },
|
| +
|
| _enableAutocompletionIfNeeded: function()
|
| {
|
| this.textEditor.setCompletionDictionary(WebInspector.settings.textEditorAutocompletion.get() ? new WebInspector.SampleCompletionDictionary() : null);
|
|
|