Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qv4functiontable_noop.cpp
Go to the documentation of this file.
1// Copyright (C) 2017 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
5
7
8namespace QV4 {
9
10void generateFunctionTable(Function *function, JSC::MacroAssemblerCodeRef *codeRef)
11{
12 Q_UNUSED(function);
13 Q_UNUSED(codeRef);
14}
15
16void destroyFunctionTable(Function *function, JSC::MacroAssemblerCodeRef *codeRef)
17{
18 Q_UNUSED(function);
19 Q_UNUSED(codeRef);
20}
21
23{
24 return 0;
25}
26
27} // QV4
28
Combined button and popup list for selecting options.
size_t exceptionHandlerSize()
void generateFunctionTable(Function *function, JSC::MacroAssemblerCodeRef *codeRef)
void destroyFunctionTable(Function *function, JSC::MacroAssemblerCodeRef *codeRef)
#define Q_UNUSED(x)