2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-07-27 18:55:24 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2007-07-27 18:55:24 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2008-12-17 16:24:35 +03:00
|
|
|
/* A Bison parser, made by GNU Bison 2.3. */
|
2005-06-13 18:01:20 +04:00
|
|
|
|
2008-12-17 16:24:35 +03:00
|
|
|
/* Skeleton interface for Bison's Yacc-like parsers in C
|
|
|
|
|
|
|
|
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
|
|
|
Free Software Foundation, Inc.
|
2005-06-13 18:01:20 +04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2006-03-16 19:57:36 +03:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
2005-06-13 18:01:20 +04:00
|
|
|
|
2008-12-17 16:24:35 +03:00
|
|
|
/* As a special exception, you may create a larger work that contains
|
|
|
|
part or all of the Bison parser skeleton and distribute that work
|
|
|
|
under terms of your choice, so long as that work isn't itself a
|
|
|
|
parser generator using the skeleton or a modified version thereof
|
|
|
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
|
|
|
the parser skeleton itself, you may (at your option) remove this
|
|
|
|
special exception, which will cause the skeleton and the resulting
|
|
|
|
Bison output files to be licensed under the GNU General Public
|
|
|
|
License without this special exception.
|
|
|
|
|
|
|
|
This special exception was added by the Free Software Foundation in
|
|
|
|
version 2.2 of Bison. */
|
2005-06-13 18:01:20 +04:00
|
|
|
|
|
|
|
/* Tokens. */
|
|
|
|
#ifndef YYTOKENTYPE
|
|
|
|
# define YYTOKENTYPE
|
|
|
|
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
|
|
know about them. */
|
|
|
|
enum yytokentype {
|
2008-12-17 16:24:35 +03:00
|
|
|
cal_ENVCURLY = 258,
|
|
|
|
cal_NCURLY = 259,
|
|
|
|
cal_DCURLY = 260,
|
|
|
|
cal_DOLLAR = 261,
|
|
|
|
cal_LCURLY = 262,
|
|
|
|
cal_RCURLY = 263,
|
|
|
|
cal_NAME = 264,
|
|
|
|
cal_BSLASH = 265,
|
|
|
|
cal_SYMBOL = 266,
|
|
|
|
cal_AT = 267,
|
|
|
|
cal_ERROR = 268,
|
|
|
|
cal_ATNAME = 269
|
2005-06-13 18:01:20 +04:00
|
|
|
};
|
|
|
|
#endif
|
2006-03-16 19:57:36 +03:00
|
|
|
/* Tokens. */
|
2008-12-17 16:24:35 +03:00
|
|
|
#define cal_ENVCURLY 258
|
|
|
|
#define cal_NCURLY 259
|
|
|
|
#define cal_DCURLY 260
|
|
|
|
#define cal_DOLLAR 261
|
|
|
|
#define cal_LCURLY 262
|
|
|
|
#define cal_RCURLY 263
|
|
|
|
#define cal_NAME 264
|
|
|
|
#define cal_BSLASH 265
|
|
|
|
#define cal_SYMBOL 266
|
|
|
|
#define cal_AT 267
|
|
|
|
#define cal_ERROR 268
|
|
|
|
#define cal_ATNAME 269
|
2005-06-13 18:01:20 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-12-17 16:24:35 +03:00
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
2005-06-13 18:01:20 +04:00
|
|
|
typedef int YYSTYPE;
|
|
|
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|