Bug 87106

Summary: [V8] Replace 'throwTypeError(); return Undefined();' with 'return throwTypeError();'
Product: WebKit Reporter: Kentaro Hara <haraken>
Component: WebCore JavaScriptAssignee: Kentaro Hara <haraken>
Status: RESOLVED FIXED    
Severity: Normal CC: abarth, japhet, webkit.review.bot
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 85330    
Attachments:
Description Flags
Patch none

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.