Changeset 53953 in webkit


Ignore:
Timestamp:
Jan 27, 2010 2:41:51 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-27 Anton Muhin <antonm@chromium.org>

Reviewed by David Levin.

[v8] minor cosmetic fix in V8 bindings codegenerator
https://bugs.webkit.org/show_bug.cgi?id=34224

  • bindings/scripts/CodeGeneratorV8.pm:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53951 r53953  
     12010-01-27  Anton Muhin  <antonm@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        [v8] minor cosmetic fix in V8 bindings codegenerator
     6        https://bugs.webkit.org/show_bug.cgi?id=34224
     7
     8        * bindings/scripts/CodeGeneratorV8.pm:
     9
    1102010-01-27  Darin Fisher  <darin@chromium.org>
    211
  • trunk/WebCore/bindings/scripts/CodeGeneratorV8.pm

    r53946 r53953  
    14151415    push(@implContent, "  desc->${setOn}Template()->SetNamedPropertyHandler(V8${interfaceName}::namedPropertyGetter, ");
    14161416    push(@implContent, $hasSetter ? "V8${interfaceName}::namedPropertySetter, " : "0, ");
    1417     push(@implContent, "0 ,"); # NamedPropertyQuery -- not being used at the moment.
     1417    push(@implContent, "0, "); # NamedPropertyQuery -- not being used at the moment.
    14181418    push(@implContent, $hasDeleter ? "V8${interfaceName}::namedPropertyDeleter, " : "0, ");
    14191419    push(@implContent, $hasEnumerator ? "V8${interfaceName}::namedPropertyEnumerator" : "0");
Note: See TracChangeset for help on using the changeset viewer.