OLD | NEW |
---|---|
1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
tkent
2014/02/28 00:59:48
code_generator_v8.pm was removed.
| |
2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> | 2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> |
3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> | 4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> |
5 # Copyright (C) 2006 Apple Computer, Inc. | 5 # Copyright (C) 2006 Apple Computer, Inc. |
6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. | 6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. |
7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. | 8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. |
9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 # Copyright (C) 2012 Ericsson AB. All rights reserved. | 10 # Copyright (C) 2012 Ericsson AB. All rights reserved. |
11 # Copyright (C) 2013, 2014 Samsung Electronics. All rights reserved. | 11 # Copyright (C) 2013, 2014 Samsung Electronics. All rights reserved. |
(...skipping 3040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3052 $implementation{nameSpaceInternal}->add(<<END); | 3052 $implementation{nameSpaceInternal}->add(<<END); |
3053 } | 3053 } |
3054 END | 3054 END |
3055 | 3055 |
3056 my $exceptionStateArgument = ""; | 3056 my $exceptionStateArgument = ""; |
3057 if ($constructorRaisesException) { | 3057 if ($constructorRaisesException) { |
3058 ${exceptionStateArgument} = ", exceptionState"; | 3058 ${exceptionStateArgument} = ", exceptionState"; |
3059 } | 3059 } |
3060 | 3060 |
3061 $implementation{nameSpaceInternal}->add(<<END); | 3061 $implementation{nameSpaceInternal}->add(<<END); |
3062 RefPtr<${implClassName}> event = ${implClassName}::create(type, eventInit${e xceptionStateArgument}); | 3062 RefPtrWillBeRawPtr<${implClassName}> event = ${implClassName}::create(type, eventInit${exceptionStateArgument}); |
3063 END | 3063 END |
3064 | 3064 |
3065 if ($constructorRaisesException) { | 3065 if ($constructorRaisesException) { |
3066 $implementation{nameSpaceInternal}->add(<<END); | 3066 $implementation{nameSpaceInternal}->add(<<END); |
3067 if (exceptionState.throwIfNeeded()) | 3067 if (exceptionState.throwIfNeeded()) |
3068 return; | 3068 return; |
3069 END | 3069 END |
3070 } | 3070 } |
3071 | 3071 |
3072 if (@anyAttributeNames) { | 3072 if (@anyAttributeNames) { |
(...skipping 3395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6468 if ($parameter->type eq "SerializedScriptValue") { | 6468 if ($parameter->type eq "SerializedScriptValue") { |
6469 return 1; | 6469 return 1; |
6470 } elsif (IsIntegerType($parameter->type)) { | 6470 } elsif (IsIntegerType($parameter->type)) { |
6471 return 1; | 6471 return 1; |
6472 } | 6472 } |
6473 } | 6473 } |
6474 return 0; | 6474 return 0; |
6475 } | 6475 } |
6476 | 6476 |
6477 1; | 6477 1; |
OLD | NEW |