Changeset 54690 in webkit


Ignore:
Timestamp:
Feb 11, 2010 5:29:25 PM (14 years ago)
Author:
yuzo@google.com
Message:

2010-02-10 Yuzo Fujishima <yuzo@google.com>

Reviewed by Darin Adler.

Allow underscored identifiers in CSSParser.cpp

Flex (http://flex.sourceforge.net/) uses identifiers named as yy_*.
WebCore/css/CSSParser.cpp needs to handle some such identifiers.
We should relax the style rule for the file to allow underscored identifiers.

https://bugs.webkit.org/show_bug.cgi?id=34787

  • Scripts/webkitpy/style/checker.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r54688 r54690  
     12010-02-10  Yuzo Fujishima  <yuzo@google.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Allow underscored identifiers in CSSParser.cpp
     6
     7        Flex (http://flex.sourceforge.net/) uses identifiers named as yy_*.
     8        WebCore/css/CSSParser.cpp needs to handle some such identifiers.
     9        We should relax the style rule for the file to allow underscored identifiers.
     10
     11        https://bugs.webkit.org/show_bug.cgi?id=34787
     12
     13        * Scripts/webkitpy/style/checker.py:
     14
    1152010-02-11  Eric Seidel  <eric@webkit.org>
    216
  • trunk/WebKitTools/Scripts/webkitpy/style/checker.py

    r54482 r54690  
    110110      # lower-cased, underscore-separated values.
    111111      "WebKit/gtk/webkit/",
     112      # There is no clean way to avoid "yy_*" names used by flex.
     113      "WebCore/css/CSSParser.cpp",
    112114      # There is no clean way to avoid "xxx_data" methods inside
    113115      # Qt's autotests since they are called automatically by the
Note: See TracChangeset for help on using the changeset viewer.