Changeset 218489 in webkit


Ignore:
Timestamp:
Jun 19, 2017 5:54:21 AM (7 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed. Fix wrong style checker condition added in r218487.

  • Scripts/webkitpy/style/checkers/cpp.py:

(check_identifier_name_in_declaration):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r218488 r218489  
     12017-06-19  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Fix wrong style checker condition added in r218487.
     4
     5        * Scripts/webkitpy/style/checkers/cpp.py:
     6        (check_identifier_name_in_declaration):
     7
    182017-06-19  Adrian Perez de Castro  <aperez@igalia.com>
    29
  • trunk/Tools/Scripts/webkitpy/style/checkers/cpp.py

    r218487 r218489  
    34203420            # Various exceptions to the rule: JavaScript op codes functions, const_iterator.
    34213421            if (not (filename.find('JavaScriptCore') >= 0 and (modified_identifier.find('op_') >= 0 or modified_identifier.find('intrinsic_') >= 0))
    3422                 and not (('gtk' in filename or 'glib in filename') and modified_identifier.startswith('webkit_') >= 0)
     3422                and not (('gtk' in filename or 'glib' in filename) and modified_identifier.startswith('webkit_') >= 0)
    34233423                and not modified_identifier.startswith('tst_')
    34243424                and not modified_identifier.startswith('webkit_dom_object_')
Note: See TracChangeset for help on using the changeset viewer.