Bug 87106 - [V8] Replace 'throwTypeError(); return Undefined();' with 'return throwTypeError();'
Summary: [V8] Replace 'throwTypeError(); return Undefined();' with 'return throwTypeEr...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore JavaScript (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Kentaro Hara
URL:
Keywords:
Depends on:
Blocks: 85330
  Show dependency treegraph
 
Reported: 2012-05-22 02:14 PDT by Kentaro Hara
Modified: 2012-05-22 15:58 PDT (History)
3 users (show)

See Also:


Attachments
Patch (4.28 KB, patch)
2012-05-22 02:19 PDT, Kentaro Hara
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Kentaro Hara 2012-05-22 02:14:31 PDT
We can replace

    throwTypeError();
    return v8::Undefined();

with

    return throwTypeError();

This will be the final patch for a series of replacements.
Comment 1 Kentaro Hara 2012-05-22 02:19:41 PDT
Created attachment 143239 [details]
Patch
Comment 2 WebKit Review Bot 2012-05-22 15:58:15 PDT
Comment on attachment 143239 [details]
Patch

Clearing flags on attachment: 143239

Committed r118075: <http://trac.webkit.org/changeset/118075>
Comment 3 WebKit Review Bot 2012-05-22 15:58:33 PDT
All reviewed patches have been landed.  Closing bug.