Changeset 15698 in webkit for trunk/JavaScriptCore/kjs/nodes.h


Ignore:
Timestamp:
Jul 29, 2006, 5:04:22 PM (19 years ago)
Author:
darin
Message:

JavaScriptCore:

  • Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
  • Removed allow-tabs Subversion property from the files too.
  • bindings/NP_jsobject.cpp:
  • bindings/c/c_utility.cpp:
  • bindings/jni/jni_runtime.cpp:
  • bindings/jni/jni_utility.cpp:
  • bindings/objc/objc_utility.mm:
  • bindings/runtime.cpp:
  • bindings/runtime_method.cpp:
  • bindings/testbindings.cpp:
  • bindings/testbindings.mm:
  • kjs/date_object.cpp:
  • kjs/function.cpp:
  • kjs/list.cpp:
  • kjs/nodes.cpp:
  • kjs/nodes.h:
  • kjs/string_object.cpp:
  • kjs/ustring.cpp:

WebCore:

  • Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
  • Removed allow-tabs Subversion property from the files too.
  • bindings/objc/WebScriptObject.h:
  • bindings/objc/WebScriptObject.mm:
  • platform/FontData.cpp:

WebKit:

  • Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
  • Removed allow-tabs Subversion property from the files too.
  • DefaultDelegates/WebDefaultPolicyDelegate.m:
  • History/WebHistory.m:
  • Misc/WebDownload.m:
  • Misc/WebIconDatabase.m:
  • Misc/WebKitErrors.m:
  • Misc/WebKitLogging.m:
  • Misc/WebNSDataExtras.m:
  • Misc/WebNSFileManagerExtras.m:
  • Panels/WebPanelAuthenticationHandler.m:
  • Plugins/WebBaseNetscapePluginView.m:
  • Plugins/npfunctions.h:
  • WebCoreSupport/WebSubresourceLoader.m:
  • WebView/WebMainResourceLoader.m:
  • WebView/WebView.h:
  • WebView/WebView.m:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/nodes.h

    • Property allow-tabs deleted
    r15593 r15698  
    4040
    4141  enum Operator { OpEqual,
    42                   OpEqEq,
    43                   OpNotEq,
    44                   OpStrEq,
    45                   OpStrNEq,
    46                   OpPlusEq,
    47                   OpMinusEq,
    48                   OpMultEq,
    49                   OpDivEq,
     42                  OpEqEq,
     43                  OpNotEq,
     44                  OpStrEq,
     45                  OpStrNEq,
     46                  OpPlusEq,
     47                  OpMinusEq,
     48                  OpMultEq,
     49                  OpDivEq,
    5050                  OpPlusPlus,
    51                   OpMinusMinus,
    52                   OpLess,
    53                   OpLessEq,
    54                   OpGreater,
    55                   OpGreaterEq,
    56                   OpAndEq,
    57                   OpXOrEq,
    58                   OpOrEq,
    59                   OpModEq,
     51                  OpMinusMinus,
     52                  OpLess,
     53                  OpLessEq,
     54                  OpGreater,
     55                  OpGreaterEq,
     56                  OpAndEq,
     57                  OpXOrEq,
     58                  OpOrEq,
     59                  OpModEq,
    6060                  OpAnd,
    6161                  OpOr,
    62                   OpBitAnd,
    63                   OpBitXOr,
    64                   OpBitOr,
    65                   OpLShift,
    66                   OpRShift,
    67                   OpURShift,
    68                   OpIn,
    69                   OpInstanceOf
     62                  OpBitAnd,
     63                  OpBitXOr,
     64                  OpBitOr,
     65                  OpLShift,
     66                  OpRShift,
     67                  OpURShift,
     68                  OpIn,
     69                  OpInstanceOf
    7070  };
    7171
Note: See TracChangeset for help on using the changeset viewer.