https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1e58f0f64c127f80f5f8a1a3f27b575c4e6dd158 authored by ffxbld on 31 October 2012, 13:49:10 UTC
Added FENNEC_17_0b4_RELEASE FENNEC_17_0b4_BUILD1 tag(s) for changeset 2286829b4245. DONTBUILD CLOSED TREE a=release
Tip revision: 1e58f0f
FoldConstants.h
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * vim: set ts=8 sw=4 et tw=99:
 *
 * 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/. */

#ifndef FoldConstants_h__
#define FoldConstants_h__

#include "jsprvtd.h"

namespace js {
namespace frontend {

bool
FoldConstants(JSContext *cx, ParseNode *pn, Parser *parser, bool inGenexpLambda = false,
              bool inCond = false);

} /* namespace frontend */
} /* namespace js */

#endif /* FoldConstants_h__ */
back to top