Changeset 175658 in webkit


Ignore:
Timestamp:
Nov 5, 2014 8:06:27 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r175628.
https://bugs.webkit.org/show_bug.cgi?id=138451

Totally borked the web inspector (Requested by smfr on
#webkit).

Reverted changeset:

"Web Inspector: Add infrastructure for eslint based static
analyzer"
https://bugs.webkit.org/show_bug.cgi?id=137890
http://trac.webkit.org/changeset/175628

Location:
trunk/Source/WebInspectorUI
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r175642 r175658  
     12014-11-05  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r175628.
     4        https://bugs.webkit.org/show_bug.cgi?id=138451
     5
     6        Totally borked the web inspector (Requested by smfr on
     7        #webkit).
     8
     9        Reverted changeset:
     10
     11        "Web Inspector: Add infrastructure for eslint based static
     12        analyzer"
     13        https://bugs.webkit.org/show_bug.cgi?id=137890
     14        http://trac.webkit.org/changeset/175628
     15
    1162014-11-05  Joseph Pecoraro  <pecoraro@apple.com>
    217
  • trunk/Source/WebInspectorUI/UserInterface/Base/Main.js

    r175628 r175658  
    11/*
    2  * Copyright (C) 2013-2014 Apple Inc. All rights reserved.
     2 * Copyright (C) 2013 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    101101    this.logManager = new WebInspector.LogManager;
    102102    this.issueManager = new WebInspector.IssueManager;
    103     this.analyzerManager = new WebInspector.AnalyzerManager;
    104103    this.runtimeManager = new WebInspector.RuntimeManager;
    105104    this.applicationCacheManager = new WebInspector.ApplicationCacheManager;
  • trunk/Source/WebInspectorUI/UserInterface/Main.html

    r175628 r175658  
    176176
    177177    <script src="External/Esprima/esprima.js"></script>
    178     <script src="External/ESLint/eslint.js"></script>
    179178
    180179    <script src="Protocol/ApplicationCacheObserver.js"></script>
     
    204203    <script src="Models/TimelineRecord.js"></script>
    205204
    206     <script src="Models/AnalyzerMessage.js"></script>
    207205    <script src="Models/ApplicationCacheFrame.js"></script>
    208206    <script src="Models/ApplicationCacheManifest.js"></script>
     
    461459    <script src="Controllers/CodeMirrorEditingController.js"></script>
    462460
    463     <script src="Controllers/AnalyzerManager.js"></script>
    464461    <script src="Controllers/ApplicationCacheManager.js"></script>
    465462    <script src="Controllers/BranchManager.js"></script>
  • trunk/Source/WebInspectorUI/UserInterface/Models/SourceCode.js

    r175628 r175658  
    3737};
    3838
    39 WebInspector.Object.addConstructorFunctions(WebInspector.SourceCode);
    40 
    4139WebInspector.SourceCode.Event = {
    4240    ContentDidChange: "source-code-content-did-change",
Note: See TracChangeset for help on using the changeset viewer.