mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
0d2e9ff1f1
This saves about 270KB of codesize on Linux64 without LTO, or 20KB with LTO. The basic idea is that we can flag dictionaries that need to-JS conversion (hence ToObjectInternal) based on various IDL uses (return value in normal interface, argument in callback, etc) and then annotate the ones that are converted to JS manually in C++ code. The mozwebidlcodegen changes are needed because non-local changes (e.g. whether a dictionary is used as a return value somewhere) can now affect the code generation for a dictionary and hence whether the relevant binding file should be regenerated. Since these changes can happen in any .webidl file, we need to check for them. We can't track this via the dependency set on the dictionary itself, because that would not notice new uses being added. Differential Revision: https://phabricator.services.mozilla.com/D48006 --HG-- extra : moz-landing-system : lando
18 lines
510 B
Plaintext
18 lines
510 B
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
[GenerateConversionToJS]
|
|
dictionary IterableKeyOrValueResult {
|
|
any value;
|
|
boolean done = false;
|
|
};
|
|
|
|
[GenerateConversionToJS]
|
|
dictionary IterableKeyAndValueResult {
|
|
sequence<any> value = [];
|
|
boolean done = false;
|
|
};
|